ThunderEgg
1.0.0
|
Exchanges ghost cells on patches, handles refinement boundaries with a biquadratic interpolation scheme. More...
#include <BiQuadraticGhostFiller.h>
Public Member Functions | |
BiQuadraticGhostFiller (const Domain< 2 > &domain, GhostFillingType fill_type) | |
Construct a new BiQuadraticGhostFiller object. More... | |
BiQuadraticGhostFiller * | clone () const override |
Clone this BiQuadraticGhostFiller. More... | |
void | fillGhostCellsForNbrPatch (const PatchInfo< 2 > &pinfo, const PatchView< const double, 2 > &local_view, const PatchView< const double, 2 > &nbr_view, Side< 2 > side, NbrType nbr_type, Orthant< 1 > orthant_on_coarse) const override |
void | fillGhostCellsForEdgeNbrPatch (const PatchInfo< 2 > &pinfo, const PatchView< const double, 2 > &local_view, const PatchView< const double, 2 > &nbr_view, Edge edge, NbrType nbr_type, Orthant< 1 > orthant_on_coarse) const override |
void | fillGhostCellsForCornerNbrPatch (const PatchInfo< 2 > &pinfo, const PatchView< const double, 2 > &local_view, const PatchView< const double, 2 > &nbr_view, Corner< 2 > corner, NbrType nbr_type) const override |
void | fillGhostCellsForLocalPatch (const PatchInfo< 2 > &pinfo, const PatchView< const double, 2 > &view) const override |
Public Member Functions inherited from ThunderEgg::MPIGhostFiller< 2 > | |
MPIGhostFiller (const Domain< D > &domain, GhostFillingType fill_type) | |
Construct a new MPIGhostFiller object. More... | |
virtual void | fillGhostCellsForNbrPatch (const PatchInfo< D > &pinfo, const PatchView< const double, D > &local_view, const PatchView< const double, D > &nbr_view, Side< D > side, NbrType nbr_type, Orthant< D - 1 > orthant_on_coarse) const=0 |
Fill the ghost cells for the neighboring patch. More... | |
virtual void | fillGhostCellsForEdgeNbrPatch (const PatchInfo< D > &pinfo, const PatchView< const double, D > &local_view, const PatchView< const double, D > &nbr_view, Edge edge, NbrType nbr_type, Orthant< 1 > orthant_on_coarse) const=0 |
Fill the edge ghost cells for the neighboring patch. More... | |
virtual void | fillGhostCellsForCornerNbrPatch (const PatchInfo< D > &pinfo, const PatchView< const double, D > &local_view, const PatchView< const double, D > &nbr_view, Corner< D > corner, NbrType nbr_type) const=0 |
Fill the corner ghost cells for the neighboring patch. More... | |
virtual void | fillGhostCellsForLocalPatch (const PatchInfo< D > &pinfo, const PatchView< const double, D > &view) const=0 |
Perform any on this patches ghost cells. More... | |
void | fillGhost (const Vector< D > &u) const override |
Fill ghost cells on a vector. More... | |
GhostFillingType | getFillType () const |
Get the ghost filling type. More... | |
const Domain< D > & | getDomain () const |
Get the domain that is being filled for. More... | |
Exchanges ghost cells on patches, handles refinement boundaries with a biquadratic interpolation scheme.
ThunderEgg::BiQuadraticGhostFiller::BiQuadraticGhostFiller | ( | const Domain< 2 > & | domain, |
GhostFillingType | fill_type | ||
) |
Construct a new BiQuadraticGhostFiller object.
domain | the domain that is being fill for |
fill_type | the ghost filling type to perform |
|
overridevirtual |
Clone this BiQuadraticGhostFiller.
Implements ThunderEgg::GhostFiller< D >.