ERF
Energy Research and Forecasting: An Atmospheric Modeling Code
ERF_ComputeDiffusivityMYNNEDMF.cpp File Reference
#include <algorithm>
#include <iostream>
#include <vector>
#include <cmath>
#include <functional>
#include <limits>
#include "ERF_SurfaceLayer.H"
#include "ERF_DirectionSelector.H"
#include "ERF_Diffusion.H"
#include "ERF_Constants.H"
#include "ERF_TurbStruct.H"
#include "ERF_PBLModels.H"
Include dependency graph for ERF_ComputeDiffusivityMYNNEDMF.cpp:

Functions

void ComputeDiffusivityMYNNEDMF (const MultiFab &xvel, const MultiFab &yvel, const MultiFab &cons_in, MultiFab &eddyViscosity, const Geometry &geom, const TurbChoice &turbChoice, std::unique_ptr< SurfaceLayer > &SurfLayer, bool use_terrain_fitted_coords, bool use_moisture, int level, const BCRec *bc_ptr, bool, const std::unique_ptr< MultiFab > &z_phys_nd, const std::unique_ptr< MultiFab > &z_phys_cc, const MoistureComponentIndices &moisture_indices)
 Compute eddy viscosity and diffusivity coefficients using the MYNN-EDMF closure. More...
 

Function Documentation

◆ ComputeDiffusivityMYNNEDMF()

void ComputeDiffusivityMYNNEDMF ( const MultiFab &  xvel,
const MultiFab &  yvel,
const MultiFab &  cons_in,
MultiFab &  eddyViscosity,
const Geometry &  geom,
const TurbChoice turbChoice,
std::unique_ptr< SurfaceLayer > &  SurfLayer,
bool  use_terrain_fitted_coords,
bool  use_moisture,
int  level,
const BCRec *  bc_ptr,
bool  ,
const std::unique_ptr< MultiFab > &  z_phys_nd,
const std::unique_ptr< MultiFab > &  z_phys_cc,
const MoistureComponentIndices moisture_indices 
)

Compute eddy viscosity and diffusivity coefficients using the MYNN-EDMF closure.

Parameters
[in]xvelHorizontal x-velocity field.
[in]yvelHorizontal y-velocity field.
[in]cons_inField of conservative variables.
[out]eddyViscosityMultiFab to be filled with computed eddy diffusivities.
[in]geomGrid geometry.
[in]turbChoiceTurbulence closure options and parameters.
[in]SurfLayerSurface layer data for MOST parameters.
[in]use_terrain_fitted_coordsFlag to use terrain-fitted vertical coordinates.
[in]use_moistureFlag to include moisture in buoyancy calculations.
[in]levelCurrent level index.
[in]bc_ptrPointer to boundary condition records.
[in]z_phys_ndPhysical height field at nodes.
[in]z_phys_ccPhysical height field at cell centers.
[in]moisture_indicesIndices for mapping moisture variables in the conservative field.
4209 {
4210  Print()<<"reached mynnedmf"<<std::endl;
4211  {
4212  int n=1;
4213  Real a=1;
4214  Real b=1;
4215  Real c=1;
4216  Real d=1;
4217  Real x=0;
4218 #if 0
4219  tridiag2_cc(n,&a,&b,&c,&d,&x);
4220 #endif
4221  printf("ran tridiag2_cc with n=%d and got %g %g %g %g %g",n,a,b,c,d,x);
4222  }
4223 
4224  auto mynn = turbChoice.pbl_mynn;
4225  auto level2 = turbChoice.pbl_mynn_level2;
4226 
4227  Real Lt_alpha = (mynn.config == MYNNConfigType::CHEN2021) ? Real(0.1) : Real(0.23);
4228 
4229  // Dirichlet flags to switch derivative stencil
4230  bool c_ext_dir_on_zlo = ( (bc_ptr[BCVars::cons_bc].lo(2) == ERFBCType::ext_dir) );
4231  bool c_ext_dir_on_zhi = ( (bc_ptr[BCVars::cons_bc].hi(2) == ERFBCType::ext_dir) );
4232  bool u_ext_dir_on_zlo = ( (bc_ptr[BCVars::xvel_bc].lo(2) == ERFBCType::ext_dir) );
4233  bool u_ext_dir_on_zhi = ( (bc_ptr[BCVars::xvel_bc].hi(2) == ERFBCType::ext_dir) );
4234  bool v_ext_dir_on_zlo = ( (bc_ptr[BCVars::yvel_bc].lo(2) == ERFBCType::ext_dir) );
4235  bool v_ext_dir_on_zhi = ( (bc_ptr[BCVars::yvel_bc].hi(2) == ERFBCType::ext_dir) );
4236 
4237  // Epsilon
4239 
4240 #ifdef _OPENMP
4241 #pragma omp parallel if (Gpu::notInLaunchRegion())
4242 #endif
4243  // NOTE: we must not tile in z here because the body of this loop assumes that each
4244  // iterate spans the entire column: it grows the box by one in z and accumulates
4245  // vertical integrals into a per-iterate qintegral fab (as in MYNN25)
4246  for ( MFIter mfi(eddyViscosity,TileNoZ()); mfi.isValid(); ++mfi) {
4247 
4248  const Box &bx = mfi.growntilebox(1);
4249  const Array4<Real const>& cell_data = cons_in.array(mfi);
4250  const Array4<Real >& K_turb = eddyViscosity.array(mfi);
4251  const Array4<Real const>& uvel = xvel.array(mfi);
4252  const Array4<Real const>& vvel = yvel.array(mfi);
4253 
4254  // Compute some quantities that are constant in each column
4255  // Sbox is shrunk to only include the interior of the domain in the vertical direction to compute integrals
4256  // Box includes one ghost cell in each direction
4257  const Box &dbx = geom.Domain();
4258  Box sbx(bx.smallEnd(), bx.bigEnd());
4259  sbx.grow(2,-1);
4260  AMREX_ALWAYS_ASSERT(sbx.smallEnd(2) == dbx.smallEnd(2) && sbx.bigEnd(2) == dbx.bigEnd(2));
4261 
4262  const GeometryData gdata = geom.data();
4263 
4264  const Box xybx = PerpendicularBox<ZDir>(bx, IntVect{0,0,0});
4265 
4266  FArrayBox qintegral(xybx,2,The_Async_Arena());
4267  FArrayBox qturb(bx,1,The_Async_Arena());
4268  FArrayBox qturb_old(bx,1,The_Async_Arena());
4269 
4270  qintegral.setVal<RunOn::Device>(0);
4271 
4272  const Array4<Real> qint = qintegral.array();
4273  const Array4<Real> qvel = qturb.array();
4274 
4275  // vertical integrals to compute lengthscale
4276  if (use_terrain_fitted_coords) {
4277  const Array4<Real const> &z_nd_arr = z_phys_nd->array(mfi);
4278  const auto invCellSize = geom.InvCellSizeArray();
4279  ParallelFor(bx, [=] AMREX_GPU_DEVICE (int i, int j, int k) noexcept
4280  {
4281  qvel(i,j,k) = std::sqrt(two * cell_data(i,j,k,RhoKE_comp) / cell_data(i,j,k,Rho_comp));
4282  AMREX_ASSERT_WITH_MESSAGE(qvel(i,j,k) > zero, "KE must have a positive value");
4283 
4284  Real fac = (sbx.contains(i,j,k)) ? one : zero;
4285  const Real Zval = Compute_Zrel_AtCellCenter(i,j,k,z_nd_arr);
4286  const Real dz = Compute_h_zeta_AtCellCenter(i,j,k,invCellSize,z_nd_arr);
4287  Gpu::Atomic::Add(&qint(i,j,0,0), Zval*qvel(i,j,k)*dz*fac);
4288  Gpu::Atomic::Add(&qint(i,j,0,1), qvel(i,j,k)*dz*fac);
4289  });
4290  } else {
4291  ParallelFor(bx, [=] AMREX_GPU_DEVICE (int i, int j, int k) noexcept
4292  {
4293  qvel(i,j,k) = std::sqrt(two * cell_data(i,j,k,RhoKE_comp) / cell_data(i,j,k,Rho_comp));
4294  AMREX_ASSERT_WITH_MESSAGE(qvel(i,j,k) > zero, "KE must have a positive value");
4295 
4296  // Not multiplying by dz: its constant and would fall out when we divide qint0/qint1 anyway
4297 
4298  Real fac = (sbx.contains(i,j,k)) ? one : zero;
4299  const Real Zval = gdata.ProbLo(2) + (k + myhalf)*gdata.CellSize(2);
4300  Gpu::Atomic::Add(&qint(i,j,0,0), Zval*qvel(i,j,k)*fac);
4301  Gpu::Atomic::Add(&qint(i,j,0,1), qvel(i,j,k)*fac);
4302  });
4303  }
4304 
4305  int izmin = geom.Domain().smallEnd(2);
4306  int izmax = geom.Domain().bigEnd(2);
4307 
4308  // Spatially varying MOST
4309  Real d_kappa = KAPPA;
4310  Real d_gravity = CONST_GRAV;
4311 
4312  const auto& t_mean_mf = SurfLayer->get_mac_avg(level,4); // theta_v
4313  const auto& q_mean_mf = SurfLayer->get_mac_avg(level,3); // q_v
4314  const auto& u_star_mf = SurfLayer->get_u_star(level);
4315  const auto& t_star_mf = SurfLayer->get_t_star(level);
4316  const auto& q_star_mf = SurfLayer->get_q_star(level);
4317 
4318  const auto& tm_arr = t_mean_mf->const_array(mfi);
4319  const auto& qm_arr = q_mean_mf->const_array(mfi);
4320  const auto& u_star_arr = u_star_mf->const_array(mfi);
4321  const auto& t_star_arr = t_star_mf->const_array(mfi);
4322  const auto& q_star_arr = (use_moisture) ? q_star_mf->const_array(mfi) : Array4<Real>{};
4323 
4324  const Array4<Real const> z_nd_arr = z_phys_nd->const_array(mfi);
4325  const PBLDerivativeDzInv_T pbl_derivative_dz_inv{z_phys_cc->const_array(mfi)};
4326 
4327  ParallelFor(bx, [=] AMREX_GPU_DEVICE (int i, int j, int k) noexcept
4328  {
4329  // Compute some partial derivatives that we will need (second order)
4330  // U and V derivatives are interpolated to account for staggered grid
4331  Real dthetadz, dudz, dvdz;
4333  uvel, vvel, cell_data, izmin, izmax, pbl_derivative_dz_inv(i,j,k),
4334  c_ext_dir_on_zlo, c_ext_dir_on_zhi,
4335  u_ext_dir_on_zlo, u_ext_dir_on_zhi,
4336  v_ext_dir_on_zlo, v_ext_dir_on_zhi,
4337  dthetadz, dudz, dvdz,
4338  moisture_indices);
4339 
4340  // Spatially varying MOST
4341  Real theta0 = tm_arr(i,j,0);
4342  Real qv0 = qm_arr(i,j,0);
4343  Real surface_heat_flux = -u_star_arr(i,j,0) * t_star_arr(i,j,0);
4344  Real surface_latent_heat{0};
4345  if (use_moisture) {
4346  // Compute buoyancy flux (Stull Eqn. 4.4.5d)
4347  surface_latent_heat = -u_star_arr(i,j,0) * q_star_arr(i,j,0);
4348  surface_heat_flux *= (one + Real(0.61)*qv0);
4349  surface_heat_flux += Real(0.61) * theta0 * surface_latent_heat;
4350  }
4351 
4352  Real l_obukhov;
4353  if (std::abs(surface_heat_flux) > eps) {
4354  l_obukhov = -( theta0 * u_star_arr(i,j,0)*u_star_arr(i,j,0)*u_star_arr(i,j,0) )
4355  / ( d_kappa * d_gravity * surface_heat_flux );
4356  } else {
4357  l_obukhov = std::numeric_limits<Real>::max();
4358  }
4359 
4360  // Surface-layer length scale (NN09, Eqn. 53)
4361  AMREX_ASSERT(l_obukhov != 0);
4362  int lk = amrex::max(k,0);
4363  const Real zval = use_terrain_fitted_coords ? Compute_Zrel_AtCellCenter(i,j,lk,z_nd_arr)
4364  : gdata.ProbLo(2) + (lk + myhalf)*gdata.CellSize(2);
4365  const Real zeta = zval/l_obukhov;
4366  Real l_S;
4367  if (zeta >= one) {
4368  l_S = KAPPA*zval/Real(3.7);
4369  } else if (zeta >= 0) {
4370  l_S = KAPPA*zval/(1+Real(2.7)*zeta);
4371  } else {
4372  l_S = KAPPA*zval*std::pow(one - Real(100.0) * zeta, Real(0.2));
4373  }
4374 
4375  // ABL-depth length scale (NN09, Eqn. 54)
4376  Real l_T;
4377  if (qint(i,j,0,1) > zero) {
4378  l_T = Lt_alpha*qint(i,j,0,0)/qint(i,j,0,1);
4379  } else {
4380  l_T = std::numeric_limits<Real>::max();
4381  }
4382 
4383  // Buoyancy length scale (NN09, Eqn. 55)
4384  Real l_B;
4385  if (dthetadz > 0) {
4386  Real N_brunt_vaisala = std::sqrt(CONST_GRAV/theta0 * dthetadz);
4387  if (zeta < 0) {
4388  Real qc = CONST_GRAV/theta0 * surface_heat_flux * l_T; // velocity scale
4389  qc = std::pow(qc,one/three);
4390  l_B = (one + Real(5.0)*std::sqrt(qc/(N_brunt_vaisala * l_T))) * qvel(i,j,k)/N_brunt_vaisala;
4391  } else {
4392  l_B = qvel(i,j,k) / N_brunt_vaisala;
4393  }
4394  } else {
4395  l_B = std::numeric_limits<Real>::max();
4396  }
4397 
4398  // Master length scale
4399  Real Lm;
4400  if (mynn.config == MYNNConfigType::CHEN2021) {
4401  Lm = std::pow(one/(l_S*l_S) + one/(l_T*l_T) + one/(l_B*l_B), -myhalf);
4402  } else {
4403  // NN09, Eqn 52
4404  Lm = one / (one/l_S + one/l_T + one/l_B);
4405  }
4406 
4407  // Calculate nondimensional production terms
4408  Real shearProd = dudz*dudz + dvdz*dvdz;
4409  Real buoyProd = -(CONST_GRAV/theta0) * dthetadz;
4410  Real L2_over_q2 = Lm*Lm/(qvel(i,j,k)*qvel(i,j,k));
4411  Real GM = L2_over_q2 * shearProd;
4412  Real GH = L2_over_q2 * buoyProd;
4413 
4414  // Equilibrium (Level-2) q calculation follows NN09, Appendix 2
4415  Real Rf = level2.calc_Rf(GM, GH);
4416  Real SM2 = level2.calc_SM(Rf);
4417  Real qe2 = mynn.B1*Lm*Lm*SM2*(one-Rf)*shearProd;
4418  Real qe = (qe2 < zero) ? zero : std::sqrt(qe2);
4419 
4420  // Level 2 limiting (Helfand and Labraga 1988)
4421  Real alphac = (qvel(i,j,k) > qe) ? one : qvel(i,j,k) / (qe + eps);
4422 
4423  // Level Real(2.5) stability functions
4424  Real SM, SH, SQ;
4425  mynn.calc_stability_funcs(SM,SH,SQ,GM,GH,alphac);
4426 
4427  // Clip SM, SH, SQ following WRF. SQ is proportional to the *unclipped*
4428  // SM (NN09 Eqn. 67 is evaluated before SM is limited), so it needs its own
4429  // bounds; without them the TKE diffusivity below can go negative and turn
4430  // the vertical TKE diffusion anti-diffusive.
4431  SM = amrex::min(amrex::max(SM,mynn.SMmin), mynn.SMmax);
4432  SH = amrex::min(amrex::max(SH,mynn.SHmin), mynn.SHmax);
4433  SQ = amrex::min(amrex::max(SQ,mynn.SQmin), mynn.SQmax);
4434 
4435  // Finally, compute the eddy viscosity/diffusivities
4436  const Real rho = cell_data(i,j,k,Rho_comp);
4437  K_turb(i,j,k,EddyDiff::Mom_v) = rho * Lm * qvel(i,j,k) * SM;
4438  K_turb(i,j,k,EddyDiff::Theta_v) = rho * Lm * qvel(i,j,k) * SH;
4439  K_turb(i,j,k,EddyDiff::KE_v) = rho * Lm * qvel(i,j,k) * SQ;
4440 
4441  // TODO: implement partial-condensation scheme?
4442  // Currently, implementation matches NN09 without rain (i.e.,
4443  // the liquid water potential temperature is equal to the
4444  // potential temperature.
4445 
4446  // NN09 gives the total water content flux; this assumes that
4447  // all the species have the same eddy diffusivity
4448  if (mynn.diffuse_moistvars) {
4449  K_turb(i,j,k,EddyDiff::Q_v) = rho * Lm * qvel(i,j,k) * SH;
4450  }
4451 
4452  K_turb(i,j,k,EddyDiff::Turb_lengthscale) = Lm;
4453  });
4454  }
4455 }
constexpr amrex::Real three
Definition: ERF_Constants.H:11
constexpr amrex::Real KAPPA
Definition: ERF_Constants.H:63
constexpr amrex::Real two
Definition: ERF_Constants.H:10
constexpr amrex::Real one
Definition: ERF_Constants.H:9
constexpr amrex::Real zero
Definition: ERF_Constants.H:8
constexpr amrex::Real myhalf
Definition: ERF_Constants.H:13
constexpr amrex::Real CONST_GRAV
Definition: ERF_Constants.H:64
#define Rho_comp
Definition: ERF_IndexDefines.H:39
#define RhoKE_comp
Definition: ERF_IndexDefines.H:41
const bool use_moisture
Definition: ERF_InitCustomPert_ABL.H:71
AMREX_ALWAYS_ASSERT(bx.length()[2]==khi+1)
ParallelFor(fab_box, [=] AMREX_GPU_DEVICE(int i, int j, int k) { qrcuten_arr(i, j, k)=Real(0);qscuten_arr(i, j, k)=Real(0);qicuten_arr(i, j, k)=Real(0);})
AMREX_GPU_DEVICE AMREX_FORCE_INLINE void ComputeVerticalDerivativesPBL(int i, int j, int k, const amrex::Array4< const amrex::Real > &uvel, const amrex::Array4< const amrex::Real > &vvel, const amrex::Array4< const amrex::Real > &cell_data, const int izmin, const int izmax, const PBLDerivativeDzInv &dz_inv, const bool c_ext_dir_on_zlo, const bool c_ext_dir_on_zhi, const bool u_ext_dir_on_zlo, const bool u_ext_dir_on_zhi, const bool v_ext_dir_on_zlo, const bool v_ext_dir_on_zhi, amrex::Real &dthetadz, amrex::Real &dudz, amrex::Real &dvdz, const MoistureComponentIndices &moisture_indices)
Definition: ERF_PBLModels.H:277
amrex::Real Real
Definition: ERF_ShocInterface.H:19
AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real Compute_Zrel_AtCellCenter(const int &i, const int &j, const int &k, const amrex::Array4< const amrex::Real > &z_nd)
Definition: ERF_TerrainMetrics.H:740
AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE amrex::Real Compute_h_zeta_AtCellCenter(const int &i, const int &j, const int &k, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &cellSizeInv, const amrex::Array4< const amrex::Real > &z_nd)
Definition: ERF_TerrainMetrics.H:179
AMREX_FORCE_INLINE amrex::IntVect TileNoZ()
Definition: ERF_TileNoZ.H:11
AMREX_ASSERT_WITH_MESSAGE(wbar_cutoff_min > wbar_cutoff_max, "ERROR: wbar_cutoff_min < wbar_cutoff_max")
@ yvel_bc
Definition: ERF_IndexDefines.H:106
@ cons_bc
Definition: ERF_IndexDefines.H:89
@ xvel_bc
Definition: ERF_IndexDefines.H:105
@ ext_dir
Definition: ERF_IndexDefines.H:292
@ Theta_v
Definition: ERF_IndexDefines.H:250
@ Turb_lengthscale
Definition: ERF_IndexDefines.H:254
@ Q_v
Definition: ERF_IndexDefines.H:253
@ Mom_v
Definition: ERF_IndexDefines.H:249
@ KE_v
Definition: ERF_IndexDefines.H:251
@ rho
Definition: ERF_Kessler.H:24
@ qc
Definition: ERF_SatAdj.H:41
@ xvel
Definition: ERF_IndexDefines.H:215
@ yvel
Definition: ERF_IndexDefines.H:216
@ dz
Definition: ERF_AdvanceWDM6.cpp:270
real(c_double), parameter epsilon
Definition: ERF_module_model_constants.F90:12
Functor for inverse vertical spacings for terrain-following grids using cell-center heights.
Definition: ERF_PBLModels.H:457
MYNNLevel2 pbl_mynn_level2
MYNN level-2 closure coefficients for limiting.
Definition: ERF_TurbStruct.H:662
MYNNLevel25 pbl_mynn
MYNN level-2.5 closure coefficients.
Definition: ERF_TurbStruct.H:661

Referenced by ComputeTurbulentViscosity().

Here is the call graph for this function:
Here is the caller graph for this function: