chombo-discharge
Loading...
Searching...
No Matches
CD_TracerParticleSolverImplem.H
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2021-2026 SINTEF Energy Research
3 *
4 * SPDX-License-Identifier: GPL-3.0-or-later
5 */
6
13#ifndef CD_TRACERPARTICLESOLVERIMPLEM_H
14#define CD_TRACERPARTICLESOLVERIMPLEM_H
15
16// Chombo includes
17#include <ParmParse.H>
18
19// Our includes
21#include <CD_DischargeIO.H>
22#include <CD_ParallelOps.H>
23#include <CD_NamespaceHeader.H>
24
25template <typename P>
27{
28 CH_TIME("TracerParticleSolver::TracerParticleSolver()");
29
30 // Default settings
31 m_verbosity = -1;
32 m_name = "TracerParticleSolver";
33 m_className = "TracerParticleSolver";
34 m_realm = Realm::primal;
35 m_phase = phase::gas;
36 m_plotVelocity = true;
37 m_plotWeight = true;
38 m_volumeScale = false;
39 m_deposition = DepositionType::CIC;
40 m_interpolation = DepositionType::CIC;
41 m_coarseFineDeposition = CoarseFineDeposition::Transition;
42}
43
44template <typename P>
45inline TracerParticleSolver<P>::TracerParticleSolver(const RefCountedPtr<AmrMesh>& a_amr,
46 const RefCountedPtr<ComputationalGeometry>& a_compGeom)
48{
49 CH_TIME("TracerParticleSolver::TracerParticleSolver(RefCountedPtr<AmrMesh>, RefCountedPtr<ComputationalGeometry>)");
50
51 m_amr = a_amr;
52 m_computationalGeometry = a_compGeom;
53}
54
55template <typename P>
57{
58 CH_TIME("TracerParticleSolver::~TracerParticleSolver()");
59}
60
61template <typename P>
62inline void
64{
65 CH_TIME("TracerParticleSolver::parseOptions()");
66 if (m_verbosity > 5) {
67 pout() << m_name + "::parseOptions()" << endl;
68 }
69
70 this->parseDeposition();
71 this->parsePlotVariables();
72 this->parseVerbosity();
73}
74
75template <typename P>
76inline void
78{
79 CH_TIME("TracerParticleSolver::parseRuntimeOptions()");
80 if (m_verbosity > 5) {
81 pout() << m_name + "::parseRuntimeOptions()" << endl;
82 }
83
84 this->parseDeposition();
85 this->parsePlotVariables();
86 this->parseVerbosity();
87}
88
89template <typename P>
90inline void
92{
93 CH_TIME("TracerParticleSolver::parseDeposition()");
94 if (m_verbosity > 5) {
95 pout() << m_name + "::parseDeposition()" << endl;
96 }
97
98 ParmParse pp(m_className.c_str());
99
100 std::string str;
101
102 // Deposition for particle-mesh operations
103 pp.get("deposition", str);
104 if (str == "ngp") {
105 m_deposition = DepositionType::NGP;
106 }
107 else if (str == "cic") {
108 m_deposition = DepositionType::CIC;
109 }
110 else {
111 MayDay::Error("TracerParticleSolver::parseDeposition - unknown deposition method requested.");
112 }
113
114 pp.get("deposition_cf", str);
115 if (str == "interp") {
116 m_coarseFineDeposition = CoarseFineDeposition::Interp;
117 }
118 else if (str == "halo") {
119 m_coarseFineDeposition = CoarseFineDeposition::Halo;
120 }
121 else if (str == "halo_ngp") {
122 m_coarseFineDeposition = CoarseFineDeposition::HaloNGP;
123 }
124 else if (str == "transition") {
125 m_coarseFineDeposition = CoarseFineDeposition::Transition;
126 }
127 else {
128 MayDay::Error("TracerParticleSolver::parseDeposition - unknown coarse-fine deposition method requested.");
129 }
130
131 // Interpolation type particle-mesh operations
132 pp.get("interpolation", str);
133 if (str == "ngp") {
134 m_interpolation = DepositionType::NGP;
135 }
136 else if (str == "cic") {
137 m_interpolation = DepositionType::CIC;
138 }
139 else {
140 MayDay::Error("TracerParticleSolver::parseDeposition - unknown interpolation method requested.");
141 }
142
143 pp.get("volume_scale", m_volumeScale);
144}
145
146template <typename P>
147inline void
149{
150 CH_TIME("TracerParticleSolver::parsePlotVariables()");
151 if (m_verbosity > 5) {
152 pout() << m_name + "::parsePlotVariables()" << endl;
153 }
154
155 ParmParse pp(m_className.c_str());
156
157 pp.get("plot_weight", m_plotWeight);
158 pp.get("plot_velocity", m_plotVelocity);
159}
160
161template <typename P>
162inline void
164{
165 CH_TIME("TracerParticleSolver::parseVerbosity()");
166 if (m_verbosity > 5) {
167 pout() << m_name + "::parseVerbosity()" << endl;
168 }
169
170 ParmParse pp(m_className.c_str());
171
172 pp.get("verbosity", m_verbosity);
173}
174
175template <typename P>
176inline void
178{
179 CH_TIME("TracerParticleSolver::registerOperators()");
180 if (m_verbosity > 5) {
181 pout() << m_name + "::registerOperators()" << endl;
182 }
183
184 if (m_amr.isNull()) {
185 MayDay::Abort("TracerParticleSolver::registerOperators - need to set AmrMesh!");
186 }
187 else {
188 m_amr->registerOperator(s_particle_mesh, m_realm, m_phase);
189 m_amr->registerOperator(s_eb_coar_ave, m_realm, m_phase);
190 }
191}
192
193template <typename P>
194inline void
196{
197 CH_TIME("TracerParticleSolver::allocate()");
198 if (m_verbosity > 5) {
199 pout() << m_name + "::allocate()" << endl;
200 }
201
202 // Allocate data for storing the velocity field on the mesh, and storage for the particles.
203 m_amr->allocate(m_particles, m_realm);
204 m_amr->allocate(m_velocityField, m_realm, m_phase, SpaceDim);
205}
206
207template <typename P>
208inline void
209TracerParticleSolver<P>::setName(const std::string& a_name) noexcept
210{
211 CH_TIME("TracerParticleSolver::setName(std::string)");
212 if (m_verbosity > 5) {
213 pout() << m_name + "::setName(std::string)" << endl;
214 }
215
216 m_name = a_name;
217}
218
219template <typename P>
220inline void
221TracerParticleSolver<P>::setVolumeScale(const bool a_scale) noexcept
222{
223 CH_TIME("TracerParticleSolver::setVolumeScale(bool)");
224 if (m_verbosity > 5) {
225 pout() << m_name + "::setVolumeScale(bool)" << endl;
226 }
227
228 m_volumeScale = a_scale;
229}
230
231template <typename P>
232inline void
233TracerParticleSolver<P>::setRealm(const std::string& a_realm)
234{
235 CH_TIME("TracerParticleSolver::setRealm(std::string)");
236 if (m_verbosity > 5) {
237 pout() << m_name + "::setRealm(std::string)" << endl;
238 }
239
240 m_realm = a_realm;
241}
242
243template <typename P>
244inline void
246{
247 CH_TIME("TracerParticleSolver::setPhase(phase::which_phase)");
248 if (m_verbosity > 5) {
249 pout() << m_name + "::setPhase(phase::which_phase)" << endl;
250 }
251
252 m_phase = a_phase;
253}
254
255template <typename P>
256void
257TracerParticleSolver<P>::setTime(const int a_step, const Real a_time, const Real a_dt)
258{
259 CH_TIME("TracerParticleSolver::setTime(int, Real, Real)");
260 if (m_verbosity > 5) {
261 pout() << m_name + "::setTime(int, Real, Real)" << endl;
262 }
263
264 m_timeStep = a_step;
265 m_time = a_time;
266 m_dt = a_dt;
267}
268
269template <typename P>
270inline void
271TracerParticleSolver<P>::setAmr(const RefCountedPtr<AmrMesh>& a_amrMesh)
272{
273 CH_TIME("TracerParticleSolver::setAmr(RefCountedPtr<AmrMesh>)");
274 if (m_verbosity > 5) {
275 pout() << m_name + "::setAmr(RefCountedPtr<AmrMesh>)" << endl;
276 }
277
278 m_amr = a_amrMesh;
279}
280
281template <typename P>
282inline void
283TracerParticleSolver<P>::setComputationalGeometry(const RefCountedPtr<ComputationalGeometry>& a_compGeom)
284{
285 CH_TIME("TracerParticleSolver::setComputationalGeometry(RefCountedPtr<ComputationalGeometry>)");
286 if (m_verbosity > 5) {
287 pout() << m_name + "::setComputationalGeometry(RefCountedPtr<ComputationalGeometry>)" << endl;
288 }
289
290 m_computationalGeometry = a_compGeom;
291}
292
293template <typename P>
294inline void
295TracerParticleSolver<P>::setVelocity(const EBAMRCellData& a_velocityField)
296{
297 CH_TIME("TracerParticleSolver::setVelocity(EBAMRCellData)");
298 if (m_verbosity > 5) {
299 pout() << m_name + "::setVelocity(EBAMRCellData)" << endl;
300 }
301
302 DataOps::copy(m_velocityField, a_velocityField);
303}
304
305template <typename P>
306inline void
307TracerParticleSolver<P>::preRegrid(const int a_lbase, const int a_oldFinestLevel)
308{
309 CH_TIME("TracerParticleSolver::preRegrid(int, int)");
310 if (m_verbosity > 5) {
311 pout() << m_name + "::preRegrid(int, int)" << endl;
312 }
313
314 CH_assert(a_lbase >= 0);
315
316 // Put particles in pre-regrid mode (the SoA container caches all levels; no lbase needed).
317 m_particles.preRegrid();
318}
319
320template <typename P>
321inline void
322TracerParticleSolver<P>::regrid(const int a_lmin, const int a_oldFinestLevel, const int a_newFinestLevel)
323{
324 CH_TIME("TracerParticleSolver::regrid(int, int, int)");
325 if (m_verbosity > 5) {
326 pout() << m_name + "::regrid(int, int, int)" << endl;
327 }
328
329 CH_assert(a_lmin >= 0);
330 CH_assert(a_oldFinestLevel >= 0);
331 CH_assert(a_newFinestLevel >= 0);
332
333 m_amr->remapToNewGrids(m_particles, a_lmin, a_newFinestLevel);
334 m_amr->allocate(m_velocityField, m_realm, m_phase, SpaceDim);
335}
336
337template <typename P>
338inline void
340{
341 CH_TIME("TracerParticleSolver::remap()");
342 if (m_verbosity > 5) {
343 pout() << m_name + "::remap()" << endl;
344 }
345
346 m_particles.remap();
347}
348
349template <typename P>
350inline void
352{
353 CH_TIME("TracerParticleSolver::setDeposition");
354 if (m_verbosity > 5) {
355 pout() << m_name + "::setDeposition" << endl;
356 }
357
358 m_deposition = a_deposition;
359}
360
361template <typename P>
362inline void
363TracerParticleSolver<P>::deposit(EBAMRCellData& a_phi) const noexcept
364{
365 CH_TIME("TracerParticleSolver::deposit(EBAMRCellData)");
366 if (m_verbosity > 5) {
367 pout() << m_name + "::deposit(EBAMRCellData)" << endl;
368 }
369
370 DataOps::setValue(a_phi, 0.0);
371
372 CH_assert(a_phi[0]->nComp() == 1);
373
374 m_amr->depositWeight(a_phi, m_realm, m_phase, m_particles, m_deposition, m_coarseFineDeposition, false);
375
376 if (m_volumeScale) {
377 DataOps::volumeScale(a_phi, m_amr->getDx());
378 }
379}
380
381template <typename P>
382void
383TracerParticleSolver<P>::interpolateWeight(const EBAMRCellData& a_scalar) noexcept
384{
385 CH_TIME("TracerParticleSolver::interpolateWeight(EBAMRCellData)");
386 if (m_verbosity > 5) {
387 pout() << m_name + "::interpolateWeight(EBAMRCellData)" << endl;
388 }
389
390 m_amr->interpolateWeight(m_particles, m_realm, m_phase, a_scalar, m_interpolation, true);
391}
392
393template <typename P>
394inline void
396{
397 CH_TIME("TracerParticleSolver::interpolateVelocities()");
398 if (m_verbosity > 5) {
399 pout() << m_name + "::interpolateVelocities()" << endl;
400 }
401
402 m_amr->interpolateParticles<D_DECL(&P::v_x, &P::v_y, &P::v_z)>(m_particles,
403 m_realm,
404 m_phase,
405 m_velocityField,
406 m_interpolation,
407 true);
408}
409
410template <typename P>
411inline void
413{
414 CH_TIME("TracerParticleSolver::writePlotFile()");
415 if (m_verbosity > 5) {
416 pout() << m_name + "::writePlotFile()" << endl;
417 }
418
419 // Number of output components and their names
420 const int numPlotVars = this->getNumberOfPlotVariables();
421 const Vector<std::string> plotVarNames = this->getPlotVariableNames();
422
423 // Allocate storage
424 EBAMRCellData output;
425 m_amr->allocate(output, m_realm, m_phase, numPlotVars);
426 DataOps::setValue(output, 0.0);
427
428 // Copy internal data to be plotted over to 'output'
429 int icomp = 0;
430 for (int lvl = 0; lvl <= m_amr->getFinestLevel(); lvl++) {
431 this->writePlotData(*output[lvl], icomp, m_realm, lvl);
432 }
433
434 // Filename
435 char filename[100];
436 sprintf(filename, "%s.step%07d.%dd.hdf5", m_name.c_str(), m_timeStep, SpaceDim);
437 std::string fname(filename);
438
439 // Alias, because Chombo's EBAMRIO wants raw pointers (but we stick to smart pointers, like God intended).
440 Vector<LevelData<EBCellFAB>*> outputPtr;
441 m_amr->alias(outputPtr, output);
442
443#ifdef CH_USE_HDF5
444 constexpr int numPlotGhost = 0;
445
446 DischargeIO::writeEBHDF5(fname,
447 plotVarNames,
448 m_amr->getGrids(m_realm),
449 outputPtr,
450 m_amr->getDomains(),
451 m_amr->getDx(),
452 m_amr->getRefinementRatios(),
453 m_dt,
454 m_time,
455 m_amr->getProbLo(),
456 m_amr->getFinestLevel() + 1,
457 numPlotGhost);
458#endif
459}
460
461template <typename P>
462inline int
464{
465 CH_TIME("TracerParticleSolver::getNumberOfPlotVariables()");
466 if (m_verbosity > 5) {
467 pout() << m_name + "::getNumberOfPlotVariables()" << endl;
468 }
469
470 int numPlotVars = 0;
471
472 if (m_plotWeight) {
473 numPlotVars += 1;
474 }
475 if (m_plotVelocity) {
476 numPlotVars += SpaceDim;
477 }
478
479 return numPlotVars;
480}
481
482template <typename P>
483inline Vector<std::string>
485{
486 CH_TIME("TracerParticleSolver::getPlotVariableNames()");
487 if (m_verbosity > 5) {
488 pout() << m_name + "::getPlotVariableNames()" << endl;
489 }
490
491 Vector<std::string> plotVarNames(0);
492
493 if (m_plotWeight) {
494 plotVarNames.push_back(m_name + " density");
495 }
496 if (m_plotVelocity) {
497 plotVarNames.push_back("x-velocity " + m_name);
498 }
499 if (m_plotVelocity) {
500 plotVarNames.push_back("y-velocity " + m_name);
501 }
502#if CH_SPACEDIM == 3
503 if (m_plotVelocity) {
504 plotVarNames.push_back("z-velocity " + m_name);
505 }
506#endif
507
508 return plotVarNames;
509}
510
511template <typename P>
512inline void
513TracerParticleSolver<P>::writePlotData(LevelData<EBCellFAB>& a_output,
514 int& a_comp,
515 const std::string& a_outputRealm,
516 const int a_level) const noexcept
517{
518 CH_TIME("TracerParticleSolver::writePlotData");
519 if (m_verbosity > 5) {
520 pout() << m_name + "::writePlotData" << endl;
521 }
522
523 // Write the particle scalars.
524 if (m_plotWeight) {
525 EBAMRCellData weight;
526 m_amr->allocate(weight, m_realm, m_phase, 1);
527
528 this->deposit(weight);
529
530 this->writeData(a_output, a_comp, weight, a_outputRealm, a_level, false, true);
531 }
532
533 // Write the velocity field to the output data holder.
534 if (m_plotVelocity) {
535 this->writeData(a_output, a_comp, m_velocityField, a_outputRealm, a_level, true, true);
536 }
537}
538
539template <typename P>
540void
541TracerParticleSolver<P>::writeData(LevelData<EBCellFAB>& a_output,
542 int& a_comp,
543 const EBAMRCellData& a_data,
544 const std::string a_outputRealm,
545 const int a_level,
546 const bool a_interpToCentroids,
547 const bool a_interpGhost) const noexcept
548{
549 CH_TIMERS("TracerParticleSolver::writeData");
550 CH_TIMER("TracerParticleSolver::writeData::allocate", t1);
551 CH_TIMER("TracerParticleSolver::writeData::local_copy", t2);
552 CH_TIMER("TracerParticleSolver::writeData::interp_ghost", t3);
553 CH_TIMER("TracerParticleSolver::writeData::interp_centroid", t4);
554 CH_TIMER("TracerParticleSolver::writeData::final_copy", t5);
555 if (m_verbosity > 5) {
556 pout() << m_name + "::writeData" << endl;
557 }
558
559 // Number of components we are working with.
560 const int numComp = a_data[a_level]->nComp();
561
562 CH_START(t1);
563 LevelData<EBCellFAB> scratch;
564 m_amr->allocate(scratch, m_realm, m_phase, a_level, numComp);
565 CH_STOP(t1);
566
567 CH_START(t2);
568 m_amr->copyData(scratch, *a_data[a_level], a_level, m_realm, m_realm);
569 CH_STOP(t2);
570
571 // Interpolate ghost cells
572 CH_START(t3);
573 if (a_level > 0 && a_interpGhost) {
574 m_amr->interpGhost(scratch, *a_data[a_level - 1], a_level, m_realm, m_phase);
575 }
576 CH_STOP(t3);
577
578 CH_START(t4);
579 if (a_interpToCentroids) {
580 m_amr->interpToCentroids(scratch, m_realm, m_phase, a_level);
581 }
582 CH_STOP(t4);
583
584 DataOps::setCoveredValue(scratch, *m_amr->getCoveredCells(m_realm, m_phase)[a_level], 0.0);
585
586 CH_START(t5);
587 const Interval srcInterv(0, numComp - 1);
588 const Interval dstInterv(a_comp, a_comp + numComp - 1);
589 m_amr->copyData(a_output, scratch, a_level, a_outputRealm, m_realm, dstInterv, srcInterv);
590 CH_STOP(t5);
591
592 a_comp += numComp;
593}
594
595#ifdef CH_USE_HDF5
596template <typename P>
597inline void
598TracerParticleSolver<P>::writeCheckpointLevel(HDF5Handle& a_handle, const int a_level) const
599{
600 CH_TIME("TracerParticleSolver::writeCheckpointLevel(HDF5Handle, int)");
601 if (m_verbosity > 5) {
602 pout() << m_name + "::writeCheckpointLevel(HDF5Handle, int)" << endl;
603 }
604
605 DischargeIO::writeCheckParticlesToHDF(a_handle, m_particles[a_level], m_name + "_particles");
606}
607#endif
608
609#ifdef CH_USE_HDF5
610template <typename P>
611inline void
612TracerParticleSolver<P>::readCheckpointLevel(HDF5Handle& a_handle, const int a_level)
613{
614 CH_TIME("TracerParticleSolver::readCheckpointLevel(HDF5Handle, int)");
615 if (m_verbosity > 5) {
616 pout() << m_name + "::readCheckpointLevel(HDF5Handle, int)" << endl;
617 }
618
619 DischargeIO::readCheckParticlesFromHDF(a_handle, m_particles[a_level], m_name + "_particles");
620}
621#endif
622
623template <typename P>
624Real
626{
627 CH_TIME("TracerParticleSolver::computeDt()");
628 if (m_verbosity > 5) {
629 pout() << m_name + "::computeDt()" << endl;
630 }
631
632 Real dt = std::numeric_limits<Real>::infinity();
633
634 for (int lvl = 0; lvl <= m_amr->getFinestLevel(); lvl++) {
635 const DisjointBoxLayout& dbl = m_amr->getGrids(m_realm)[lvl];
636 const DataIterator& dit = dbl.dataIterator();
637 const Real dx = m_amr->getDx()[lvl];
638
639 const int nbox = dit.size();
640
641#pragma omp parallel for schedule(runtime) reduction(min : dt)
642 for (int mybox = 0; mybox < nbox; mybox++) {
643 const DataIndex& din = dit[mybox];
644
645 const ParticleSoA<P>& leaf = m_particles[lvl][din];
646 const std::size_t n = leaf.size();
647 const ParticleReal* const v[SpaceDim] = {
648 D_DECL(leaf.template column<&P::v_x>(), leaf.template column<&P::v_y>(), leaf.template column<&P::v_z>())};
649
650 for (std::size_t i = 0; i < n; i++) {
651 for (int dir = 0; dir < SpaceDim; dir++) {
652 dt = std::min(dt, dx / std::abs(static_cast<Real>(v[dir][i])));
653 }
654 }
655 }
656 }
657
658 // Get the minimum of dt over all MPI ranks.
659 dt = ParallelOps::min(dt);
660
661 return dt;
662}
663
664template <typename P>
667{
668 CH_TIME("TracerParticleSolver::getParticles()");
669 if (m_verbosity > 5) {
670 pout() << m_name + "::getParticles()" << endl;
671 }
672
673 return m_particles;
674}
675
676template <typename P>
677inline const ParticleContainer<P>&
679{
680 CH_TIME("TracerParticleSolver::getParticles()");
681 if (m_verbosity > 5) {
682 pout() << m_name + "::getParticles()" << endl;
683 }
684
685 return m_particles;
686}
687
688template <typename P>
689inline const EBAMRCellData&
691{
692 CH_TIME("TracerParticleSolver::getVelocityField()");
693 if (m_verbosity > 5) {
694 pout() << m_name + "::getVelocityField()" << endl;
695 }
696
697 return m_velocityField;
698}
699
700template <typename P>
701inline DepositionType
703{
704 CH_TIME("TracerParticleSolver::getDepositionType");
705 if (m_verbosity > 5) {
706 pout() << m_name + "::getDepositionType" << endl;
707 }
708
709 return m_deposition;
710}
711
712template <typename P>
715{
716 CH_TIME("TracerParticleSolver::getCoarseFineDepositionType");
717 if (m_verbosity > 5) {
718 pout() << m_name + "::getCoarseFineDepositionType" << endl;
719 }
720
721 return m_coarseFineDeposition;
722}
723
724template <typename P>
725inline DepositionType
727{
728 CH_TIME("TracerParticleSolver::getInterpolationType");
729 if (m_verbosity > 5) {
730 pout() << m_name + "::getInterpolationType" << endl;
731 }
732
733 return m_interpolation;
734}
735
736#include <CD_NamespaceFooter.H>
737
738#endif
CoarseFineDeposition
Coarse-fine deposition types (see CD_EBAMRParticleMesh for how these are handled).
Definition CD_CoarseFineDeposition.H:28
DepositionType
Deposition types.
Definition CD_DepositionType.H:24
Silly, but useful functions that override standard Chombo HDF5 IO.
Agglomeration of basic MPI reductions.
CD_PARTICLE_REAL ParticleReal
Floating-point type a user may use for payload columns.
Definition CD_ParticleSoA.H:156
Declaration of a solver class that advances tracer particles.
static void volumeScale(EBAMRCellData &a_data, const Vector< Real > &a_dx)
Scale data by dx^SpaceDim.
Definition CD_DataOps.cpp:2236
static void setValue(LevelData< MFInterfaceFAB< T > > &a_lhs, const T &a_value)
Set value in an MFInterfaceFAB data holder.
Definition CD_DataOpsImplem.H:24
static void setCoveredValue(EBAMRCellData &a_lhs, const EBAMRCellData &a_coveredMask, const int a_comp, const Real a_value)
Set value in covered cells. Does specified component.
Definition CD_DataOps.cpp:2655
static void copy(MFAMRCellData &a_dst, const MFAMRCellData &a_src)
Copy data from one data holder to another.
Definition CD_DataOps.cpp:1201
AMR-hierarchy container of computational particles, stored per patch in Struct-of-Arrays form.
Definition CD_ParticleContainer.H:123
Arena-backed Struct-of-Arrays particle container for a single grid patch.
Definition CD_ParticleSoA.H:655
std::size_t size() const noexcept
Number of particles currently stored.
Definition CD_ParticleSoA.H:882
static const std::string primal
Identifier for perimal realm.
Definition CD_Realm.H:49
Base class for a tracer particle solver. This solver can advance particles in a pre-defined velocity ...
Definition CD_TracerParticleSolver.H:39
virtual CoarseFineDeposition getCoarseFineDepositionType() const
Get the coarse-fine deposition type.
Definition CD_TracerParticleSolverImplem.H:714
virtual void remap()
Remap particles.
Definition CD_TracerParticleSolverImplem.H:339
virtual void setRealm(const std::string &a_realm)
Set the solver realm.
Definition CD_TracerParticleSolverImplem.H:233
void parsePlotVariables()
Parse plot variables.
Definition CD_TracerParticleSolverImplem.H:148
virtual void registerOperators() const
Register operators needed for AMR core functionality.
Definition CD_TracerParticleSolverImplem.H:177
virtual void setName(const std::string &a_name) noexcept
Set the solver name.
Definition CD_TracerParticleSolverImplem.H:209
TracerParticleSolver()
Default constructor.
Definition CD_TracerParticleSolverImplem.H:26
virtual void setTime(const int a_step, const Real a_time, const Real a_dt)
Set the time for this solver.
Definition CD_TracerParticleSolverImplem.H:257
virtual void deposit(EBAMRCellData &a_phi) const noexcept
Deposit particle weight on mesh.
Definition CD_TracerParticleSolverImplem.H:363
virtual void writeData(LevelData< EBCellFAB > &a_output, int &a_comp, const EBAMRCellData &a_data, const std::string a_outputRealm, const int a_level, const bool a_interpToCentroids, const bool a_interpGhost) const noexcept
Write data to output. Convenience function.
Definition CD_TracerParticleSolverImplem.H:541
virtual ~TracerParticleSolver()
Destructor.
Definition CD_TracerParticleSolverImplem.H:56
virtual void preRegrid(const int a_lbase, const int a_oldFinestLevel)
Perform pre-regrid operations.
Definition CD_TracerParticleSolverImplem.H:307
virtual ParticleContainer< P > & getParticles()
Get all particles.
Definition CD_TracerParticleSolverImplem.H:666
void parseDeposition()
Parse deposition method.
Definition CD_TracerParticleSolverImplem.H:91
void parseVerbosity()
Parse solver verbosity.
Definition CD_TracerParticleSolverImplem.H:163
RefCountedPtr< AmrMesh > m_amr
Handle to AMR mesh.
Definition CD_TracerParticleSolver.H:328
virtual Vector< std::string > getPlotVariableNames() const
Get plot variable names.
Definition CD_TracerParticleSolverImplem.H:484
RefCountedPtr< ComputationalGeometry > m_computationalGeometry
Handle to computational geometry.
Definition CD_TracerParticleSolver.H:333
virtual void writePlotData(LevelData< EBCellFAB > &a_output, int &a_comp, const std::string &a_outputRealm, const int a_level) const noexcept
Write plot data.
Definition CD_TracerParticleSolverImplem.H:513
virtual void parseRuntimeOptions()
Parse solver run-time options.
Definition CD_TracerParticleSolverImplem.H:77
virtual void writePlotFile()
Write plot file.
Definition CD_TracerParticleSolverImplem.H:412
virtual void setDeposition(const DepositionType a_deposition) noexcept
Set deposition method.
Definition CD_TracerParticleSolverImplem.H:351
virtual void setPhase(const phase::which_phase &a_phase)
Set the solver phase.
Definition CD_TracerParticleSolverImplem.H:245
virtual DepositionType getDepositionType() const
Get the deposition type.
Definition CD_TracerParticleSolverImplem.H:702
virtual void allocate()
Allocate storage for this solver.
Definition CD_TracerParticleSolverImplem.H:195
virtual DepositionType getInterpolationType() const
Get the interpolation type.
Definition CD_TracerParticleSolverImplem.H:726
virtual void setComputationalGeometry(const RefCountedPtr< ComputationalGeometry > &a_compGeom)
Set the computational geometry.
Definition CD_TracerParticleSolverImplem.H:283
virtual void interpolateVelocities()
Interpolate particles velocities.
Definition CD_TracerParticleSolverImplem.H:395
const EBAMRCellData & getVelocityField() const
Return the velocity field.
Definition CD_TracerParticleSolverImplem.H:690
virtual void regrid(const int a_lmin, const int a_oldFinestLevel, const int a_newFinestLevel)
Regrid this solver.
Definition CD_TracerParticleSolverImplem.H:322
virtual void parseOptions()
Parse solver options.
Definition CD_TracerParticleSolverImplem.H:63
virtual void setVelocity(const EBAMRCellData &a_velocityField)
Set the tracer particle velocity field.
Definition CD_TracerParticleSolverImplem.H:295
virtual void interpolateWeight(const EBAMRCellData &a_scalar) noexcept
Interpolate a scalar field onto the particle weight.
Definition CD_TracerParticleSolverImplem.H:383
virtual int getNumberOfPlotVariables() const
Get the number of plot variables.
Definition CD_TracerParticleSolverImplem.H:463
virtual void setAmr(const RefCountedPtr< AmrMesh > &a_amrMesh)
Set AmrMesh.
Definition CD_TracerParticleSolverImplem.H:271
virtual Real computeDt() const
Compute dt = dx/max(v_x, v_y, v_z) minimized over all particles.
Definition CD_TracerParticleSolverImplem.H:625
virtual void setVolumeScale(const bool a_scale) noexcept
Turn on/off volume scaling.
Definition CD_TracerParticleSolverImplem.H:221
Real min(const Real &a_input) noexcept
Get the minimum of the input, reduced over MPI ranks (in the Chombo communicator)
Definition CD_ParallelOpsImplem.H:59
which_phase
Enumeration of supported phases.
Definition CD_MultiFluidIndexSpace.H:38
@ gas
Gas phase.
Definition CD_MultiFluidIndexSpace.H:39