ERF
Energy Research and Forecasting: An Atmospheric Modeling Code
ERFPCParticleToMesh.H
Go to the documentation of this file.
1 /*! \file ERFPCParticleToMesh.H
2  * \brief Template implementation of ERFPC::ERFPCParticleToMesh
3  *
4  * Separated from ERFPC.H to keep the header lightweight.
5  * Include this in .cpp files that call ERFPCParticleToMesh().
6  */
7 
8 #ifndef ERFPC_PARTICLE_TO_MESH_H_
9 #define ERFPC_PARTICLE_TO_MESH_H_
10 
11 #include <ERFPC.H>
12 #include <ERF_TerrainConversion.H>
13 
14 template<typename ValueFunc>
15 void ERFPC::ERFPCParticleToMesh(amrex::MultiFab& a_mf,
16  const amrex::MultiFab& a_z_phys_nd,
17  int a_lev, int a_comp,
18  ValueFunc&& value_func) const
19 {
20  using namespace amrex;
21 
22  AMREX_ASSERT(OK());
23  AMREX_ASSERT(numParticlesOutOfRange(*this, 0) == 0);
24 
25  // CIC deposition writes one cell outside the particle's own cell
26  AMREX_ALWAYS_ASSERT(a_mf.nGrowVect().allGE(amrex::IntVect(1)));
27 
28  const auto& geom = Geom(a_lev);
29  const auto plo = geom.ProbLoArray();
30  const auto dxi = geom.InvCellSizeArray();
31  const Real dx = geom.CellSize(0);
32  const Real dy = geom.CellSize(1);
33  const Box domain = geom.Domain();
34  const int k_max = domain.bigEnd(AMREX_SPACEDIM-1);
35 
36  a_mf.setVal(0.0);
37 
38 #ifdef AMREX_USE_OMP
39 #pragma omp parallel if (Gpu::notInLaunchRegion())
40 #endif
41  for (ParConstIterType pti(*this, a_lev); pti.isValid(); ++pti)
42  {
43  const int grid = pti.index();
44  const auto& ptile = ParticlesAt(a_lev, pti);
45  const auto& aos = ptile.GetArrayOfStructs();
46  const int np = aos.numParticles();
47  if (np == 0) { continue; }
48 
49  auto rho = a_mf[grid].array();
50  auto zheight = a_z_phys_nd[grid].array();
51 
52  const auto ptd = ptile.getConstParticleTileData();
53 
54  ParallelFor(np, [=] AMREX_GPU_DEVICE (int i)
55  {
56  const auto& p = ptd.m_aos[i];
57  if (p.id() <= 0) { return; }
58 
59  const Real pval = static_cast<Real>(value_func(ptd, i));
60 
61  const Real lx = static_cast<Real>((p.pos(0) - plo[0]) * dxi[0]) + Real(0.5);
62  const int ix = static_cast<int>(Math::floor(lx)) - 1;
63  const Real wx1 = lx - static_cast<Real>(ix + 1);
64  const Real wx0 = Real(1.0) - wx1;
65 
66  const Real ly = static_cast<Real>((p.pos(1) - plo[1]) * dxi[1]) + Real(0.5);
67  const int iy = static_cast<int>(Math::floor(ly)) - 1;
68  const Real wy1 = ly - static_cast<Real>(iy + 1);
69  const Real wy0 = Real(1.0) - wy1;
70 
71  const int kz = static_cast<int>(amrex::Math::floor((p.pos(AMREX_SPACEDIM-1) - plo[AMREX_SPACEDIM-1])
72  * dxi[AMREX_SPACEDIM-1]));
73  const int ix_p = static_cast<int>(Math::floor((p.pos(0) - plo[0]) * dxi[0]));
74  const int iy_p = static_cast<int>(Math::floor((p.pos(1) - plo[1]) * dxi[1]));
75  const Real fx = static_cast<Real>((p.pos(0) - plo[0]) * dxi[0]) - static_cast<Real>(ix_p);
76  const Real fy = static_cast<Real>((p.pos(1) - plo[1]) * dxi[1]) - static_cast<Real>(iy_p);
77 
78  auto zface = [=] AMREX_GPU_DEVICE (int k_face) -> Real {
79  return zheight(ix_p , iy_p , k_face) * (Real(1.0)-fx) * (Real(1.0)-fy)
80  + zheight(ix_p+1, iy_p , k_face) * fx * (Real(1.0)-fy)
81  + zheight(ix_p , iy_p+1, k_face) * (Real(1.0)-fx) * fy
82  + zheight(ix_p+1, iy_p+1, k_face) * fx * fy;
83  };
84 
85  // Effective k bounds for safe zface access: must respect both the
86  // geometry domain (k_max) and the local fab's z extent. With AMR
87  // partial-z fabs (especially with many small boxes from large rank
88  // counts), a particle at the top/bottom of its fab can have kz
89  // such that kz+2 / kz-1 read outside the fab. Use the fallback
90  // (one-sided) span formula in those cases.
91  const int kz_hi_safe = amrex::min(k_max, zheight.end[2] - 2);
92  const int kz_lo_safe = amrex::max(0, zheight.begin[2] + 1);
93 
94  const Real z_lo_k = zface(kz);
95  const Real z_hi_k = zface(kz + 1);
96  const Real z_ctr_k = Real(0.5) * (z_lo_k + z_hi_k);
97 
98  // Particle pos(2) is computational zeta; convert to physical z so
99  // the cell-center comparison and weight span are in the same units
100  // as zface() (which is built from the height array).
101  const Real p_z = static_cast<Real>(ERF::ParticlePos::z_from_zeta(
102  p.pos(0), p.pos(1), p.pos(AMREX_SPACEDIM-1),
103  plo, dxi, zheight));
104 
105  int kz_lo, kz_hi;
106  Real wz_lo, wz_hi;
107  if (p_z >= z_ctr_k) {
108  kz_lo = kz;
109  kz_hi = kz + 1;
110  Real span;
111  if (kz < kz_hi_safe) {
112  const Real z_hi2 = zface(kz + 2);
113  const Real z_ctr_hi = Real(0.5) * (z_hi_k + z_hi2);
114  span = z_ctr_hi - z_ctr_k;
115  } else {
116  span = z_hi_k - z_lo_k;
117  }
118  wz_hi = (p_z - z_ctr_k) / span;
119  wz_lo = Real(1.0) - wz_hi;
120  } else {
121  kz_hi = kz;
122  kz_lo = kz - 1;
123  Real span;
124  if (kz > kz_lo_safe) {
125  const Real z_lo2 = zface(kz - 1);
126  const Real z_ctr_lo = Real(0.5) * (z_lo2 + z_lo_k);
127  span = z_ctr_k - z_ctr_lo;
128  } else {
129  span = z_hi_k - z_lo_k;
130  }
131  wz_lo = (z_ctr_k - p_z) / span;
132  wz_hi = Real(1.0) - wz_lo;
133  }
134 
135  // Per-corner node-averaged cell thickness for volume normalization.
136  auto dz_cell = [=] AMREX_GPU_DEVICE (int ic, int jc, int kc) -> Real {
137  const Real dz = Real(0.25) * (
138  zheight(ic , jc , kc+1) - zheight(ic , jc , kc)
139  + zheight(ic+1, jc , kc+1) - zheight(ic+1, jc , kc)
140  + zheight(ic , jc+1, kc+1) - zheight(ic , jc+1, kc)
141  + zheight(ic+1, jc+1, kc+1) - zheight(ic+1, jc+1, kc) );
142  return dz;
143  };
144 
145  const Real inv_dxdy = Real(1.0) / (dx * dy);
146 
147  auto deposit = [=] AMREX_GPU_DEVICE (int ic, int jc, int kc, Real w_horiz, Real w_z)
148  {
149  // Clamp kc only for dz lookup; still write to ghost rho cell.
150  const int kc_dz = amrex::max(0, amrex::min(k_max, kc));
151  const Real dz = dz_cell(ic, jc, kc_dz);
152  const Real contrib = pval * w_horiz * w_z * inv_dxdy / dz;
153  Gpu::Atomic::AddNoRet(&rho(ic, jc, kc, a_comp), contrib);
154  };
155 
156  deposit(ix , iy , kz_lo, wx0*wy0, wz_lo);
157  deposit(ix+1, iy , kz_lo, wx1*wy0, wz_lo);
158  deposit(ix , iy+1, kz_lo, wx0*wy1, wz_lo);
159  deposit(ix+1, iy+1, kz_lo, wx1*wy1, wz_lo);
160  deposit(ix , iy , kz_hi, wx0*wy0, wz_hi);
161  deposit(ix+1, iy , kz_hi, wx1*wy0, wz_hi);
162  deposit(ix , iy+1, kz_hi, wx0*wy1, wz_hi);
163  deposit(ix+1, iy+1, kz_hi, wx1*wy1, wz_hi);
164  });
165  }
166 
167  a_mf.SumBoundary(geom.periodicity());
168 }
169 
170 #endif
@ zface
Definition: ERF_EBStruct.H:29
const Real dy
Definition: ERF_InitCustomPert_ABL.H:24
const Real dx
Definition: ERF_InitCustomPert_ABL.H:23
AMREX_ALWAYS_ASSERT(bx.length()[2]==khi+1)
rho
Definition: ERF_InitCustomPert_Bubble.H:107
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);})
amrex::Real Real
Definition: ERF_ShocInterface.H:19
AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE amrex::Real z_from_zeta(amrex::Real x, amrex::Real y, amrex::Real zeta, amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > const &plo, amrex::GpuArray< amrex::Real, AMREX_SPACEDIM > const &dxi, amrex::Array4< amrex::Real const > const &height_arr) noexcept
Definition: ERF_TerrainConversion.H:51
@ p
Definition: ERF_WSM6.H:191
@ dz
Definition: ERF_AdvanceWSM6.cpp:104
Definition: ERF_ConsoleIO.cpp:15