Changeset 4379 for LMDZ6/trunk/libf/dyn3d_common
- Timestamp:
- Jan 10, 2023, 8:14:07 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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)
Note: See TracChangeset
for help on using the changeset viewer.