14 for (MFIter mfi(mf_cons, TilingIfNotGPU()); mfi.isValid(); ++mfi)
16 const Box &bx = mfi.tilebox();
19 Array4< Real>
const& state = mf_cons.array(mfi);
20 Array4< Real>
const& x_vel = mf_xvel.array(mfi);
21 Array4< Real>
const& y_vel = mf_yvel.array(mfi);
23 Array4<const Real>
const& z_r = remora.vec_z_r[lev]->const_array(mfi);
25 Real
S0 = m_solverChoice.S0;
26 Real
T0 = m_solverChoice.T0;
27 ParallelFor(bx, [=] AMREX_GPU_DEVICE(
int i,
int j,
int k)
noexcept
35 const Real
z = z_r(i,j,k);
49 const Box& xbx = surroundingNodes(bx,0);
51 ParallelFor(xbx, [=] AMREX_GPU_DEVICE(
int i,
int j,
int k)
noexcept
53 const Real
z = -z_r(i,j,k);
60 const Box& ybx = surroundingNodes(bx,1);
63 ParallelFor(ybx, [=] AMREX_GPU_DEVICE(
int i,
int j,
int k)
noexcept
65 y_vel(i, j, k) = 0.0_rt;
ParmParse pp_prob("remora.prob")