25 if (!is_constant_dz && !is_stretched_dz) {
27 const int domlo_z = geom.Domain().smallEnd(2);
28 const int domhi_z = geom.Domain().bigEnd(2);
29 if (domhi_z > 255) amrex::Abort(
"1D Arrays are hard-wired to only 256 high");
31 for ( amrex::MFIter mfi(rho_hse,
TileNoZ()); mfi.isValid(); ++mfi )
33 amrex::Array4<amrex::Real >
rho_arr = rho_hse.array(mfi);
34 amrex::Array4<amrex::Real const> z_cc_arr = z_phys_cc->const_array(mfi);
37 const amrex::Box& tbz = mfi.nodaltilebox(2);
39 b2d.grow(0,1); b2d.grow(1,1);
42 const int ilo = tbz.smallEnd(0);
43 const int jlo = tbz.smallEnd(1);
44 const int klo = tbz.smallEnd(2);
45 const int khi = tbz.bigEnd(2)-1;
49 rho_local_sfc = rho_sfc;
51 rho_local_sfc =
rho_arr(ilo,jlo,klo-1);
56 amrex::Array1D<amrex::Real,0,255> r;
57 amrex::Array1D<amrex::Real,0,255>
p;
60 for (
int k = klo; k <=
khi; k++) {
80 const int klo = geom.Domain().smallEnd(2);
81 const int khi = geom.Domain().bigEnd(2);
84 amrex::Vector<amrex::Real>
h_r(
khi+2);
85 amrex::Vector<amrex::Real>
h_p(
khi+2);
87 amrex::Gpu::DeviceVector<amrex::Real>
d_r(
khi+2);
88 amrex::Gpu::DeviceVector<amrex::Real>
d_p(
khi+2);
97 amrex::Gpu::copyAsync(amrex::Gpu::hostToDevice,
h_r.begin(),
h_r.end(),
d_r.begin());
98 amrex::Gpu::copyAsync(amrex::Gpu::hostToDevice,
h_p.begin(),
h_p.end(),
d_p.begin());
103 #pragma omp parallel if (amrex::Gpu::notInLaunchRegion())
105 for ( amrex::MFIter mfi(rho_hse, amrex::TilingIfNotGPU()); mfi.isValid(); ++mfi )
107 const amrex::Box& bx = mfi.growntilebox(1);
108 const amrex::Array4<amrex::Real> rho_hse_arr = rho_hse[mfi].array();
111 int kk = std::max(k,0);
112 rho_hse_arr(i,j,k) = r[kk];
constexpr amrex::Real p_0
Definition: ERF_Constants.H:37
constexpr amrex::Real R_d
Definition: ERF_Constants.H:29
const int khi
Definition: ERF_InitCustomPert_Bubble.H:21
Gpu::DeviceVector< Real > d_p(khi+2)
Vector< Real > h_r(khi+2)
Vector< Real > h_p(khi+2)
Gpu::DeviceVector< Real > d_r(khi+2)
AMREX_FORCE_INLINE amrex::IntVect TileNoZ()
Definition: ERF_TileNoZ.H:11
auto rho_arr
Definition: ERF_UpdateWSubsidence_SineMassFlux.H:3
AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE void init_isentropic_hse_stretched_dz(const amrex::Real &r_sfc, const amrex::Real &theta, amrex::Real *r, amrex::Real *p, const amrex::Real *stretched_dz, const int klo, const int khi)
Definition: ERF_HSEUtils.H:206
AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE void init_isentropic_hse_constant_dz(const amrex::Real &r_sfc, const amrex::Real &theta, amrex::Real *r, amrex::Real *p, const amrex::Real &dz, const int klo, const int khi)
Definition: ERF_HSEUtils.H:96
AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE void init_isentropic_hse_terrain(int i, int j, const amrex::Real &r_sfc, const amrex::Real &theta, amrex::Real *r, amrex::Real *p, const amrex::Array4< amrex::Real const > z_cc, const int &klo, const int &khi)
Definition: ERF_HSEUtils.H:318
@ p
Definition: ERF_WSM6.H:176
@ dz
Definition: ERF_AdvanceWSM6.cpp:104