Changeset 3182 for palm/trunk/UTIL/inifor/src/defs.f90
- Timestamp:
- Jul 27, 2018 1:36:03 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/UTIL/inifor/src/defs.f90
r2718 r3182 21 21 ! Current revisions: 22 22 ! ----------------- 23 ! Updated defaults for soil extrapolation steps and nudging time-scale 24 ! Improved handling of the start date string 25 ! Added gas constant for water vapor 26 ! Bumped INIFOR version number 23 27 ! 24 28 ! … … 62 66 REAL(dp), PARAMETER :: T_SL = 288.15_dp !< Reference temperature for computation of COSMO-DE's basic state pressure [K] 63 67 REAL(dp), PARAMETER :: BETA = 42.0_dp !< logarithmic lapse rate, dT / d ln(p), for computation of COSMO-DE's basic state pressure [K] 64 REAL(dp), PARAMETER :: RD = 287.05_dp !< specific gar constant of dry air, used in computation of COSMO-DE's basic state [J/kg/K] 68 REAL(dp), PARAMETER :: RD = 287.05_dp !< specific gas constant of dry air, used in computation of COSMO-DE's basic state [J/kg/K] 69 REAL(dp), PARAMETER :: RV = 461.51_dp !< specific gas constant of water vapor [J/kg/K] 65 70 REAL(dp), PARAMETER :: G = 9.80665_dp !< acceleration of Earth's gravity, used in computation of COSMO-DE's basic state [m/s/s] 66 71 REAL(dp), PARAMETER :: RHO_L = 1e3_dp !< density of liquid water, used to convert W_SO from [kg/m^2] to [m^3/m^3], in [kg/m^3] … … 72 77 73 78 ! INIFOR parameters 74 INTEGER, PARAMETER :: FILL_ITERATIONS = 10 !< Number of iterations for extrapolating soil data into COSMO-DE water cells [-] 75 REAL(dp), PARAMETER :: FORCING_FREQ = 3600.0_dp !< Reference pressure for potential temperature [Pa] 76 CHARACTER(LEN=*), PARAMETER :: VERSION = '1.1.4' !< path to script for generating input file names 79 INTEGER, PARAMETER :: FILL_ITERATIONS = 5 !< Number of iterations for extrapolating soil data into COSMO-DE water cells [-] 80 INTEGER, PARAMETER :: FORCING_STEP = 1 !< Number of hours between forcing time steps [h] 81 REAL(dp), PARAMETER :: NUDGING_TAU = 21600.0_dp !< Nudging relaxation time scale [s] 82 CHARACTER(LEN=*), PARAMETER :: VERSION = '1.3.0' !< INIFOR version number 83 CHARACTER(LEN=*), PARAMETER :: COPYRIGHT = 'Copyright 2017-2018 Leibniz Universitaet Hannover' // & 84 NEW_LINE(' ') // ' Copyright 2017-2018 Deutscher Wetterdienst Offenbach' !< Copyright notice 77 85 78 86 END MODULE defs
Note: See TracChangeset
for help on using the changeset viewer.