Changeset 1585 for trunk/MESOSCALE/LMD_MM_MARS/SRC
- Timestamp:
- Aug 28, 2016, 2:24:01 PM (8 years ago)
- Location:
- trunk/MESOSCALE/LMD_MM_MARS/SRC/WRFV2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MESOSCALE/LMD_MM_MARS/SRC/WRFV2/dyn_em/module_diffusion_em.F
r11 r1585 9 9 USE module_model_constants 10 10 USE module_wrf_error 11 12 !!!******MARS MARS 13 !!!******MARS MARS 14 !!! mixing coefficients are defined here so that 15 !!! module_model_constants can be common btw WRFV2&3 16 ! proportionality constants for eddy viscosity coefficient calc 17 REAL , PARAMETER :: c_s = .25 ! turbulence parameterization constant, for smagorinsky 18 ! REAL , PARAMETER :: c_s = .1 ! turbulence parameterization constant, for smagorinsky 19 REAL , PARAMETER :: c_k = .15 ! turbulence parameterization constant, for TKE 20 !!!******MARS MARS 21 !!!******MARS MARS 11 22 12 23 CONTAINS -
trunk/MESOSCALE/LMD_MM_MARS/SRC/WRFV2/share/module_model_constants.F
r55 r1585 28 28 REAL , PARAMETER :: r_d = 191. 29 29 REAL , PARAMETER :: cp = 744.5 30 30 31 31 32 REAL , PARAMETER :: r_v = 461.6 ! gas constant for water vapor … … 42 43 REAL , PARAMETER :: rovg = r_d/g 43 44 REAL , PARAMETER :: c2 = cp * rcv 45 !! added in WRFV3 46 real , parameter :: mwdry = 43.49 ! molecular weight of dry air (g/mole) 44 47 45 48 REAL , PARAMETER :: p1000mb = 610. … … 82 85 !------------------------------- 83 86 84 !REAL , PARAMETER :: asselin = .02585 REAL , PARAMETER :: asselin = .087 REAL , PARAMETER :: asselin = .025 88 ! REAL , PARAMETER :: asselin = .0 86 89 REAL , PARAMETER :: cb = 25. 87 90 … … 112 115 REAL , PARAMETER :: STBOLT=5.67051E-8 ! stefan-boltzmann constant 113 116 114 ! proportionality constants for eddy viscosity coefficient calc 115 REAL , PARAMETER :: c_s = .25 ! turbulence parameterization constant, for smagorinsky 116 ! REAL , PARAMETER :: c_s = .1 ! turbulence parameterization constant, for smagorinsky 117 REAL , PARAMETER :: c_k = .15 ! turbulence parameterization constant, for TKE 117 118 119 120 !! NB: c_s and c_k in WRFV2 moved to module_diffusion_em.F 121 !! NB: no need in WRFV3 because set in namelist 118 122 REAL , PARAMETER :: prandtl = 1./3.0 119 123 ! constants for w-damping option … … 123 127 REAL , PARAMETER :: w_beta = 0.8 ! activation cfl number 124 128 129 !! in WRFV3 130 ! REAL , PARAMETER :: w_alpha = 0.3 ! strength m/s/s 131 ! REAL , PARAMETER :: w_beta = 1.0 ! activation cfl number 132 !! 125 133 REAL , PARAMETER :: pq0=379.90516 126 134 REAL , PARAMETER :: epsq2=0.2 127 !try both ? 128 ! REAL , PARAMETER :: epsq2=0.02 135 ! REAL , PARAMETER :: epsq2=0.02 129 136 REAL , PARAMETER :: a2=17.2693882 130 137 REAL , PARAMETER :: a3=273.16 … … 172 179 !#endif 173 180 181 !!!! needed in WRFV3 182 ! Earth 183 184 ! The value for P2SI *must* be set to 1.0 for Earth 185 ! Although, now we may not need this declaration here (see above) 186 !REAL , PARAMETER :: P2SI = 1.0 187 188 ! Orbital constants: 189 190 INTEGER , PARAMETER :: PLANET_YEAR = 365 191 REAL , PARAMETER :: OBLIQUITY = 23.5 192 REAL , PARAMETER :: ECCENTRICITY = 0.014 193 REAL , PARAMETER :: SEMIMAJORAXIS = 1.0 ! In AU 194 ! Don't know the following values, so we'll fake them for now 195 REAL , PARAMETER :: zero_date = 0.0 ! Time of perihelion passage 196 ! Fraction into the year (from perhelion) of the 197 ! occurrence of the Northern Spring Equinox 198 REAL , PARAMETER :: EQUINOX_FRACTION= 0.0 199 !!!! needed in WRFV3 174 200 175 201 CONTAINS
Note: See TracChangeset
for help on using the changeset viewer.