chombo-discharge
Loading...
Searching...
No Matches
CD_EBGhostCellInterpolator.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_EBGHOSTCELLINTERPOLATOR_H
14#define CD_EBGHOSTCELLINTERPOLATOR_H
15
16// Std includes
17#include <map>
18
19// Chombo includes
20#include <EBLevelGrid.H>
21
22// Our includes
23#include <CD_Location.H>
24#include <CD_NamespaceHeader.H>
25
35{
36public:
40 enum Type
41 {
42 PWC,
43 MinMod,
44 MonotonizedCentral,
45 Superbee
46 };
47
51 EBGhostCellInterpolator() noexcept;
52
57
67 EBGhostCellInterpolator(const EBLevelGrid& a_eblgFine,
68 const EBLevelGrid& a_eblgCoFi,
69 const EBLevelGrid& a_eblgCoar,
70 const IntVect& a_ghostVector,
71 const int a_refRat,
72 const int a_ghostCF) noexcept;
73
77 virtual ~EBGhostCellInterpolator() noexcept;
78
88 virtual void
89 define(const EBLevelGrid& a_eblgFine,
90 const EBLevelGrid& a_eblgCoFi,
91 const EBLevelGrid& a_eblgCoar,
92 const IntVect& a_ghostVector,
93 const int a_refRat,
94 const int a_ghostCF) noexcept;
95
103 virtual void
104 interpolate(LevelData<EBCellFAB>& a_phiFine,
105 const LevelData<EBCellFAB>& a_phiCoar,
106 const Interval a_variables,
107 const Type a_interpType) const noexcept;
108
109protected:
114
118 EBLevelGrid m_eblgFine;
119
123 EBLevelGrid m_eblgCoar;
124
128 EBLevelGrid m_eblgCoFi;
129
134
139
145
149 LayoutData<std::map<std::pair<int, Side::LoHiSide>, Box>> m_regularGhostRegions;
150
154 Copier m_copier;
155
161 LayoutData<BaseIVFAB<VolIndex>> m_coarsenedFineGhosts;
162
166 mutable LayoutData<VoFIterator> m_fineIrregCells;
167
171 mutable LayoutData<VoFIterator> m_coarIrregCells;
172
177 mutable LayoutData<BaseIVFAB<Real>> m_coarIrregSlopes;
178
182 virtual void
183 defineGhostRegions() noexcept;
184
188 virtual void
189 defineBuffers() noexcept;
190
200 virtual void
201 interpolateRegular(FArrayBox& a_phiFine,
202 const FArrayBox& a_phiCoar,
203 const DataIndex& a_dit,
204 const int a_fineVar,
205 const int a_coarVar,
206 const Type a_interpType) const noexcept;
207
217 virtual void
218 interpolateIrregular(EBCellFAB& a_phiFine,
219 const EBCellFAB& a_phiCoar,
220 const DataIndex& a_dit,
221 const int a_fineVar,
222 const int a_coarVar,
223 const Type a_interpType) const noexcept;
224
231 static inline Real
232 minmod(const Real& dwl, const Real& dwr) noexcept;
233
240 static Real
241 superbee(const Real& dwl, const Real& dwr) noexcept;
242
249 static inline Real
250 monotonizedCentral(const Real& dwl, const Real& dwr) noexcept;
251};
252
253#include <CD_NamespaceFooter.H>
254
255#endif
Declaration of cell positions.
Class which can interpolate ghost cells across the coarse-fine interface. To select an interpolation ...
Definition CD_EBGhostCellInterpolator.H:35
virtual void interpolateRegular(FArrayBox &a_phiFine, const FArrayBox &a_phiCoar, const DataIndex &a_dit, const int a_fineVar, const int a_coarVar, const Type a_interpType) const noexcept
Regular interpolation, as if the EB was not there.
Definition CD_EBGhostCellInterpolator.cpp:214
LayoutData< std::map< std::pair< int, Side::LoHiSide >, Box > > m_regularGhostRegions
Regular ghost regions to be interpolated.
Definition CD_EBGhostCellInterpolator.H:149
EBGhostCellInterpolator() noexcept
Weak constructor. Need to call define afterwards.
Definition CD_EBGhostCellInterpolator.cpp:25
LayoutData< VoFIterator > m_coarIrregCells
Coarse-grid cells on the caorse-side of the interface that are irregular cells.
Definition CD_EBGhostCellInterpolator.H:171
virtual void defineBuffers() noexcept
Define buffers.
Definition CD_EBGhostCellInterpolator.cpp:159
IntVect m_ghostVector
Minimum number of ghost cells in input data.
Definition CD_EBGhostCellInterpolator.H:133
static Real monotonizedCentral(const Real &dwl, const Real &dwr) noexcept
Monotonized central difference slope limiter.
Definition CD_EBGhostCellInterpolator.cpp:484
virtual void define(const EBLevelGrid &a_eblgFine, const EBLevelGrid &a_eblgCoFi, const EBLevelGrid &a_eblgCoar, const IntVect &a_ghostVector, const int a_refRat, const int a_ghostCF) noexcept
Define method. Puts object in usable state.
Definition CD_EBGhostCellInterpolator.cpp:48
static Real minmod(const Real &dwl, const Real &dwr) noexcept
minmod slope function.
Definition CD_EBGhostCellInterpolator.cpp:455
Copier m_copier
Copier for making copying from m_eblgCoar to m_grownCoarData go faster.
Definition CD_EBGhostCellInterpolator.H:154
virtual void defineGhostRegions() noexcept
Define ghost regions to be interpolated.
Definition CD_EBGhostCellInterpolator.cpp:74
bool m_isDefined
Is defined or not.
Definition CD_EBGhostCellInterpolator.H:113
virtual void interpolateIrregular(EBCellFAB &a_phiFine, const EBCellFAB &a_phiCoar, const DataIndex &a_dit, const int a_fineVar, const int a_coarVar, const Type a_interpType) const noexcept
Ghost cell interpolation near the EB, correcting slopes that broke in interpolateRegular.
Definition CD_EBGhostCellInterpolator.cpp:336
LayoutData< BaseIVFAB< VolIndex > > m_coarsenedFineGhosts
List of coarse-grid cells that appear through coarsening a fine-grid ghost cell.
Definition CD_EBGhostCellInterpolator.H:161
EBLevelGrid m_eblgFine
Fine grids.
Definition CD_EBGhostCellInterpolator.H:118
LayoutData< VoFIterator > m_fineIrregCells
Fine-grid ghost cells on the coarse-fine interface that overlap an irregular coarse cell.
Definition CD_EBGhostCellInterpolator.H:166
EBLevelGrid m_eblgCoar
Coarse grids.
Definition CD_EBGhostCellInterpolator.H:123
EBLevelGrid m_eblgCoFi
Coarsened fine grids.
Definition CD_EBGhostCellInterpolator.H:128
virtual void interpolate(LevelData< EBCellFAB > &a_phiFine, const LevelData< EBCellFAB > &a_phiCoar, const Interval a_variables, const Type a_interpType) const noexcept
Do inhomogeneous interpolation.
Definition CD_EBGhostCellInterpolator.cpp:167
int m_refRat
Refinement factor between fine and coarse level.
Definition CD_EBGhostCellInterpolator.H:138
Type
Type of interpolation slopes supported.
Definition CD_EBGhostCellInterpolator.H:41
LayoutData< BaseIVFAB< Real > > m_coarIrregSlopes
Buffer data defined on the coarsened fine grids (over m_coarIrregCells). Used for holding slopes in t...
Definition CD_EBGhostCellInterpolator.H:177
int m_ghostCF
Number of ghost cells to fill across coarse-fine interface.
Definition CD_EBGhostCellInterpolator.H:144
static Real superbee(const Real &dwl, const Real &dwr) noexcept
Superbee slope limiter.
Definition CD_EBGhostCellInterpolator.cpp:467