Abstract base class for geometry calculation schemes. More...
Public Member Functions | |
TypeName ("fvGeometryScheme") | |
Runtime type information. More... | |
declareRunTimeSelectionTable (tmp, fvGeometryScheme, dict,(const fvMesh &mesh, const dictionary &dict),(mesh, dict)) | |
fvGeometryScheme (const fvMesh &mesh, const dictionary &dict) | |
Construct from mesh. More... | |
virtual | ~fvGeometryScheme ()=default |
Destructor. More... | |
const fvMesh & | mesh () const |
Return mesh reference. More... | |
virtual void | movePoints () |
Update basic geometric properties from provided points. More... | |
virtual tmp< surfaceScalarField > | weights () const =0 |
Return linear difference weighting factors. More... | |
virtual tmp< surfaceScalarField > | deltaCoeffs () const =0 |
Return cell-centre difference coefficients. More... | |
virtual tmp< surfaceScalarField > | nonOrthDeltaCoeffs () const =0 |
Return non-orthogonal cell-centre difference coefficients. More... | |
virtual tmp< surfaceVectorField > | nonOrthCorrectionVectors () const =0 |
Return non-orthogonality correction vectors. More... | |
![]() | |
constexpr | refCount () noexcept |
Default construct, initializing count to 0. More... | |
int | count () const noexcept |
Return the current reference count. More... | |
bool | unique () const noexcept |
Return true if the reference count is zero. More... | |
void | operator++ () noexcept |
Increment the reference count. More... | |
void | operator++ (int) noexcept |
Increment the reference count. More... | |
void | operator-- () noexcept |
Decrement the reference count. More... | |
void | operator-- (int) noexcept |
Decrement the reference count. More... | |
Static Public Member Functions | |
static tmp< fvGeometryScheme > | New (const fvMesh &mesh, const dictionary &dict, const word &defaultScheme) |
Return new tmp interpolation scheme. More... | |
Protected Attributes | |
const fvMesh & | mesh_ |
Hold reference to mesh. More... | |
Abstract base class for geometry calculation schemes.
Definition at line 56 of file fvGeometryScheme.H.
|
inline |
Construct from mesh.
Definition at line 99 of file fvGeometryScheme.H.
|
virtualdefault |
Destructor.
TypeName | ( | "fvGeometryScheme" | ) |
Runtime type information.
declareRunTimeSelectionTable | ( | tmp | , |
fvGeometryScheme | , | ||
dict | , | ||
(const fvMesh &mesh, const dictionary &dict) | , | ||
(mesh, dict) | |||
) |
|
static |
Return new tmp interpolation scheme.
Definition at line 44 of file fvGeometryScheme.C.
References Foam::expressions::patchExpr::debug, dict, Foam::endl(), Foam::exit(), Foam::FatalIOError, FatalIOErrorInLookup, InfoInFunction, mesh, and entry::stream().
Referenced by surfaceInterpolation::geometry().
|
inline |
Return mesh reference.
Definition at line 123 of file fvGeometryScheme.H.
References fvGeometryScheme::mesh_.
|
inlinevirtual |
Update basic geometric properties from provided points.
Reimplemented in averageNeighbourFvGeometryScheme, highAspectRatioFvGeometryScheme, stabilisedFvGeometryScheme, and basicFvGeometryScheme.
Definition at line 129 of file fvGeometryScheme.H.
|
pure virtual |
Return linear difference weighting factors.
Implemented in basicFvGeometryScheme.
|
pure virtual |
Return cell-centre difference coefficients.
Implemented in basicFvGeometryScheme.
|
pure virtual |
Return non-orthogonal cell-centre difference coefficients.
Implemented in basicFvGeometryScheme.
|
pure virtual |
Return non-orthogonality correction vectors.
Implemented in basicFvGeometryScheme.
|
protected |
Hold reference to mesh.
Definition at line 72 of file fvGeometryScheme.H.
Referenced by fvGeometryScheme::mesh(), basicFvGeometryScheme::movePoints(), stabilisedFvGeometryScheme::movePoints(), highAspectRatioFvGeometryScheme::movePoints(), and averageNeighbourFvGeometryScheme::movePoints().