#include <ERF_EBIFTerrain.H>
|
| TerrainIF (amrex::FArrayBox const &a_z_terrain, amrex::Geometry const &a_geom, amrex::Gpu::DeviceVector< amrex::Real > &a_dz_stretched) |
|
AMREX_GPU_HOST_DEVICE amrex::Real | operator() (AMREX_D_DECL(amrex::Real x, amrex::Real y, amrex::Real z)) const noexcept |
|
AMREX_GPU_HOST_DEVICE amrex::Real | operator() (const amrex::RealArray &p) const noexcept |
|
◆ TerrainIF()
TerrainIF::TerrainIF |
( |
amrex::FArrayBox const & |
a_z_terrain, |
|
|
amrex::Geometry const & |
a_geom, |
|
|
amrex::Gpu::DeviceVector< amrex::Real > & |
a_dz_stretched |
|
) |
| |
|
inline |
19 :
terr_arr(a_z_terrain.const_array()),
20 dz_s(a_dz_stretched.data()),
21 dx(a_geom.CellSize(0)),
22 dy(a_geom.CellSize(1)),
23 dz(a_geom.CellSize(2)),
amrex::Real prob_lo_x
Definition: ERF_EBIFTerrain.H:78
amrex::Real dy
Definition: ERF_EBIFTerrain.H:77
amrex::Array4< amrex::Real const > terr_arr
Definition: ERF_EBIFTerrain.H:75
amrex::Real const * dz_s
Definition: ERF_EBIFTerrain.H:76
amrex::Real prob_lo_y
Definition: ERF_EBIFTerrain.H:78
amrex::Real dx
Definition: ERF_EBIFTerrain.H:77
amrex::Real prob_lo_z
Definition: ERF_EBIFTerrain.H:78
amrex::Real dz
Definition: ERF_EBIFTerrain.H:77
◆ operator()() [1/2]
AMREX_GPU_HOST_DEVICE amrex::Real TerrainIF::operator() |
( |
AMREX_D_DECL(amrex::Real x, amrex::Real y, amrex::Real z) |
| ) |
const |
|
inlinenoexcept |
33 const int i1 =
static_cast<int>(std::floor((
x-
prob_lo_x) /
dx));
34 const int j1 =
static_cast<int>(std::floor((
y-
prob_lo_y) /
dy));
35 const int k1 =
static_cast<int>(std::floor((
z-
prob_lo_z) /
dz));
47 amrex::Real remainder_z = (
z - z1)/
dz;
51 for (
int kk = 0; kk < k1; ++kk) {
52 z_stretched +=
dz_s[kk];
54 z_stretched += remainder_z *
dz_s[k1];
57 amrex::Real denom = (x2-x1)*(y2-y1);
58 amrex::Real w_11 = (x2-
x)*(y2-
y)/denom;
59 amrex::Real w_12 = (x2-
x)*(
y-y1)/denom;
60 amrex::Real w_21 = (
x-x1)*(y2-
y)/denom;
61 amrex::Real w_22 = (
x-x1)*(
y-y1)/denom;
65 return -(z_stretched - terr_z);
Referenced by operator()().
◆ operator()() [2/2]
AMREX_GPU_HOST_DEVICE amrex::Real TerrainIF::operator() |
( |
const amrex::RealArray & |
p | ) |
const |
|
inlinenoexcept |
71 return this->
operator() (AMREX_D_DECL(p[0], p[1], p[2]));
AMREX_GPU_HOST_DEVICE amrex::Real operator()(AMREX_D_DECL(amrex::Real x, amrex::Real y, amrex::Real z)) const noexcept
Definition: ERF_EBIFTerrain.H:30
◆ dx
amrex::Real TerrainIF::dx |
|
protected |
◆ dy
amrex::Real TerrainIF::dy |
|
protected |
◆ dz
amrex::Real TerrainIF::dz |
|
protected |
◆ dz_s
amrex::Real const* TerrainIF::dz_s |
|
protected |
◆ prob_lo_x
amrex::Real TerrainIF::prob_lo_x |
|
protected |
◆ prob_lo_y
amrex::Real TerrainIF::prob_lo_y |
|
protected |
◆ prob_lo_z
amrex::Real TerrainIF::prob_lo_z |
|
protected |
◆ terr_arr
amrex::Array4<amrex::Real const> TerrainIF::terr_arr |
|
protected |
The documentation for this class was generated from the following file: