15 std::unique_ptr<amrex::MultiFab>& ,
16 std::unique_ptr<amrex::MultiFab>& z_phys_cc,
17 amrex::Geometry
const& geom,
18 const amrex::Vector<amrex::Real>& stretched_dz_h,
19 bool is_constant_dz,
bool is_stretched_dz)
override
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];
120 std::unique_ptr<amrex::MultiFab>& ,
121 amrex::Geometry
const& geom)
override
124 const int khi = geom.Domain().bigEnd()[2];
127 amrex::Vector<amrex::Real>
h_r(
khi+2);
128 amrex::Vector<amrex::Real>
h_p(
khi+2);
129 amrex::Vector<amrex::Real>
h_t(
khi+2);
130 amrex::Vector<amrex::Real>
h_q_v(
khi+2);
132 amrex::ParmParse
pp(
"prob");
134 pp.query(
"qt_init",
q_t);
144 pp.query(
"height", z_tr_1);
145 pp.query(
"z_tr", z_tr_2);
150 bool T_from_theta =
false;
151 pp.query(
"T_from_theta_in_moist_init", T_from_theta);
160 T_from_theta, z_tr_1, z_tr_2,
163 amrex::Gpu::DeviceVector<amrex::Real>
d_r(
khi+2);
164 amrex::Gpu::copy(amrex::Gpu::hostToDevice,
h_r.begin(),
h_r.end(),
d_r.begin());
168 #pragma omp parallel if (amrex::Gpu::notInLaunchRegion())
170 for ( amrex::MFIter mfi(rho_hse,amrex::TilingIfNotGPU()); mfi.isValid(); ++mfi)
172 const amrex::Box& bx = mfi.growntilebox(1);
173 const amrex::Array4<amrex::Real> rho_hse_arr = rho_hse[mfi].array();
176 int kk = std::max(k,0);
177 rho_hse_arr(i,j,k) = r[kk];
186 for ( amrex::MFIter mfi(rho_hse, amrex::TilingIfNotGPU()); mfi.isValid(); ++mfi )
188 amrex::Array4<amrex::Real> rho_hse_arr = rho_hse.array(mfi);
189 const amrex::Box& gbx = mfi.growntilebox(1);
190 ParallelFor(gbx, [=] AMREX_GPU_DEVICE (
int i,
int j,
int k) noexcept
192 rho_hse_arr(i,j,k) =
rho_0;
198 amrex::MultiFab& pi_hse, amrex::MultiFab& th_hse,
199 amrex::MultiFab& qv_hse,
amrex::Real l_rdOcp)
override
204 amrex::ParmParse
pp_prob(
"prob");
207 rho_hse.setVal(
rho_0);
225 amrex::MultiFab& pi_hse, amrex::MultiFab& th_hse,
227 std::unique_ptr<amrex::MultiFab>& z_phys_cc)
override
232 amrex::ParmParse
pp_prob(
"prob");
235 rho_hse.setVal(
rho_0);
237 for ( amrex::MFIter mfi(th_hse, amrex::TilingIfNotGPU()); mfi.isValid(); ++mfi )
239 amrex::Array4<amrex::Real> th_hse_arr = th_hse.array(mfi);
240 amrex::Array4<amrex::Real> p_hse_arr = p_hse.array(mfi);
241 amrex::Array4<amrex::Real> pi_hse_arr = pi_hse.array(mfi);
242 amrex::Array4<amrex::Real const> z_arr = z_phys_cc->array(mfi);
243 const amrex::Box& gbx = mfi.growntilebox(1);
244 ParallelFor(gbx, [=] AMREX_GPU_DEVICE (
int i,
int j,
int k) noexcept
246 th_hse_arr(i,j,k) =
T_0 + dtheta_dz * (z_arr(i,j,k)- z_arr(i,j,0));
constexpr amrex::Real one
Definition: ERF_Constants.H:7
constexpr amrex::Real zero
Definition: ERF_Constants.H:6
constexpr amrex::Real p_0
Definition: ERF_Constants.H:37
constexpr amrex::Real R_d
Definition: ERF_Constants.H:29
AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE amrex::Real getExnergivenRTh(const amrex::Real rhotheta, const amrex::Real rdOcp, const amrex::Real qv=amrex::Real(0))
Definition: ERF_EOS.H:156
AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE amrex::Real getPgivenRTh(const amrex::Real rhotheta, const amrex::Real qv=amrex::Real(0))
Definition: ERF_EOS.H:81
Real rho_0
Definition: ERF_InitCustomPert_ABL.H:4
Real T_0
Definition: ERF_InitCustomPert_ABL.H:5
const int khi
Definition: ERF_InitCustomPert_Bubble.H:21
ParmParse pp_prob("prob")
Real eq_pot_temp
Definition: ERF_InitCustomPert_MultiSpeciesBubble.H:23
bool use_empirical
Definition: ERF_InitCustomPert_MultiSpeciesBubble.H:25
Vector< Real > h_t(khi+2)
Real T_tr
Definition: ERF_InitCustomPert_SquallLine.H:43
Real q_t
Definition: ERF_InitCustomPert_SquallLine.H:24
Vector< Real > h_q_v(khi+2)
Gpu::DeviceVector< Real > d_p(khi+2)
Vector< Real > h_r(khi+2)
Real theta_tr
Definition: ERF_InitCustomPert_SquallLine.H:47
Vector< Real > h_p(khi+2)
Gpu::DeviceVector< Real > d_r(khi+2)
Real theta_0
Definition: ERF_InitCustomPert_SquallLine.H:46
void erf_init_const_dens_hse(amrex::MultiFab &rho_hse) override
Definition: ERF_InitDensityHSE.H:183
void erf_init_const_dens_and_linear_th_hse(amrex::MultiFab &rho_hse, amrex::MultiFab &p_hse, amrex::MultiFab &pi_hse, amrex::MultiFab &th_hse, amrex::MultiFab &qv_hse, amrex::Real l_rdOcp, std::unique_ptr< amrex::MultiFab > &z_phys_cc) override
Definition: ERF_InitDensityHSE.H:224
void erf_init_dens_hse_moist(amrex::MultiFab &rho_hse, std::unique_ptr< amrex::MultiFab > &, amrex::Geometry const &geom) override
Definition: ERF_InitDensityHSE.H:119
void erf_init_const_dens_and_th_hse(amrex::MultiFab &rho_hse, amrex::MultiFab &p_hse, amrex::MultiFab &pi_hse, amrex::MultiFab &th_hse, amrex::MultiFab &qv_hse, amrex::Real l_rdOcp) override
Definition: ERF_InitDensityHSE.H:197
void erf_init_dens_hse_dry(amrex::MultiFab &rho_hse, std::unique_ptr< amrex::MultiFab > &, std::unique_ptr< amrex::MultiFab > &z_phys_cc, amrex::Geometry const &geom, const amrex::Vector< amrex::Real > &stretched_dz_h, bool is_constant_dz, bool is_stretched_dz) override
Definition: ERF_InitDensityHSE.H:14
ParallelFor(grown_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::Real Real
Definition: ERF_ShocInterface.H:19
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_FORCE_INLINE AMREX_GPU_HOST_DEVICE void init_isentropic_hse_no_terrain(Real *theta, Real *r, Real *p, Real *q_v, const Real &dz, const int &khi, const Real q_t, const Real eq_pot_temp, const bool use_empirical, const bool T_from_theta=false, const Real z_tr_1=-one, const Real z_tr_2=-one, const Real theta_0=amrex::Real(0), const Real theta_tr=amrex::Real(0), const Real T_tr=amrex::Real(0))
Definition: ERF_HSEUtils.H:626
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
real(c_double), parameter p0
Definition: ERF_module_model_constants.F90:40