Function for computing the implicit contribution to the vertical diffusion of momentum, over terrain.
This function (explicitly instantiated below) handles staggering in x, y, or z through the template parameter, stagdir. NOTE: implicit diffusion of w has remains an experimental feature and has not been tested yet with terrain.
276 BL_PROFILE_VAR(
"ImplicitDiffForMom_T()",ImplicitDiffForMom_T);
287 constexpr
Real molec_fac = (stagdir == 2) ?
two :
one;
298 constexpr
int ioff = (stagdir == 0) ? 1 : 0;
299 constexpr
int joff = (stagdir == 1) ? 1 : 0;
302 int ilo = bx.smallEnd(0);
303 int ihi = bx.bigEnd(0);
304 int jlo = bx.smallEnd(1);
305 int jhi = bx.bigEnd(1);
306 int klo = bx.smallEnd(2);
307 int khi = bx.bigEnd(2);
308 amrex::ignore_unused(ilo, ihi, jlo, jhi);
312 amrex::FArrayBox RHS_fab, soln_fab, coeffG_fab;
313 RHS_fab.resize(bx,1, amrex::The_Async_Arena());
314 soln_fab.resize(bx,1, amrex::The_Async_Arena());
315 coeffG_fab.resize(bx,1, amrex::The_Async_Arena());
316 auto const& RHS_a = RHS_fab.array();
317 auto const& soln_a = soln_fab.array();
318 auto const& coeffG_a = coeffG_fab.array();
320 Real dz_inv = cellSizeInv[2];
329 amrex::ignore_unused(foextrap_on_zlo,foextrap_on_zhi);
332 "Unexpected lower BC for momentum used with implicit vertical diffusion");
334 "Unexpected upper BC for momentum used with implicit vertical diffusion");
336 Real Fact = implicit_fac * dt * dz_inv;
339 ParallelFor(makeSlab(bx,2,0), [=] AMREX_GPU_DEVICE (
int i,
int j,
int)
342 for (
int j(jlo); j<=jhi; ++j) {
343 for (
int i(ilo); i<=ihi; ++i) {
384 Real rhoface, rhoAlpha_lo, rhoAlpha_hi;
385 Real detJface, met_h_zeta_lo, met_h_zeta_hi;
386 Real a_tmp, b_tmp, c_tmp, inv_b2_tmp;
388 detJface =
myhalf * (detJ(i,j,klo) + detJ(i-ioff,j-joff,klo));
391 cell_data, mu_turb, mu_eff,
400 c_tmp = -Fact * gfac * rhoAlpha_hi * dz_inv / met_h_zeta_hi;
402 RHS_a(i,j,klo) = detJface * face_data(i,j,klo);
405 if (ext_dir_on_zlo) {
406 RHS_a(i,j,klo) += Fact * gfac * (tau_corr(i,j,klo+1) - tau_corr(i,j,klo));
409 RHS_a(i,j,klo) =
zero;
412 a_tmp = -
two * Fact * rhoAlpha_lo * dz_inv / met_h_zeta_lo;
414 + cell_data(i-ioff,j-joff,klo-1,
Rho_comp) );
415 const Real wall_velocity = face_data(i,j,klo-1) / rho_wall;
416 RHS_a(i,j,klo) -= a_tmp * wall_velocity;
418 }
else if (use_SurfLayer) {
420 RHS_a(i,j,klo) += Fact * gfac * (tau_corr(i,j,klo+1) - tau(i,j,klo));
421 RHS_a(i,j,klo) += Fact * tau(i,j,klo);
424 RHS_a(i,j,klo) += Fact * gfac * (tau_corr(i,j,klo+1) - tau_corr(i,j,klo));
435 if (use_ysu_mom_countergradient && stagdir < 2) {
438 const Real gam_klo =
myhalf * (mu_turb(i,j,klo ,hgam_comp) + mu_turb(i-ioff,j-joff,klo ,hgam_comp));
439 const Real gam_kp1 =
myhalf * (mu_turb(i,j,klo+1,hgam_comp) + mu_turb(i-ioff,j-joff,klo+1,hgam_comp));
440 const Real gam_hi =
myhalf * (gam_klo + gam_kp1);
441 RHS_a(i,j,klo) -= Fact * rhoAlpha_hi * gam_hi;
444 b_tmp = detJface * rhoface - a_tmp - c_tmp;
447 RHS_a(i,j,klo) /= b_tmp;
448 coeffG_a(i,j,klo) = c_tmp / b_tmp;
453 for (
int k(klo+1); k <
khi; k++) {
454 detJface =
myhalf * (detJ(i,j,k) + detJ(i-ioff,j-joff,k));
457 cell_data, mu_turb, mu_eff,
465 a_tmp = -Fact * rhoAlpha_lo * dz_inv / met_h_zeta_lo;
466 c_tmp = -Fact * rhoAlpha_hi * dz_inv / met_h_zeta_hi;
467 b_tmp = detJface * rhoface - a_tmp - c_tmp;
468 inv_b2_tmp =
one / (b_tmp - a_tmp * coeffG_a(i,j,k-1));
470 RHS_a(i,j,k) = detJface * face_data(i,j,k);
471 RHS_a(i,j,k) += Fact * gfac * (tau_corr(i,j,k+1) - tau_corr(i,j,k));
474 if (use_ysu_mom_countergradient && stagdir < 2) {
477 const Real gam_k =
myhalf * (mu_turb(i,j,k ,hgam_comp) + mu_turb(i-ioff,j-joff,k ,hgam_comp));
478 const Real gam_km1 =
myhalf * (mu_turb(i,j,k-1,hgam_comp) + mu_turb(i-ioff,j-joff,k-1,hgam_comp));
479 const Real gam_kp1 =
myhalf * (mu_turb(i,j,k+1,hgam_comp) + mu_turb(i-ioff,j-joff,k+1,hgam_comp));
480 const Real gam_hi =
myhalf * (gam_k + gam_kp1);
481 const Real gam_lo =
myhalf * (gam_k + gam_km1);
482 RHS_a(i,j,k) -= Fact * (rhoAlpha_hi * gam_hi - rhoAlpha_lo * gam_lo);
485 RHS_a(i,j,k) = (RHS_a(i,j,k) - a_tmp * RHS_a(i,j,k-1)) * inv_b2_tmp;
486 coeffG_a(i,j,k) = c_tmp * inv_b2_tmp;
492 detJface =
myhalf * (detJ(i,j,
khi) + detJ(i-ioff,j-joff,
khi));
495 cell_data, mu_turb, mu_eff,
503 a_tmp = -Fact * gfac * rhoAlpha_lo * dz_inv / met_h_zeta_lo;
506 RHS_a(i,j,
khi) = detJface * face_data(i,j,
khi);
507 RHS_a(i,j,
khi) += Fact * gfac * (tau_corr(i,j,
khi+1) - tau_corr(i,j,
khi));
510 if (ext_dir_on_zhi) {
516 c_tmp = -
two * Fact * rhoAlpha_hi * dz_inv / met_h_zeta_hi;
519 const Real wall_velocity = face_data(i,j,
khi+1) / rho_wall;
520 RHS_a(i,j,
khi) -= c_tmp * wall_velocity;
524 b_tmp = detJface * rhoface - a_tmp - c_tmp;
525 inv_b2_tmp =
one / (b_tmp - a_tmp * coeffG_a(i,j,
khi-1));
528 soln_a(i,j,
khi) = (RHS_a(i,j,
khi) - a_tmp * RHS_a(i,j,
khi-1)) * inv_b2_tmp;
533 for (
int k(
khi-1); k>=klo; --k) {
534 soln_a(i,j,k) = RHS_a(i,j,k) - coeffG_a(i,j,k) * soln_a(i,j,k+1);
539 for (
int k(klo); k<=
khi; ++k) {
541 face_data(i,j,k) = rhoface * soln_a(i,j,k);
constexpr amrex::Real three
Definition: ERF_Constants.H:11
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
AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE void getRhoAlphaForFaces(int i, int j, int k, int ioff, int joff, amrex::Real &rhoAlpha_lo, amrex::Real &rhoAlpha_hi, const amrex::Array4< const amrex::Real > &cell_data, const amrex::Array4< const amrex::Real > &mu_turb, const amrex::Real mu_eff, bool l_consA, bool l_turb)
Definition: ERF_GetRhoAlphaForFaces.H:22
#define Rho_comp
Definition: ERF_IndexDefines.H:39
const int khi
Definition: ERF_InitCustomPert_Bubble.H:21
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 amrex::Real Compute_h_zeta_AtKface(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:398
AMREX_ASSERT_WITH_MESSAGE(wbar_cutoff_min > wbar_cutoff_max, "ERROR: wbar_cutoff_min < wbar_cutoff_max")
@ xvel_bc
Definition: ERF_IndexDefines.H:105
@ foextrap
Definition: ERF_IndexDefines.H:291
@ ext_dir
Definition: ERF_IndexDefines.H:292
@ ext_dir_prim
Definition: ERF_IndexDefines.H:295
@ HGAMU_v
Definition: ERF_IndexDefines.H:262
@ HGAMV_v
Definition: ERF_IndexDefines.H:263
Definition: ERF_DiffStruct.H:22
MolecDiffType molec_diff_type
Selected molecular transport model.
Definition: ERF_DiffStruct.H:94
amrex::Real dynamic_viscosity
Dynamic viscosity for momentum diffusion [kg/(m-s)].
Definition: ERF_DiffStruct.H:106
amrex::Real rho0_trans
Reference density used to compute dynamic diffusion coefficients [kg/m3].
Definition: ERF_DiffStruct.H:101
amrex::Vector< TurbChoice > turbChoice
Turbulence options for each AMR level.
Definition: ERF_DataStruct.H:1864
DiffChoice diffChoice
Diffusion-related options.
Definition: ERF_DataStruct.H:1861
Definition: ERF_TurbStruct.H:114
bool use_kturb
Whether any turbulence model is active.
Definition: ERF_TurbStruct.H:665