ERF
Energy Research and Forecasting: An Atmospheric Modeling Code
ERF_Substep_MT.cpp File Reference
#include <ERF_TI_fast_headers.H>
#include "ERF_Constants.H"
Include dependency graph for ERF_Substep_MT.cpp:

Functions

void erf_substep_MT (int step, int, int level, int finest_level, Vector< MultiFab > &S_slow_rhs, const Vector< MultiFab > &S_prev, Vector< MultiFab > &S_stg_data, const MultiFab &S_stg_prim, const MultiFab &qt, const MultiFab &pi_stage, const MultiFab &fast_coeffs, Vector< MultiFab > &S_data, MultiFab &lagged_delta_rt, MultiFab &avg_xmom, MultiFab &avg_ymom, MultiFab &avg_zmom, const MultiFab &cc_src, const MultiFab &xmom_src, const MultiFab &ymom_src, const MultiFab &zmom_src, const Geometry geom, const Real gravity, const bool use_lagged_delta_rt, std::unique_ptr< MultiFab > &z_t_rk, const MultiFab *z_t_pert, std::unique_ptr< MultiFab > &z_phys_nd_old, std::unique_ptr< MultiFab > &z_phys_nd_new, std::unique_ptr< MultiFab > &z_phys_nd_stg, std::unique_ptr< MultiFab > &detJ_cc_old, std::unique_ptr< MultiFab > &detJ_cc_new, std::unique_ptr< MultiFab > &detJ_cc_stg, const double dtau_d, const Real beta_s, const Real facinv, Vector< std::unique_ptr< MultiFab >> &mapfac, YAFluxRegister *fr_as_crse, YAFluxRegister *fr_as_fine, bool l_use_moisture, bool l_reflux, bool, const Real *sinesq_stag_d, const Real l_damp_coef)
 

Function Documentation

◆ erf_substep_MT()

void erf_substep_MT ( int  step,
int  ,
int  level,
int  finest_level,
Vector< MultiFab > &  S_slow_rhs,
const Vector< MultiFab > &  S_prev,
Vector< MultiFab > &  S_stg_data,
const MultiFab &  S_stg_prim,
const MultiFab &  qt,
const MultiFab &  pi_stage,
const MultiFab &  fast_coeffs,
Vector< MultiFab > &  S_data,
MultiFab &  lagged_delta_rt,
MultiFab &  avg_xmom,
MultiFab &  avg_ymom,
MultiFab &  avg_zmom,
const MultiFab &  cc_src,
const MultiFab &  xmom_src,
const MultiFab &  ymom_src,
const MultiFab &  zmom_src,
const Geometry  geom,
const Real  gravity,
const bool  use_lagged_delta_rt,
std::unique_ptr< MultiFab > &  z_t_rk,
const MultiFab *  z_t_pert,
std::unique_ptr< MultiFab > &  z_phys_nd_old,
std::unique_ptr< MultiFab > &  z_phys_nd_new,
std::unique_ptr< MultiFab > &  z_phys_nd_stg,
std::unique_ptr< MultiFab > &  detJ_cc_old,
std::unique_ptr< MultiFab > &  detJ_cc_new,
std::unique_ptr< MultiFab > &  detJ_cc_stg,
const double  dtau_d,
const Real  beta_s,
const Real  facinv,
Vector< std::unique_ptr< MultiFab >> &  mapfac,
YAFluxRegister *  fr_as_crse,
YAFluxRegister *  fr_as_fine,
bool  l_use_moisture,
bool  l_reflux,
bool  ,
const Real sinesq_stag_d,
const Real  l_damp_coef 
)

Function for computing the fast RHS with moving terrain

Parameters
[in]stepwhich fast time step within each Runge-Kutta step
[in]nrkwhich Runge-Kutta step
[in]levellevel of resolution
[in]finest_levelfinest level of resolution
[in]S_slow_rhsslow RHS computed in erf_slow_rhs_pre
[in]S_prevprevious solution
[in]S_stg_datasolution at previous RK stage
[in]S_stg_primprimitive variables at previous RK stage
[in]pi_stageExner function at previous RK stage
[in]fast_coeffscoefficients for the tridiagonal solve used in the fast integrator
[out]S_datacurrent solution
[in,out]lagged_delta_rt
[in,out]avg_xmomtime-averaged x-momentum to be used for updating slow variables
[in,out]avg_ymomtime-averaged y-momentum to be used for updating slow variables
[in,out]avg_zmomtime-averaged z-momentum to be used for updating slow variables
[in]cc_srcsource terms for conserved variables
[in]xmom_srcsource terms for x-momentum
[in]ymom_srcsource terms for y-momentum
[in]zmom_srcsource terms for z-momentum
[in]geomcontainer for geometric information
[in]gravityMagnitude of gravity
[in]use_lagged_delta_rtdefine lagged_delta_rt for our next step
[in]z_t_rkrate of change of grid height – only relevant for moving terrain
[in]z_t_pertrate of change of grid height – interpolated between RK stages
[in]z_phys_nd_oldheight coordinate at nodes at old time
[in]z_phys_nd_newheight coordinate at nodes at new time
[in]z_phys_nd_stgheight coordinate at nodes at previous stage
[in]detJ_cc_oldJacobian of the metric transformation at old time
[in]detJ_cc_newJacobian of the metric transformation at new time
[in]detJ_cc_stgJacobian of the metric transformation at previous stage
[in]dtaufast time step
[in]beta_sCoefficient which determines how implicit vs explicit the solve is
[in]facinvinverse factor for time-averaging the momenta
[in]mapfacvector of map factors
[in,out]fr_as_crseYAFluxRegister at level l at level l / l+1 interface
[in,out]fr_as_fineYAFluxRegister at level l at level l-1 / l interface
[in]l_use_moisture
[in]l_refluxshould we add fluxes to the FluxRegisters?
[in]l_damp_coef
90 {
91  BL_PROFILE_REGION("erf_substep_MT()");
92 
93  Real dtau = static_cast<Real>(dtau_d);
94 
95  Real beta_1 = myhalf * (one - beta_s); // multiplies explicit terms
96  Real beta_2 = myhalf * (one + beta_s); // multiplies implicit terms
97 
98  // How much do we project forward the (rho theta) that is used in the horizontal momentum equations
99  Real beta_d = Real(0.1);
100 
101  Real RvOverRd = R_v / R_d;
102 
103  bool l_rayleigh_impl_for_w = (sinesq_stag_d != nullptr);
104 
105  const Real* dx = geom.CellSize();
106  const GpuArray<Real, AMREX_SPACEDIM> dxInv = geom.InvCellSizeArray();
107 
108  Real dxi = dxInv[0];
109  Real dyi = dxInv[1];
110  Real dzi = dxInv[2];
111 
112  MultiFab coeff_A_mf(fast_coeffs, make_alias, 0, 1);
113  MultiFab inv_coeff_B_mf(fast_coeffs, make_alias, 1, 1);
114  MultiFab coeff_C_mf(fast_coeffs, make_alias, 2, 1);
115  MultiFab coeff_P_mf(fast_coeffs, make_alias, 3, 1);
116  MultiFab coeff_Q_mf(fast_coeffs, make_alias, 4, 1);
117 
118  // *************************************************************************
119  // Set gravity as a vector
120  const Array<Real,AMREX_SPACEDIM> grav{zero, zero, -gravity};
121  const GpuArray<Real,AMREX_SPACEDIM> grav_gpu{grav[0], grav[1], grav[2]};
122 
123  MultiFab extrap(S_data[IntVars::cons].boxArray(),S_data[IntVars::cons].DistributionMap(),1,1);
124 
125  MultiFab Omega(S_data[IntVars::zmom].boxArray(), S_data[IntVars::zmom].DistributionMap(), 1, 1);
126 
127  // *************************************************************************
128  // Define updates in the current RK stg
129  // *************************************************************************
130 #ifdef _OPENMP
131 #pragma omp parallel if (Gpu::notInLaunchRegion())
132 #endif
133  {
134  FArrayBox temp_rhs_fab;
135 
136  FArrayBox RHS_fab;
137  FArrayBox soln_fab;
138 
139  std::array<FArrayBox,AMREX_SPACEDIM> flux;
140 
141  // NOTE: we leave tiling off here for efficiency -- to make this loop work with tiling
142  // will require additional changes
143  for ( MFIter mfi(S_stg_data[IntVars::cons],false); mfi.isValid(); ++mfi)
144  {
145  Box bx = mfi.tilebox();
146  Box tbx = surroundingNodes(bx,0);
147  Box tby = surroundingNodes(bx,1);
148  Box tbz = surroundingNodes(bx,2);
149 
150  Box vbx = mfi.validbox();
151  const auto& vbx_hi = ubound(vbx);
152 
153  const Array4<Real const>& xmom_src_arr = xmom_src.const_array(mfi);
154  const Array4<Real const>& ymom_src_arr = ymom_src.const_array(mfi);
155  const Array4<Real const>& zmom_src_arr = zmom_src.const_array(mfi);
156  const Array4<Real const>& cc_src_arr = cc_src.const_array(mfi);
157 
158  const Array4<const Real> & stg_cons = S_stg_data[IntVars::cons].const_array(mfi);
159  const Array4<const Real> & stg_xmom = S_stg_data[IntVars::xmom].const_array(mfi);
160  const Array4<const Real> & stg_ymom = S_stg_data[IntVars::ymom].const_array(mfi);
161  const Array4<const Real> & stg_zmom = S_stg_data[IntVars::zmom].const_array(mfi);
162  const Array4<const Real> & prim = S_stg_prim.const_array(mfi);
163  const Array4<const Real> & qt_arr = qt.const_array(mfi);
164 
165  const Array4<const Real>& slow_rhs_cons = S_slow_rhs[IntVars::cons].const_array(mfi);
166  const Array4<const Real>& slow_rhs_rho_u = S_slow_rhs[IntVars::xmom].const_array(mfi);
167  const Array4<const Real>& slow_rhs_rho_v = S_slow_rhs[IntVars::ymom].const_array(mfi);
168  const Array4<const Real>& slow_rhs_rho_w = S_slow_rhs[IntVars::zmom].const_array(mfi);
169 
170  const Array4<Real>& cur_cons = S_data[IntVars::cons].array(mfi);
171  const Array4<Real>& cur_xmom = S_data[IntVars::xmom].array(mfi);
172  const Array4<Real>& cur_ymom = S_data[IntVars::ymom].array(mfi);
173  const Array4<Real>& cur_zmom = S_data[IntVars::zmom].array(mfi);
174 
175  const Array4<Real>& lagged = lagged_delta_rt.array(mfi);
176 
177  const Array4<const Real>& prev_cons = S_prev[IntVars::cons].const_array(mfi);
178  const Array4<const Real>& prev_xmom = S_prev[IntVars::xmom].const_array(mfi);
179  const Array4<const Real>& prev_ymom = S_prev[IntVars::ymom].const_array(mfi);
180  const Array4<const Real>& prev_zmom = S_prev[IntVars::zmom].const_array(mfi);
181 
182  // These store the advection momenta which we will use to update the slow variables
183  const Array4<Real>& avg_xmom_arr = avg_xmom.array(mfi);
184  const Array4<Real>& avg_ymom_arr = avg_ymom.array(mfi);
185  const Array4<Real>& avg_zmom_arr = avg_zmom.array(mfi);
186 
187  const Array4<const Real>& z_nd_old = z_phys_nd_old->const_array(mfi);
188  const Array4<const Real>& z_nd_new = z_phys_nd_new->const_array(mfi);
189  const Array4<const Real>& z_nd_stg = z_phys_nd_stg->const_array(mfi);
190  const Array4<const Real>& detJ_old = detJ_cc_old->const_array(mfi);
191  const Array4<const Real>& detJ_new = detJ_cc_new->const_array(mfi);
192  const Array4<const Real>& detJ_stg = detJ_cc_stg->const_array(mfi);
193 
194  const Array4<const Real>& z_t_arr = z_t_rk->const_array(mfi);
195  const Array4<const Real>& zp_t_arr = z_t_pert->const_array(mfi);
196 
197  const Array4< Real>& omega_arr = Omega.array(mfi);
198 
199  // Map factors
200  const Array4<const Real>& mf_mx = mapfac[MapFacType::m_x]->const_array(mfi);
201  const Array4<const Real>& mf_my = mapfac[MapFacType::m_y]->const_array(mfi);
202  const Array4<const Real>& mf_ux = mapfac[MapFacType::u_x]->const_array(mfi);
203  const Array4<const Real>& mf_vy = mapfac[MapFacType::v_y]->const_array(mfi);
204 
205  // *********************************************************************
206  // This must be done before we set cur_xmom and cur_ymom, since those
207  // in fact point to the same array as prev_xmom and prev_ymom
208  // *********************************************************************
209  Box gbxo = mfi.nodaltilebox(2);
210  {
211  BL_PROFILE("fast_MT_making_omega");
212  Box gbxo_lo = gbxo; gbxo_lo.setBig(2,0);
213  ParallelFor(gbxo_lo, [=] AMREX_GPU_DEVICE (int i, int j, int k) noexcept {
214  omega_arr(i,j,k) = zero;
215  });
216  Box gbxo_hi = gbxo; gbxo_hi.setSmall(2,gbxo.bigEnd(2));
217  ParallelFor(gbxo_hi, [=] AMREX_GPU_DEVICE (int i, int j, int k) noexcept {
218  omega_arr(i,j,k) = prev_zmom(i,j,k) - stg_zmom(i,j,k) - zp_t_arr(i,j,k);
219  });
220 
221  // gbxo_lo covers k<=0 and gbxo_hi covers the box's top face, so the mid box is
222  // [max(smallEnd,1), bigEnd-1]. Using max() never EXPANDS the box past the FAB,
223  // which is what setSmall(2,1) does for a box that starts above k=1.
224  Box gbxo_mid = gbxo;
225  gbxo_mid.setSmall(2, std::max(gbxo.smallEnd(2), 1));
226  gbxo_mid.setBig (2, gbxo.bigEnd(2)-1);
227 
228  ParallelFor(gbxo_mid, [=] AMREX_GPU_DEVICE (int i, int j, int k) noexcept {
229  omega_arr(i,j,k) =
230  ( OmegaFromW(i,j,k,prev_zmom(i,j,k),prev_xmom,prev_ymom,mf_ux,mf_vy,z_nd_old,dxInv)
231  -OmegaFromW(i,j,k, stg_zmom(i,j,k), stg_xmom, stg_ymom,mf_ux,mf_vy,z_nd_old,dxInv) )
232  - zp_t_arr(i,j,k);
233  });
234  } // end profile
235  // *********************************************************************
236 
237  const Array4<const Real>& pi_stage_ca = pi_stage.const_array(mfi);
238 
239  const Array4<Real>& theta_extrap = extrap.array(mfi);
240 
241  // Note: it is important to grow the tilebox rather than use growntilebox because
242  // we need to fill the ghost cells of the tilebox so we can use them below
243  Box gbx = mfi.tilebox(); gbx.grow(1);
244  Box gtbx = mfi.nodaltilebox(0); gtbx.grow(1); gtbx.setSmall(2,0);
245  Box gtby = mfi.nodaltilebox(1); gtby.grow(1); gtby.setSmall(2,0);
246 
247  if (step == 0) {
248  ParallelFor(gbx,
249  [=] AMREX_GPU_DEVICE (int i, int j, int k) noexcept {
250  cur_cons(i,j,k,Rho_comp) = prev_cons(i,j,k,Rho_comp);
251  cur_cons(i,j,k,RhoTheta_comp) = prev_cons(i,j,k,RhoTheta_comp);
252 
253  Real delta_rt = cur_cons(i,j,k,RhoTheta_comp) - stg_cons(i,j,k,RhoTheta_comp);
254  theta_extrap(i,j,k) = delta_rt;
255 
256  // NOTE: qv is not changing over the fast steps so we use the stage data
257  Real qv = (l_use_moisture) ? prim(i,j,k,PrimQ1_comp) : zero;
258  theta_extrap(i,j,k) *= (one + RvOverRd*qv);
259 
260  // We define lagged_delta_rt for our next step as the current delta_rt
261  lagged(i,j,k) = delta_rt;
262  });
263  } else if (use_lagged_delta_rt) {
264  // This is the default for cases with no or static terrain
265  ParallelFor(gbx,
266  [=] AMREX_GPU_DEVICE (int i, int j, int k) noexcept {
267  Real delta_rt = cur_cons(i,j,k,RhoTheta_comp) - stg_cons(i,j,k,RhoTheta_comp);
268  theta_extrap(i,j,k) = delta_rt + beta_d * (delta_rt - lagged(i,j,k));
269 
270  // NOTE: qv is not changing over the fast steps so we use the stage data
271  Real qv = (l_use_moisture) ? prim(i,j,k,PrimQ1_comp) : zero;
272  theta_extrap(i,j,k) *= (one + RvOverRd*qv);
273 
274  // We define lagged_delta_rt for our next step as the current delta_rt
275  lagged(i,j,k) = delta_rt;
276  });
277  } else {
278  // For the moving wave problem, this choice seems more robust
279  ParallelFor(gbx,
280  [=] AMREX_GPU_DEVICE (int i, int j, int k) noexcept {
281  theta_extrap(i,j,k) = cur_cons(i,j,k,RhoTheta_comp) - stg_cons(i,j,k,RhoTheta_comp);
282 
283  // NOTE: qv is not changing over the fast steps so we use the stage data
284  Real qv = (l_use_moisture) ? prim(i,j,k,PrimQ1_comp) : zero;
285  theta_extrap(i,j,k) *= (one + RvOverRd*qv);
286  });
287  } // if step
288 
289  RHS_fab.resize (tbz,1, The_Async_Arena());
290  soln_fab.resize (tbz,1, The_Async_Arena());
291  temp_rhs_fab.resize(tbz,2, The_Async_Arena());
292 
293  auto const& RHS_a = RHS_fab.array();
294  auto const& soln_a = soln_fab.array();
295  auto const& temp_rhs_arr = temp_rhs_fab.array();
296 
297  auto const& coeffA_a = coeff_A_mf.array(mfi);
298  auto const& inv_coeffB_a = inv_coeff_B_mf.array(mfi);
299  auto const& coeffC_a = coeff_C_mf.array(mfi);
300  auto const& coeffP_a = coeff_P_mf.array(mfi);
301  auto const& coeffQ_a = coeff_Q_mf.array(mfi);
302 
303  // *********************************************************************
304  // Define updates in the RHS of {x, y, z}-momentum equations
305  // *********************************************************************
306  {
307  BL_PROFILE("substep_xymom_T");
308  ParallelFor(tbx, tby,
309  [=] AMREX_GPU_DEVICE (int i, int j, int k)
310  {
311  // Add (negative) gradient of (rho theta) multiplied by lagged "pi"
312  Real h_xi_old = Compute_h_xi_AtIface(i, j, k, dxInv, z_nd_old);
313  Real h_zeta_old = Compute_h_zeta_AtIface(i, j, k, dxInv, z_nd_old);
314  Real gp_xi = (theta_extrap(i,j,k) - theta_extrap(i-1,j,k)) * dxi;
315  Real gp_zeta_on_iface = (k == 0) ?
316  myhalf * dzi * ( theta_extrap(i-1,j,k+1) + theta_extrap(i,j,k+1)
317  - theta_extrap(i-1,j,k ) - theta_extrap(i,j,k ) ) :
318  fourth * dzi * ( theta_extrap(i-1,j,k+1) + theta_extrap(i,j,k+1)
319  - theta_extrap(i-1,j,k-1) - theta_extrap(i,j,k-1) );
320  Real gpx = h_zeta_old * gp_xi - h_xi_old * gp_zeta_on_iface;
321  gpx *= mf_ux(i,j,0);
322 
323  Real q = (l_use_moisture) ? myhalf * (qt_arr(i-1,j,k) + qt_arr(i,j,k)) : zero;
324 
325  Real pi_c = myhalf * (pi_stage_ca(i-1,j,k) + pi_stage_ca(i ,j,k));
326  Real fast_rhs_rho_u = -Gamma * R_d * pi_c * gpx / (one + q);
327 
328  // We have already scaled the source terms to have the extra factor of dJ
329  cur_xmom(i,j,k) = h_zeta_old * prev_xmom(i,j,k) + dtau * fast_rhs_rho_u
330  + dtau * slow_rhs_rho_u(i,j,k)
331  + dtau * xmom_src_arr(i,j,k);
332  },
333  [=] AMREX_GPU_DEVICE (int i, int j, int k)
334  {
335  // Add (negative) gradient of (rho theta) multiplied by lagged "pi"
336  Real h_eta_old = Compute_h_eta_AtJface(i, j, k, dxInv, z_nd_old);
337  Real h_zeta_old = Compute_h_zeta_AtJface(i, j, k, dxInv, z_nd_old);
338  Real gp_eta = (theta_extrap(i,j,k) -theta_extrap(i,j-1,k)) * dyi;
339  Real gp_zeta_on_jface = (k == 0) ?
340  myhalf * dzi * ( theta_extrap(i,j,k+1) + theta_extrap(i,j-1,k+1)
341  - theta_extrap(i,j,k ) - theta_extrap(i,j-1,k ) ) :
342  fourth * dzi * ( theta_extrap(i,j,k+1) + theta_extrap(i,j-1,k+1)
343  - theta_extrap(i,j,k-1) - theta_extrap(i,j-1,k-1) );
344  Real gpy = h_zeta_old * gp_eta - h_eta_old * gp_zeta_on_jface;
345  gpy *= mf_vy(i,j,0);
346 
347  Real q = (l_use_moisture) ? myhalf * (qt_arr(i,j-1,k) + qt_arr(i,j,k)) : zero;
348 
349  Real pi_c = myhalf * (pi_stage_ca(i,j-1,k) + pi_stage_ca(i,j ,k));
350  Real fast_rhs_rho_v = -Gamma * R_d * pi_c * gpy / (one + q);
351 
352  // We have already scaled the source terms to have the extra factor of dJ
353  cur_ymom(i, j, k) = h_zeta_old * prev_ymom(i,j,k) + dtau * fast_rhs_rho_v
354  + dtau * slow_rhs_rho_v(i,j,k)
355  + dtau * ymom_src_arr(i,j,k);
356  });
357  } // end profile
358 
359  // *************************************************************************
360  // Define flux arrays for use in advection
361  // *************************************************************************
362  for (int dir = 0; dir < AMREX_SPACEDIM; ++dir) {
363  flux[dir].resize(surroundingNodes(bx,dir),2,The_Async_Arena());
364  flux[dir].setVal<RunOn::Device>(0);
365  }
366  const GpuArray<const Array4<Real>, AMREX_SPACEDIM>
367  flx_arr{{AMREX_D_DECL(flux[0].array(), flux[1].array(), flux[2].array())}};
368 
369  // *********************************************************************
370  {
371  BL_PROFILE("fast_T_making_rho_rhs");
372  ParallelFor(bx, [=] AMREX_GPU_DEVICE (int i, int j, int k) noexcept
373  {
374  Real h_zeta_stg_xlo = Compute_h_zeta_AtIface(i, j , k, dxInv, z_nd_stg);
375  Real h_zeta_stg_xhi = Compute_h_zeta_AtIface(i+1,j , k, dxInv, z_nd_stg);
376  Real xflux_lo = cur_xmom(i ,j,k) - stg_xmom(i ,j,k)*h_zeta_stg_xlo;
377  Real xflux_hi = cur_xmom(i+1,j,k) - stg_xmom(i+1,j,k)*h_zeta_stg_xhi;
378 
379  Real h_zeta_stg_yhi = Compute_h_zeta_AtJface(i, j+1, k, dxInv, z_nd_stg);
380  Real h_zeta_stg_ylo = Compute_h_zeta_AtJface(i, j , k, dxInv, z_nd_stg);
381  Real yflux_lo = cur_ymom(i,j ,k) - stg_ymom(i,j ,k)*h_zeta_stg_ylo;
382  Real yflux_hi = cur_ymom(i,j+1,k) - stg_ymom(i,j+1,k)*h_zeta_stg_yhi;
383 
384  // NOTE: we are saving the (1/J) weighting for later when we add this to rho and theta
385  temp_rhs_arr(i,j,k,0) = ( xflux_hi - xflux_lo ) * dxi + ( yflux_hi - yflux_lo ) * dyi;
386  temp_rhs_arr(i,j,k,1) = (( xflux_hi * (prim(i,j,k,0) + prim(i+1,j,k,0)) -
387  xflux_lo * (prim(i,j,k,0) + prim(i-1,j,k,0)) ) * dxi +
388  ( yflux_hi * (prim(i,j,k,0) + prim(i,j+1,k,0)) -
389  yflux_lo * (prim(i,j,k,0) + prim(i,j-1,k,0)) ) * dyi) * myhalf;
390 
391  if (l_reflux) {
392  (flx_arr[0])(i,j,k,0) = xflux_lo;
393  (flx_arr[0])(i,j,k,1) = (flx_arr[0])(i ,j,k,0) * myhalf * (prim(i,j,k,0) + prim(i-1,j,k,0));
394 
395  (flx_arr[1])(i,j,k,0) = yflux_lo;
396  (flx_arr[1])(i,j,k,1) = (flx_arr[1])(i,j ,k,0) * myhalf * (prim(i,j,k,0) + prim(i,j-1,k,0));
397 
398  if (i == vbx_hi.x) {
399  (flx_arr[0])(i+1,j,k,0) = xflux_hi;
400  (flx_arr[0])(i+1,j,k,1) = (flx_arr[0])(i+1,j,k,0) * myhalf * (prim(i,j,k,0) + prim(i+1,j,k,0));
401  }
402  if (j == vbx_hi.y) {
403  (flx_arr[1])(i,j+1,k,0) = yflux_hi;
404  (flx_arr[1])(i,j+1,k,1) = (flx_arr[1])(i,j+1,k,0) * myhalf * (prim(i,j,k,0) + prim(i,j+1,k,0));
405  }
406  }
407  });
408  } // end profile
409 
410  ParallelFor(tbx, tby,
411  [=] AMREX_GPU_DEVICE (int i, int j, int k)
412  {
413  Real h_zeta_new = Compute_h_zeta_AtIface(i, j, k, dxInv, z_nd_new);
414  cur_xmom(i, j, k) /= h_zeta_new;
415  avg_xmom_arr(i,j,k) += facinv*(cur_xmom(i,j,k) - stg_xmom(i,j,k));
416  },
417  [=] AMREX_GPU_DEVICE (int i, int j, int k)
418  {
419  Real h_zeta_new = Compute_h_zeta_AtJface(i, j, k, dxInv, z_nd_new);
420  cur_ymom(i, j, k) /= h_zeta_new;
421  avg_ymom_arr(i,j,k) += facinv*(cur_ymom(i,j,k) - stg_ymom(i,j,k));
422  });
423 
424  Box bx_shrunk_in_k = bx;
425  int klo = tbz.smallEnd(2);
426  int khi = tbz.bigEnd(2);
427  bx_shrunk_in_k.setSmall(2,klo+1);
428  bx_shrunk_in_k.setBig(2,khi-1);
429 
430  // Note that the notes use "g" to mean the magnitude of gravity, so it is positive
431  // We set grav_gpu[2] to be the vector component which is negative
432  // We define halfg to match the notes (which is why we take the absolute value)
433  Real halfg = std::abs(myhalf * grav_gpu[2]);
434 
435  {
436  BL_PROFILE("fast_loop_on_shrunk_t");
437  //Note we don't act on the bottom or top boundaries of the domain
438  ParallelFor(bx_shrunk_in_k, [=] AMREX_GPU_DEVICE (int i, int j, int k)
439  {
440  Real dJ_old_kface = myhalf * (detJ_old(i,j,k) + detJ_old(i,j,k-1));
441  Real dJ_new_kface = myhalf * (detJ_new(i,j,k) + detJ_new(i,j,k-1));
442  Real dJ_stg_kface = myhalf * (detJ_stg(i,j,k) + detJ_stg(i,j,k-1));
443 
444  Real coeff_P = coeffP_a(i,j,k);
445  Real coeff_Q = coeffQ_a(i,j,k);
446 
447  Real theta_t_lo = myhalf * ( prim(i,j,k-2,PrimTheta_comp) + prim(i,j,k-1,PrimTheta_comp) );
448  Real theta_t_mid = myhalf * ( prim(i,j,k-1,PrimTheta_comp) + prim(i,j,k ,PrimTheta_comp) );
449  Real theta_t_hi = myhalf * ( prim(i,j,k ,PrimTheta_comp) + prim(i,j,k+1,PrimTheta_comp) );
450 
451  // line 2 last two terms (order dtau)
452  Real R0_tmp = coeff_P * cur_cons(i,j,k ,RhoTheta_comp)
453  + coeff_Q * cur_cons(i,j,k-1,RhoTheta_comp)
454  - coeff_P * stg_cons(i,j,k ,RhoTheta_comp) * (dJ_stg_kface/dJ_old_kface)
455  - coeff_Q * stg_cons(i,j,k-1,RhoTheta_comp) * (dJ_stg_kface/dJ_old_kface)
456  - halfg * ( cur_cons(i,j,k,Rho_comp) + cur_cons(i,j,k-1,Rho_comp) )
457  + halfg * ( stg_cons(i,j,k,Rho_comp) + stg_cons(i,j,k-1,Rho_comp) ) * (dJ_stg_kface/dJ_old_kface);
458 
459  // line 3 residuals (order dtau^2) one <-> beta_2
460  Real R1_tmp = - halfg * ( slow_rhs_cons(i,j,k ,Rho_comp) + slow_rhs_cons(i,j,k-1,Rho_comp))
461  + coeff_P * slow_rhs_cons(i,j,k ,RhoTheta_comp) + coeff_Q * slow_rhs_cons(i,j,k-1,RhoTheta_comp);
462 
463  Real Omega_kp1 = omega_arr(i,j,k+1);
464  Real Omega_k = omega_arr(i,j,k );
465  Real Omega_km1 = omega_arr(i,j,k-1);
466 
467  Real detJdiff = (detJ_old(i,j,k) - detJ_old(i,j,k-1)) / (detJ_old(i,j,k)*detJ_old(i,j,k-1));
468 
469  // consolidate lines 4&5 (order dtau^2)
470  R1_tmp += halfg * ( beta_1 * dzi * (Omega_kp1/detJ_old(i,j,k) + detJdiff*Omega_k - Omega_km1/detJ_old(i,j,k-1))
471  + temp_rhs_arr(i,j,k,Rho_comp)/detJ_old(i,j,k) + temp_rhs_arr(i,j,k-1,Rho_comp)/detJ_old(i,j,k-1) );
472 
473  // consolidate lines 6&7 (order dtau^2)
474  R1_tmp += -(
475  coeff_P/detJ_old(i,j,k ) * ( beta_1 * dzi * (Omega_kp1*theta_t_hi - Omega_k*theta_t_mid)
476  +temp_rhs_arr(i,j,k ,RhoTheta_comp) ) +
477  coeff_Q/detJ_old(i,j,k-1) * ( beta_1 * dzi * (Omega_k*theta_t_mid - Omega_km1*theta_t_lo)
478  +temp_rhs_arr(i,j,k-1,RhoTheta_comp) ) );
479 
480  // line 1
481  RHS_a(i,j,k) = prev_zmom(i,j,k) - (dJ_stg_kface/dJ_old_kface) * stg_zmom(i,j,k)
482  + dtau * slow_rhs_rho_w(i,j,k) / dJ_stg_kface
483  + dtau * zmom_src_arr(i,j,k);
484 
485  RHS_a(i,j,k) += dtau * R0_tmp;
486 
487  RHS_a(i,j,k) += dtau * dtau*beta_2*R1_tmp;
488 
489  // We cannot use omega_arr here since that was built with old_rho_u and old_rho_v ...
490  Real UppVpp = (dJ_new_kface/dJ_old_kface) * OmegaFromW(i,j,k,0.,cur_xmom,cur_ymom,mf_ux,mf_vy,z_nd_new,dxInv)
491  -(dJ_stg_kface/dJ_old_kface) * OmegaFromW(i,j,k,0.,stg_xmom,stg_ymom,mf_ux,mf_vy,z_nd_stg,dxInv);
492  RHS_a(i,j,k) += UppVpp;
493  });
494  } // end profile
495 
496  Box b2d = tbz; // Copy constructor
497  b2d.setRange(2,0);
498 
499  auto const lo = lbound(bx);
500  auto const hi = ubound(bx);
501 
502  {
503  BL_PROFILE("substep_b2d_loop_t");
504 
505 #ifdef AMREX_USE_GPU
506  ParallelFor(b2d, [=] AMREX_GPU_DEVICE (int i, int j, int)
507  {
508  // Moving terrain
509  Real rho_on_bdy = myhalf * ( prev_cons(i,j,lo.z) + prev_cons(i,j,lo.z-1) );
510  RHS_a(i,j,lo.z) = rho_on_bdy * zp_t_arr(i,j,lo.z);
511 
512  soln_a(i,j,lo.z) = RHS_a(i,j,lo.z) * inv_coeffB_a(i,j,lo.z);
513 
514  RHS_a(i,j,hi.z+1) = dtau * (slow_rhs_rho_w(i,j,hi.z+1) + zmom_src_arr(i,j,hi.z+1));
515 
516  for (int k = lo.z+1; k <= hi.z+1; k++) {
517  soln_a(i,j,k) = (RHS_a(i,j,k)-coeffA_a(i,j,k)*soln_a(i,j,k-1)) * inv_coeffB_a(i,j,k);
518  }
519 
520  for (int k = hi.z; k >= lo.z; k--) {
521  soln_a(i,j,k) -= ( coeffC_a(i,j,k) * inv_coeffB_a(i,j,k) ) * soln_a(i,j,k+1);
522  }
523 
524  // We assume that Omega == w at the top boundary and that changes in J there are irrelevant
525  cur_zmom(i,j,hi.z+1) = stg_zmom(i,j,hi.z+1) + soln_a(i,j,hi.z+1);
526  });
527 #else
528  for (int j = lo.y; j <= hi.y; ++j) {
529  AMREX_PRAGMA_SIMD
530  for (int i = lo.x; i <= hi.x; ++i) {
531 
532  Real rho_on_bdy = myhalf * ( prev_cons(i,j,lo.z) + prev_cons(i,j,lo.z-1) );
533  RHS_a(i,j,lo.z) = rho_on_bdy * zp_t_arr(i,j,lo.z);
534 
535  soln_a(i,j,lo.z) = RHS_a(i,j,lo.z) * inv_coeffB_a(i,j,lo.z);
536  }
537  }
538 
539  for (int j = lo.y; j <= hi.y; ++j) {
540  AMREX_PRAGMA_SIMD
541  for (int i = lo.x; i <= hi.x; ++i) {
542  RHS_a(i,j,hi.z+1) = dtau * (slow_rhs_rho_w(i,j,hi.z+1) + zmom_src_arr(i,j,hi.z+1));
543  }
544  }
545  for (int k = lo.z+1; k <= hi.z+1; ++k) {
546  for (int j = lo.y; j <= hi.y; ++j) {
547  AMREX_PRAGMA_SIMD
548  for (int i = lo.x; i <= hi.x; ++i) {
549  soln_a(i,j,k) = (RHS_a(i,j,k)-coeffA_a(i,j,k)*soln_a(i,j,k-1)) * inv_coeffB_a(i,j,k);
550  }
551  }
552  }
553  for (int k = hi.z; k >= lo.z; --k) {
554  for (int j = lo.y; j <= hi.y; ++j) {
555  AMREX_PRAGMA_SIMD
556  for (int i = lo.x; i <= hi.x; ++i) {
557  soln_a(i,j,k) -= ( coeffC_a(i,j,k) * inv_coeffB_a(i,j,k) ) * soln_a(i,j,k+1);
558  }
559  }
560  }
561 
562  // We assume that Omega == w at the top boundary and that changes in J there are irrelevant
563  for (int j = lo.y; j <= hi.y; ++j) {
564  AMREX_PRAGMA_SIMD
565  for (int i = lo.x; i <= hi.x; ++i) {
566  cur_zmom(i,j,hi.z+1) = stg_zmom(i,j,hi.z+1) + soln_a(i,j,hi.z+1);
567  }
568  }
569 #endif
570  } // end profile
571 
572  {
573  BL_PROFILE("substep_new_drhow");
574  tbz.setBig(2,hi.z);
575  ParallelFor(tbz, [=] AMREX_GPU_DEVICE (int i, int j, int k)
576  {
577  Real rho_on_face = myhalf * (cur_cons(i,j,k,Rho_comp) + cur_cons(i,j,k-1,Rho_comp));
578 
579  if (k == lo.z) {
580  cur_zmom(i,j,k) = WFromOmega(i,j,k,rho_on_face*(z_t_arr(i,j,k)+zp_t_arr(i,j,k)),
581  cur_xmom,cur_ymom,mf_ux,mf_vy,z_nd_new,dxInv);
582 
583  // We need to set this here because it is used to define zflux_lo below
584  soln_a(i,j,k) = zero;
585 
586  } else {
587 
588  Real UppVpp = WFromOmega(i,j,k,zero,cur_xmom,cur_ymom,mf_ux,mf_vy,z_nd_new,dxInv)
589  - WFromOmega(i,j,k,zero,stg_xmom,stg_ymom,mf_ux,mf_vy,z_nd_stg,dxInv);
590  Real wpp = soln_a(i,j,k) + UppVpp;
591  Real dJ_old_kface = myhalf * (detJ_old(i,j,k) + detJ_old(i,j,k-1));
592  Real dJ_new_kface = myhalf * (detJ_new(i,j,k) + detJ_new(i,j,k-1));
593 
594  cur_zmom(i,j,k) = dJ_old_kface * (stg_zmom(i,j,k) + wpp);
595  cur_zmom(i,j,k) /= dJ_new_kface;
596 
597  soln_a(i,j,k) = OmegaFromW(i,j,k,cur_zmom(i,j,k),cur_xmom,cur_ymom,mf_ux,mf_vy,z_nd_new,dxInv)
598  - OmegaFromW(i,j,k,stg_zmom(i,j,k),stg_xmom,stg_ymom,mf_ux,mf_vy,z_nd_stg,dxInv);
599  soln_a(i,j,k) -= rho_on_face * zp_t_arr(i,j,k);
600  }
601 
602  if (l_rayleigh_impl_for_w && k > 0) {
603  Real damping_coeff = l_damp_coef * dtau * sinesq_stag_d[k];
604  cur_zmom(i,j,k) /= (one + damping_coeff);
605  }
606  });
607  } // end profile
608 
609  // **************************************************************************
610  // Define updates in the RHS of rho and (rho theta)
611  // **************************************************************************
612  {
613  BL_PROFILE("fast_rho_final_update");
614  ParallelFor(bx, [=] AMREX_GPU_DEVICE (int i, int j, int k) noexcept
615  {
616  Real zflux_lo = beta_2 * soln_a(i,j,k ) + beta_1 * omega_arr(i,j,k);
617  Real zflux_hi = beta_2 * soln_a(i,j,k+1) + beta_1 * omega_arr(i,j,k+1);
618 
619  // Note that in the solve we effectively impose new_drho_w(i,j,vbx_hi.z+1)=0
620  // so we don't update avg_zmom at k=vbx_hi.z+1
621  avg_zmom_arr(i,j,k) += facinv*zflux_lo / (mf_mx(i,j,0) * mf_my(i,j,0));
622  if (l_reflux) {
623  (flx_arr[2])(i,j,k,0) = zflux_lo / (mf_mx(i,j,0) * mf_my(i,j,0));
624  }
625 
626  // Note that the factor of (1/J) in the fast source term is canceled
627  // when we multiply old and new by detJ_old and detJ_new , respectively
628  // We have already scaled the slow source term to have the extra factor of dJ
629  Real fast_rhs_rho = -(temp_rhs_arr(i,j,k,0) + ( zflux_hi - zflux_lo ) * dzi);
630  Real fast_rhs_rhotheta = -( temp_rhs_arr(i,j,k,1) + myhalf *
631  ( zflux_hi * (prim(i,j,k) + prim(i,j,k+1))
632  - zflux_lo * (prim(i,j,k) + prim(i,j,k-1)) ) * dzi );
633 
634  cur_cons(i,j,k,0) *= (detJ_old(i,j,k)/detJ_new(i,j,k));
635  cur_cons(i,j,k,1) *= (detJ_old(i,j,k)/detJ_new(i,j,k));
636 
637  cur_cons(i,j,k,0) += dtau * ( slow_rhs_cons(i,j,k,0) + fast_rhs_rho / detJ_new(i,j,k));
638  cur_cons(i,j,k,1) += dtau * ( slow_rhs_cons(i,j,k,1) + fast_rhs_rhotheta / detJ_new(i,j,k));
639 
640  if (l_reflux) {
641  (flx_arr[2])(i,j,k,1) = (flx_arr[2])(i,j,k,0) * myhalf * (prim(i,j,k) + prim(i,j,k-1));
642  }
643 
644  if (k == vbx_hi.z) {
645  avg_zmom_arr(i,j,k+1) += facinv * zflux_hi / (mf_mx(i,j,0) * mf_my(i,j,0));
646  if (l_reflux) {
647  (flx_arr[2])(i,j,k+1,0) = zflux_hi / (mf_mx(i,j,0) * mf_my(i,j,0));
648  (flx_arr[2])(i,j,k+1,1) = (flx_arr[2])(i,j,k+1,0) * myhalf * (prim(i,j,k) + prim(i,j,k+1));
649  }
650  }
651 
652  // add in source terms for cell-centered conserved variables
653  cur_cons(i,j,k,Rho_comp) += dtau * cc_src_arr(i,j,k,Rho_comp);
654  cur_cons(i,j,k,RhoTheta_comp) += dtau * cc_src_arr(i,j,k,RhoTheta_comp);
655  });
656  } // end profile
657 
658  // We only add to the flux registers in the final RK step
659  if (l_reflux) {
660  int strt_comp_reflux = 0;
661  // For now we don't reflux (rho theta) because it seems to create issues at c/f boundaries
662  int num_comp_reflux = 1;
663  if (level < finest_level) {
664  fr_as_crse->CrseAdd(mfi,
665  {{AMREX_D_DECL(&(flux[0]), &(flux[1]), &(flux[2]))}},
666  dx, dtau, strt_comp_reflux, strt_comp_reflux, num_comp_reflux, RunOn::Device);
667  }
668  if (level > 0) {
669  fr_as_fine->FineAdd(mfi,
670  {{AMREX_D_DECL(&(flux[0]), &(flux[1]), &(flux[2]))}},
671  dx, dtau, strt_comp_reflux, strt_comp_reflux, num_comp_reflux, RunOn::Device);
672  }
673 
674  // This is necessary here so we don't go on to the next FArrayBox without
675  // having finished copying the fluxes into the FluxRegisters (since the fluxes
676  // are stored in temporary FArrayBox's)
677  Gpu::streamSynchronize();
678 
679  } // two-way coupling
680 
681  } // mfi
682  } // OMP
683 }
constexpr amrex::Real R_v
Definition: ERF_Constants.H:35
constexpr amrex::Real R_d
Definition: ERF_Constants.H:34
constexpr amrex::Real Gamma
Definition: ERF_Constants.H:54
@ v_y
Definition: ERF_DataStruct.H:30
@ m_y
Definition: ERF_DataStruct.H:30
@ u_x
Definition: ERF_DataStruct.H:29
@ m_x
Definition: ERF_DataStruct.H:29
#define PrimQ1_comp
Definition: ERF_IndexDefines.H:61
#define Rho_comp
Definition: ERF_IndexDefines.H:39
#define RhoTheta_comp
Definition: ERF_IndexDefines.H:40
#define PrimTheta_comp
Definition: ERF_IndexDefines.H:58
amrex::GpuArray< Real, AMREX_SPACEDIM > dxInv
Definition: ERF_InitCustomPertVels_ParticleTests.H:17
const int klo
Definition: ERF_InitCustomPert_ABL.H:75
const Real dx
Definition: ERF_InitCustomPert_ABL.H:44
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);})
constexpr amrex::Real one
Definition: ERF_NumericalConstants.H:30
constexpr amrex::Real fourth
Definition: ERF_NumericalConstants.H:35
constexpr amrex::Real zero
Definition: ERF_NumericalConstants.H:29
constexpr amrex::Real myhalf
Definition: ERF_NumericalConstants.H:34
amrex::Real Real
Definition: ERF_ShocInterface.H:19
AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real OmegaFromW(int &i, int &j, int &k, amrex::Real w, const amrex::Array4< const amrex::Real > &u_arr, const amrex::Array4< const amrex::Real > &v_arr, const amrex::Array4< const amrex::Real > &mf_u, const amrex::Array4< const amrex::Real > &mf_v, const amrex::Array4< const amrex::Real > &z_nd, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &dxInv)
Definition: ERF_TerrainMetrics.H:791
AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real Compute_h_xi_AtIface(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:292
AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real Compute_h_zeta_AtIface(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:269
AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real Compute_h_zeta_AtJface(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:339
AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real Compute_h_eta_AtJface(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:385
AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real WFromOmega(int &i, int &j, int &k, amrex::Real omega, const amrex::Array4< const amrex::Real > &u_arr, const amrex::Array4< const amrex::Real > &v_arr, const amrex::Array4< const amrex::Real > &mf_u, const amrex::Array4< const amrex::Real > &mf_v, const amrex::Array4< const amrex::Real > &z_nd, const amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > &dxInv)
Definition: ERF_TerrainMetrics.H:856
@ gpy
Definition: ERF_IndexDefines.H:225
@ gpx
Definition: ERF_IndexDefines.H:224
@ ymom
Definition: ERF_IndexDefines.H:234
@ cons
Definition: ERF_IndexDefines.H:232
@ zmom
Definition: ERF_IndexDefines.H:235
@ xmom
Definition: ERF_IndexDefines.H:233
@ qt
Definition: ERF_Kessler.H:30
@ qv
Definition: ERF_Kessler.H:31
@ q
Definition: ERF_WSM6.H:273
Here is the call graph for this function: