-
Notifications
You must be signed in to change notification settings - Fork 0
/
Grid.f90
50 lines (46 loc) · 1.48 KB
/
Grid.f90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
!===========================================================================
!@ Module to create the grid in (e,v) domaine for LL, LH, R, HT and TP
!@ The values of the properties (e,v,T,P,c) are computed by EoS Span-Wagner
!@ and available at each node of the grid.
!==========================================================================
MODULE Grid
!
! USE def_constants
! USE def_variables
! USE non_linear_solvers
!
IMPLICIT NONE
!
PRIVATE
!
PUBLIC MAKE_GRID
CONTAINS
!
!
!
!==========================================================================
SUBROUTINE MAKE_GRID()
!==========================================================================
!
USE saturation, ONLY: sat_curve, saturation_curve
! USE mod_param_defs
! USE mod_error, ONLY: print_error_and_quit, print_message
IMPLICIT NONE
! CHARACTER(LEN=strl) :: message
CALL grid_construction_left_low
CALL grid_construction_left_high
CALL grid_construction_right
CALL grid_construction_high_temperature
CALL saturation_curve
! CALL sat_curve
CALL grid_construction_TPL
CALL grid_construction_TPM
CALL grid_construction_TPH
!
print*, " ----> Look-up table CO2 MESH CONSTRUCTION ----"
! CALL print_message ( message )
!
END SUBROUTINE MAKE_GRID
!
!
END MODULE Grid