- Timestamp:
- Jan 10, 2023, 8:14:07 PM (23 months ago)
- Location:
- LMDZ6/trunk/libf
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/libf/dyn3d/iniacademic.F90
r4376 r4379 112 112 ! specific initializations for the shallow water case 113 113 kappa=1 114 endif115 116 117 if ( ( .not. read_start ) .and. ( iflag_phys > 2 ) ) then118 ! 101080 : specific value for CMIP5 aqua/terra planets119 ! "Specify the initial dry mass to be equivalent to120 ! a global mean surface pressure (101325 minus 245) Pa."121 preff=101080.122 call getin('psurf',preff)123 pa=preff/2.124 114 endif 125 115 -
LMDZ6/trunk/libf/dyn3d_common/conf_planete.F90
r2600 r4379 30 30 31 31 !Reference surface pressure (Pa) 32 preff=101325. 32 ! 101080 : specific value for CMIP5 aqua/terra planets 33 ! "Specify the initial dry mass to be equivalent to 34 ! a global mean surface pressure (101325 minus 245) Pa." 35 preff=101080. 33 36 CALL getin('preff', preff) 37 34 38 ! Reference pressure at which hybrid coord. become purely pressure 35 39 ! pa=50000. 36 40 pa=preff/2. 37 41 CALL getin('pa', pa) 42 38 43 ! Gravity 39 44 g=9.80665 45 40 46 CALL getin('g',g) 41 47 ! Molar mass of the atmosphere 48 42 49 molmass = 28.9644 43 50 CALL getin('molmass',molmass) 44 51 ! kappa=R/Cp et Cp 52 45 53 kappa = 2./7. 46 54 CALL getin('kappa',kappa) 55 47 56 cpp=8.3145/molmass/kappa*1000. 48 57 CALL getin('cpp',cpp) 49 58 ! Radius of the planet 59 50 60 rad = 6371229. 51 61 CALL getin('radius',rad) 62 52 63 ! Length of a standard day (s) 53 64 daysec=86400. 54 65 CALL getin('daysec',daysec) 66 55 67 ! Rotation rate of the planet: 56 68 ! Length of a solar day, in standard days 57 69 daylen = 1. 70 58 71 CALL getin('daylen',daylen) 59 72 ! Number of days (standard) per year: 73 60 74 year_day = 365.25 61 75 CALL getin('year_day',year_day) 62 76 ! Omega 63 77 ! omeg=2.*pi/86400. 78 64 79 omeg=2.*pi/daysec*(1./daylen+1./year_day) 65 80 CALL getin('omeg',omeg) -
LMDZ6/trunk/libf/dyn3dmem/iniacademic_loc.F90
r4376 r4379 116 116 ! specific initializations for the shallow water case 117 117 kappa=1 118 endif119 120 if ( ( .not. read_start ) .and. (iflag_phys>2) ) then121 ! 101080 : specific value for CMIP5 aqua/terra planets122 ! "Specify the initial dry mass to be equivalent to123 ! a global mean surface pressure (101325 minus 245) Pa."124 preff=101080.125 call getin('psurf',preff)126 pa=preff/2.127 118 endif 128 119
Note: See TracChangeset
for help on using the changeset viewer.