ERF
Energy Research and Forecasting: An Atmospheric Modeling Code
ERF_TurbStruct.H
Go to the documentation of this file.
1 #ifndef ERF_TURB_STRUCT_H_
2 #define ERF_TURB_STRUCT_H_
3 
4 #include <ERF_MYNNStruct.H>
5 
6 AMREX_ENUM(LESType, None, Smagorinsky, Smagorinsky2D, Deardorff);
7 
8 AMREX_ENUM(RANSType, None, kEqn);
9 
10 AMREX_ENUM(PBLType, None, MYJ, MYNN25, MYNNEDMF, YSU, MRF, SHOC);
11 
12 AMREX_ENUM(StratType, theta, thetav, thetal);
13 
14 template <typename T>
15 void
17  const amrex::ParmParse& pp,
18  const char* query_string,
19  T& query_var,
20  const int lev,
21  const int maxlev)
22 {
23  int count = pp.countval(query_string);
24  if (count == 0) {
25  return; // nothing to do
26  } else if (count == 1) {
27  pp.query(query_string, query_var);
28  } else if (count == maxlev + 1) {
29  pp.query(query_string, query_var, lev);
30  } else {
31  amrex::Error(
32  "For parmparse variable " + pp.prefixedName(query_string) +
33  ": if specified, specify once total or once for each level");
34  }
35 }
36 
37 /**
38  * Container holding quantities related to turbulence parametrizations
39  */
40 struct TurbChoice
41 {
42 public:
43  void init_params (int lev, int max_level, std::string pp_prefix)
44  {
45  amrex::ParmParse pp(pp_prefix);
46 
47  // Which LES closure?
48  std::string les_type_string = "None";
49  query_one_or_per_level(pp, "les_type", les_type, lev, max_level);
50 
51  // Handle 2-D Smag
52  if (les_type == LESType::Smagorinsky2D) {
53  les_type = LESType::Smagorinsky;
54  smag2d = true;
55  }
56 
57  // Which RANS closure?
58  std::string rans_type_string = "None";
59  query_one_or_per_level(pp, "rans_type", rans_type, lev, max_level);
60 
61  if ((rans_type != RANSType::None) && (les_type != LESType::None)) {
62  amrex::Error("Hybrid RANS-LES not implemented");
63  }
64 
65  // Which PBL Closure
66  static std::string pbl_type_string = "None";
67  query_one_or_per_level(pp, "pbl_type", pbl_type, lev, max_level);
68 
69  // Do some more stuff for PBL Modeling
70  if (pbl_type != PBLType::None) {
71  // Check for compatibility between PBL, LES, Molec Transport
72  if (les_type != LESType::None) {
73  amrex::Print() << "Selected a PBL model and an LES model: "
74  << "Using PBL for vertical transport, LES for horizontal"
75  << std::endl;
76  }
77  if (les_type == LESType::Smagorinsky) {
78  if (!smag2d)
79  amrex::Error("If using Smagorinsky with a PBL model, the 2-D "
80  "formulation should be used");
81  } else if (les_type == LESType::Deardorff) {
82  amrex::Error(
83  "It is not recommended to use Deardorff LES and a PBL model");
84  }
85 
86  if (pbl_type == PBLType::MYNN25 || pbl_type == PBLType::MYNNEDMF) {
87  query_one_or_per_level(pp, "pbl_mynn_A1", pbl_mynn.A1, lev, max_level);
88  query_one_or_per_level(pp, "pbl_mynn_A2", pbl_mynn.A2, lev, max_level);
89  query_one_or_per_level(pp, "pbl_mynn_B1", pbl_mynn.B1, lev, max_level);
90  query_one_or_per_level(pp, "pbl_mynn_B2", pbl_mynn.B2, lev, max_level);
91  query_one_or_per_level(pp, "pbl_mynn_C1", pbl_mynn.C1, lev, max_level);
92  query_one_or_per_level(pp, "pbl_mynn_C2", pbl_mynn.C2, lev, max_level);
93  query_one_or_per_level(pp, "pbl_mynn_C3", pbl_mynn.C3, lev, max_level);
94  query_one_or_per_level(pp, "pbl_mynn_C4", pbl_mynn.C4, lev, max_level);
95  query_one_or_per_level(pp, "pbl_mynn_C5", pbl_mynn.C5, lev, max_level);
100  pp, "pbl_mynn_diffuse_moistvars", pbl_mynn.diffuse_moistvars, lev,
101  max_level);
103  pp, "pbl_mynn_SMmin", pbl_mynn.SMmin, lev, max_level);
105  pp, "pbl_mynn_SMmax", pbl_mynn.SMmax, lev, max_level);
107  pp, "pbl_mynn_SHmin", pbl_mynn.SHmin, lev, max_level);
109  pp, "pbl_mynn_SHmax", pbl_mynn.SHmax, lev, max_level);
111  pp, "pbl_mynn_SQfactor", pbl_mynn.SQfac, lev, max_level);
112  } else if (pbl_type == PBLType::YSU) {
114  pp, "pbl_ysu_coriolis_freq", pbl_ysu_coriolis_freq, lev, max_level);
116  pp, "pbl_ysu_use_consistent_coriolis",
117  pbl_ysu_use_consistent_coriolis, lev, max_level);
119  pp, "pbl_ysu_force_over_water", pbl_ysu_force_over_water, lev,
120  max_level);
122  pp, "pbl_ysu_land_Ribcr", pbl_ysu_land_Ribcr, lev, max_level);
124  pp, "pbl_ysu_unst_Ribcr", pbl_ysu_unst_Ribcr, lev, max_level);
125  } else if (pbl_type == PBLType::MRF) {
127  pp, "pbl_mrf_coriolis_freq", pbl_mrf_coriolis_freq, lev, max_level);
129  pp, "pbl_mrf_Ribcr", pbl_mrf_Ribcr, lev, max_level);
131  pp, "pbl_mrf_const_b", pbl_mrf_const_b, lev, max_level);
132  query_one_or_per_level(pp, "pbl_mrf_sf", pbl_mrf_sf, lev, max_level);
134  pp, "mrf_moistvars", mrf_moistvars, lev, max_level);
135  } else if (pbl_type == PBLType::SHOC) {
136 #ifndef ERF_USE_SHOC
137  amrex::Abort("You set use_shoc to true but didn't build with SHOC; you must rebuild the executable");
138 #endif
139  }
140  }
141 
142  // Flags for QKE/TKE euation
143  if (pbl_type == PBLType::MYJ || pbl_type == PBLType::MYNN25 || pbl_type == PBLType::MYNNEDMF) {
144  // Add sources/sinks to QKE/TKE? (MYJ does this inline)
145  if (pbl_type == PBLType::MYNN25 || pbl_type == PBLType::MYNNEDMF) {
146  use_pbl_tke = true;
147  }
148  // Advect QKE/TKE?
149  query_one_or_per_level(pp, "advect_tke" , advect_tke , lev, max_level);
150  // Apply numerical diffusion to QKE/TKE?
151  query_one_or_per_level(pp, "diffuse_tke_3D", diffuse_tke_3D, lev, max_level);
152  }
153 
154  // LES constants...
155  query_one_or_per_level(pp, "Cs", Cs, lev, max_level);
156 
157  query_one_or_per_level(pp, "Pr_t", Pr_t, lev, max_level);
158  query_one_or_per_level(pp, "Sc_t", Sc_t, lev, max_level);
159 
160  // Compute relevant forms of diffusion parameters
161  Pr_t_inv = amrex::Real(1.0) / Pr_t;
162  Sc_t_inv = amrex::Real(1.0) / Sc_t;
163 
164  if (les_type == LESType::Deardorff) {
165  query_one_or_per_level(pp, "Ck", Ck, lev, max_level);
166  query_one_or_per_level(pp, "Ce", Ce, lev, max_level);
167  query_one_or_per_level(pp, "Ce_wall", Ce_wall, lev, max_level);
168  }
169 
170  // To quantify atmospheric stability for subgrid modeling
171  query_one_or_per_level(pp, "thermal_stratification", strat_type, lev, max_level);
172  if (strat_type == StratType::theta) {
173  amrex::Print() << "Thermal stratification based on gradient of potential temperature" << std::endl;
174  } else if (strat_type == StratType::thetav) {
175  amrex::Print() << "Thermal stratification based on gradient of virtual potential temperature" << std::endl;
176  } else if (strat_type == StratType::thetal) {
177  amrex::Print() << "Thermal stratification based on gradient of linearized liquid-water potential temperature" << std::endl;
178  }
179 
180  // k-eqn constants
181  query_one_or_per_level(pp, "Cmu0", Cmu0, lev, max_level);
182  query_one_or_per_level(pp, "Cb", Cb, lev, max_level);
183  query_one_or_per_level(pp, "Rt_crit", Rt_crit, lev, max_level);
184  query_one_or_per_level(pp, "Rt_min", Rt_min, lev, max_level);
185  query_one_or_per_level(pp, "max_geom_lscale", l_g_max, lev, max_level);
186 
187  // Common inputs (LES or RANS)
188  query_one_or_per_level(pp, "sigma_k", sigma_k, lev, max_level);
189  query_one_or_per_level(pp, "theta_ref", theta_ref, lev, max_level);
190 
191  query_one_or_per_level(pp, "mix_isotropic", mix_isotropic, lev, max_level);
192  query_one_or_per_level(pp, "use_smag_stratification", use_smag_stratification, lev, max_level);
193 
194  // Set common flags
195  use_kturb =
196  ((les_type != LESType::None) || (rans_type != RANSType::None) ||
197  (pbl_type != PBLType::None));
198  use_keqn =
199  ((les_type == LESType::Deardorff) || (rans_type == RANSType::kEqn));
200  use_tke =
201  ((les_type == LESType::Deardorff) || (rans_type == RANSType::kEqn) ||
202  (pbl_type == PBLType::MYJ) || (pbl_type == PBLType::MYNN25) ||
203  (pbl_type == PBLType::MYNNEDMF) || (pbl_type == PBLType::SHOC));
204 
205  if (use_tke) {
206  query_one_or_per_level(pp, "init_tke_from_ustar", init_tke_from_ustar, lev, max_level);
207  }
208 
209  // Validate inputs
210  if (les_type == LESType::Smagorinsky) {
211  if (Cs == 0) {
212  amrex::Error("Need to specify Cs for Smagorsinky LES");
213  }
214  if (smag2d && mix_isotropic) {
215  amrex::Print() << "Turning off mix_isotropic for 2-D Smagorinsky" << std::endl;
216  mix_isotropic = false;
217  }
218  }
219  }
220 
221  void display (int lev)
222  {
223  amrex::Print() << "Turbulence Settings at level " << lev << std::endl;
224 
225  if (
226  les_type == LESType::None && rans_type == RANSType::None &&
227  pbl_type == PBLType::None) {
228  amrex::Print() << " Using DNS model at level " << lev << std::endl;
229  } else if (les_type == LESType::Smagorinsky) {
230  if (smag2d) {
231  amrex::Print() << " Using 2D Smagorinsky LES model at level " << lev << std::endl;
232  } else {
233  amrex::Print() << " Using Smagorinsky LES model at level " << lev << std::endl;
234  }
236  amrex::Print() << " Smagorinsky accounts for moist stratification" << std::endl;
237  }
238  } else if (les_type == LESType::Deardorff) {
239  amrex::Print() << " Using Deardorff LES model at level " << lev << std::endl;
240  } else if (rans_type == RANSType::kEqn) {
241  amrex::Print()
242  << " Using Axell & Liungman one-equation RANS k model at level " << lev << std::endl;
243  } else if (pbl_type == PBLType::MYJ) {
244  amrex::Print() << " Using MYJ PBL model at level " << lev << std::endl;
245  } else if (pbl_type == PBLType::MYNN25) {
246  amrex::Print() << " Using MYNN2.5 PBL model at level " << lev << std::endl;
247  } else if (pbl_type == PBLType::MYNNEDMF) {
248  amrex::Print() << " Using MYNNEDMF PBL model at level " << lev << std::endl;
249  } else if (pbl_type == PBLType::YSU) {
250  amrex::Print() << " Using YSU PBL model at level " << lev << std::endl;
251  } else if (pbl_type == PBLType::MRF) {
252  amrex::Print() << " Using MRF PBL model at level " << lev << std::endl;
253  } else {
254  amrex::Error("Unknown turbulence model");
255  }
256 
257  if (les_type != LESType::None) {
258  if (les_type == LESType::Smagorinsky) {
259  amrex::Print() << " Cs : " << Cs << std::endl;
260  }
261  if (les_type == LESType::Deardorff) {
262  amrex::Print() << " Ce : " << Ce << std::endl;
263  amrex::Print() << " Ce at wall : " << Ce_wall << std::endl;
264  amrex::Print() << " Ck : " << Ck << std::endl;
265  amrex::Print() << " sigma_k : " << sigma_k << std::endl;
266 
267  // Sullivan et al 1994, Eqn 14
268  amrex::Real Cs_equiv = std::sqrt(Ck * std::sqrt(Ck / Ce));
269  amrex::Print() << " equivalent Cs : " << Cs_equiv
270  << std::endl;
271  }
272  amrex::Print() << " isotropic mixing : " << mix_isotropic
273  << std::endl;
274  }
275 
276  if (rans_type != RANSType::None) {
277  if (rans_type == RANSType::kEqn) {
278  amrex::Print() << "Cmu0 : " << Cmu0 << std::endl;
279  amrex::Print() << "sigma_k : " << sigma_k << std::endl;
280  amrex::Print() << "Cb : " << Cb << std::endl;
281  amrex::Print() << "Rt_crit : " << Rt_crit << std::endl;
282  amrex::Print() << "Rt_min : " << Rt_min << std::endl;
283  amrex::Print() << "max_geom_lscale : " << l_g_max << std::endl;
284  }
285  }
286 
287  if ((les_type == LESType::Deardorff) ||
288  (les_type == LESType::Smagorinsky && use_smag_stratification) ||
289  (rans_type == RANSType::kEqn)) {
290  if (theta_ref > 0) {
291  amrex::Print() << " reference theta : " << theta_ref << std::endl;
292  } else {
293  amrex::Print() << " reference theta : n/a" << std::endl;
294  }
295  }
296 
297  if ((les_type != LESType::None) || (rans_type != RANSType::None)) {
298  amrex::Print() << " Pr_t : " << Pr_t << std::endl;
299  amrex::Print() << " Sc_t : " << Sc_t << std::endl;
300  }
301 
302  if (pbl_type == PBLType::MYNN25 || pbl_type == PBLType::MYNNEDMF) {
303  amrex::Print() << " pbl_mynn_A1 : " << pbl_mynn.A1 << std::endl;
304  amrex::Print() << " pbl_mynn_A2 : " << pbl_mynn.A2 << std::endl;
305  amrex::Print() << " pbl_mynn_B1 : " << pbl_mynn.B1 << std::endl;
306  amrex::Print() << " pbl_mynn_B2 : " << pbl_mynn.B2 << std::endl;
307  amrex::Print() << " pbl_mynn_C1 : " << pbl_mynn.C1 << std::endl;
308  amrex::Print() << " pbl_mynn_C2 : " << pbl_mynn.C2 << std::endl;
309  amrex::Print() << " pbl_mynn_C3 : " << pbl_mynn.C3 << std::endl;
310  amrex::Print() << " pbl_mynn_C4 : " << pbl_mynn.C4 << std::endl;
311  amrex::Print() << " pbl_mynn_C5 : " << pbl_mynn.C5 << std::endl;
312  } else if (pbl_type == PBLType::YSU) {
313  amrex::Print() << " pbl_ysu_coriolis_freq : "
314  << pbl_ysu_coriolis_freq << std::endl;
315  amrex::Print() << " pbl_ysu_use_consistent_coriolis : "
316  << pbl_ysu_use_consistent_coriolis << std::endl;
317  amrex::Print() << " pbl_ysu_force_over_water : "
318  << pbl_ysu_force_over_water << std::endl;
319  amrex::Print() << " pbl_ysu_land_Ribcr : "
320  << pbl_ysu_land_Ribcr << std::endl;
321  amrex::Print() << " pbl_ysu_unst_Ribcr : "
322  << pbl_ysu_unst_Ribcr << std::endl;
323  } else if (pbl_type == PBLType::MRF) {
324  amrex::Print() << " pbl_mrf_coriolis_freq : " << pbl_mrf_coriolis_freq
325  << std::endl;
326  amrex::Print() << " pbl_mrf_Ribcr : " << pbl_mrf_Ribcr
327  << std::endl;
328  amrex::Print() << " pbl_mrf_const_b : " << pbl_mrf_const_b
329  << std::endl;
330  amrex::Print() << " pbl_mrf_sf : " << pbl_mrf_sf
331  << std::endl;
332  amrex::Print() << " mrf_moistvars : " << mrf_moistvars
333  << std::endl;
334  }
335  }
336 
337  // LES model
338  LESType les_type;
339 
340  // Turbulent Prandtl number
343 
344  // Turbulent Schmidt number
347 
348  // Smagorinsky
350  bool smag2d = false;
351 
352  // Deardorff
353  amrex::Real Ce = 0.93;
354  amrex::Real Ce_wall = 0.0; // if > 0, then set Ce to this at k=0
356 
357  // k-eqn RANS coefficients (Axell & Liungman 2001)
358  amrex::Real Cmu0 = 0.5562;
359  amrex::Real Cb = 0.35;
363 
364  // Deardorff or k-eqn RANS
365  // - diffusivity of tke is 1/sigma_k times the eddy viscosity
367  // - reference potential temperature used to quantify the stratification in
368  // a stable region
370  // - how to quantify stratification effects
372 
373  // Anistropic length scales
374  bool mix_isotropic = true;
375 
376  // Use the stratification adjustment for the Smagorinsky Scheme
378 
379  // RANS type
380  RANSType rans_type;
381 
382  // PBL model
383  PBLType pbl_type;
384 
386  MYNNLevel2 pbl_mynn_level2; // limiting in the decaying turbulence regime
387 
388  // Common Flags
389  bool use_kturb = false; // Any turbulence modeling?
390  bool use_keqn =
391  false; // Any microscale turbulence modeling (LES, RANS) with TKE closure?
392  // Then need to populate SmnSmn_lev for production term.
393  bool use_pbl_tke =
394  false; // Any mesoscale turbulence modeling (PBL) with TKE closure?
395  bool use_tke = false; // Any TKE closure (meso or microscale)?
396 
397  // Initialize TKE/QKE with linear profiles whose surface values are a
398  // function of the friction velocity calculated by the surface layer scheme
399  // (e.g., as done in MYNN-EDMF)
400  bool init_tke_from_ustar = false;
401 
402  // Model coefficients - YSU
403  // TODO: Add parmparse for all of these above
405  1.0e-4; // 1e-4 is hardcoded in WRF, we let the user specify or tske the
406  // value from ERF coriolis forcing
408  false; // ignore input pbl_ysu_coriolis_freq, take value from ERF coriolis
409  // forcing instead
411  false; // Force YSU to act as if it is over water regardless of other inputs
412  // (for testing)
414  0.25; // Critical Bulk Richardson number of Land for stable conditions
416  0.0; // Critical Bulk Richardson number for unstable conditions
417  // Model coefficients - MRF
420  0.5; // Critical Bulk Richardson number for MRF PBL model
422  7.8; // Constant b in MRF PBL model, used to compute the PBL height
424  0.1; // MRF surface flux, used to compute the PBL height
425  bool mrf_moistvars = false; // if true, adds turbulence to moisture
426  // MYNN2.5 PBL model
427  // TKE/QKE stuff
428  bool advect_tke = true; // if MYNN2.5 PBL is used default is turb transport in
429  // Z-direction only
430  bool diffuse_tke_3D = true; // if numerical diffusion is turned on
431 };
432 #endif
AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE amrex::Real pp(amrex::Real y)
Definition: ERF_MicrophysicsUtils.H:233
amrex::Real Real
Definition: ERF_ShocInterface.H:19
AMREX_ENUM(LESType, None, Smagorinsky, Smagorinsky2D, Deardorff)
void query_one_or_per_level(const amrex::ParmParse &pp, const char *query_string, T &query_var, const int lev, const int maxlev)
Definition: ERF_TurbStruct.H:16
@ theta
Definition: ERF_MM5.H:20
@ T
Definition: ERF_IndexDefines.H:110
Definition: ERF_MYNNStruct.H:9
amrex::Real SMmax
Definition: ERF_MYNNStruct.H:56
amrex::Real SHmax
Definition: ERF_MYNNStruct.H:58
amrex::Real SQfac
Definition: ERF_MYNNStruct.H:52
amrex::Real C4
Definition: ERF_MYNNStruct.H:48
amrex::Real C1
Definition: ERF_MYNNStruct.H:45
amrex::Real C3
Definition: ERF_MYNNStruct.H:47
amrex::Real C2
Definition: ERF_MYNNStruct.H:46
amrex::Real A2
Definition: ERF_MYNNStruct.H:42
amrex::Real SHmin
Definition: ERF_MYNNStruct.H:57
amrex::Real B1
Definition: ERF_MYNNStruct.H:43
amrex::Real B2
Definition: ERF_MYNNStruct.H:44
amrex::Real C5
Definition: ERF_MYNNStruct.H:49
amrex::Real SMmin
Definition: ERF_MYNNStruct.H:55
amrex::Real A1
Definition: ERF_MYNNStruct.H:41
bool diffuse_moistvars
Definition: ERF_MYNNStruct.H:63
Definition: ERF_MYNNStruct.H:66
void init_coeffs(amrex::Real A1_lvl25, amrex::Real A2_lvl25, amrex::Real B1, amrex::Real B2, amrex::Real C1, amrex::Real C2, amrex::Real C3, amrex::Real, amrex::Real C5)
Definition: ERF_MYNNStruct.H:67
Definition: ERF_TurbStruct.H:41
bool smag2d
Definition: ERF_TurbStruct.H:350
amrex::Real sigma_k
Definition: ERF_TurbStruct.H:366
MYNNLevel25 pbl_mynn
Definition: ERF_TurbStruct.H:385
PBLType pbl_type
Definition: ERF_TurbStruct.H:383
amrex::Real pbl_mrf_const_b
Definition: ERF_TurbStruct.H:421
bool use_pbl_tke
Definition: ERF_TurbStruct.H:393
amrex::Real Sc_t_inv
Definition: ERF_TurbStruct.H:346
amrex::Real Rt_min
Definition: ERF_TurbStruct.H:361
bool use_keqn
Definition: ERF_TurbStruct.H:390
amrex::Real pbl_mrf_coriolis_freq
Definition: ERF_TurbStruct.H:418
MYNNLevel2 pbl_mynn_level2
Definition: ERF_TurbStruct.H:386
RANSType rans_type
Definition: ERF_TurbStruct.H:380
StratType strat_type
Definition: ERF_TurbStruct.H:371
amrex::Real pbl_mrf_Ribcr
Definition: ERF_TurbStruct.H:419
bool advect_tke
Definition: ERF_TurbStruct.H:428
amrex::Real Ck
Definition: ERF_TurbStruct.H:355
amrex::Real Cmu0
Definition: ERF_TurbStruct.H:358
bool pbl_ysu_use_consistent_coriolis
Definition: ERF_TurbStruct.H:407
amrex::Real Cb
Definition: ERF_TurbStruct.H:359
amrex::Real pbl_mrf_sf
Definition: ERF_TurbStruct.H:423
void init_params(int lev, int max_level, std::string pp_prefix)
Definition: ERF_TurbStruct.H:43
bool init_tke_from_ustar
Definition: ERF_TurbStruct.H:400
amrex::Real pbl_ysu_land_Ribcr
Definition: ERF_TurbStruct.H:413
bool mrf_moistvars
Definition: ERF_TurbStruct.H:425
bool use_tke
Definition: ERF_TurbStruct.H:395
bool diffuse_tke_3D
Definition: ERF_TurbStruct.H:430
amrex::Real Cs
Definition: ERF_TurbStruct.H:349
amrex::Real Pr_t_inv
Definition: ERF_TurbStruct.H:342
amrex::Real Ce_wall
Definition: ERF_TurbStruct.H:354
amrex::Real Ce
Definition: ERF_TurbStruct.H:353
LESType les_type
Definition: ERF_TurbStruct.H:338
amrex::Real pbl_ysu_coriolis_freq
Definition: ERF_TurbStruct.H:404
bool pbl_ysu_force_over_water
Definition: ERF_TurbStruct.H:410
void display(int lev)
Definition: ERF_TurbStruct.H:221
bool use_smag_stratification
Definition: ERF_TurbStruct.H:377
amrex::Real Pr_t
Definition: ERF_TurbStruct.H:341
bool use_kturb
Definition: ERF_TurbStruct.H:389
amrex::Real theta_ref
Definition: ERF_TurbStruct.H:369
amrex::Real Sc_t
Definition: ERF_TurbStruct.H:345
amrex::Real Rt_crit
Definition: ERF_TurbStruct.H:360
amrex::Real pbl_ysu_unst_Ribcr
Definition: ERF_TurbStruct.H:415
bool mix_isotropic
Definition: ERF_TurbStruct.H:374
amrex::Real l_g_max
Definition: ERF_TurbStruct.H:362