Public Types | Public Member Functions | Static Public Member Functions | Friends | List of all members
fvPatch Class Reference

A finiteVolume patch using a polyPatch and a fvBoundaryMesh. More...

Inheritance diagram for fvPatch:
Inheritance graph
[legend]

Public Types

typedef fvBoundaryMesh BoundaryMesh
 The boundary type associated with the patch. More...
 

Public Member Functions

virtual void makeWeights (scalarField &) const
 Make patch weighting factors. More...
 
virtual void makeDeltaCoeffs (scalarField &) const
 Correct patch deltaCoeffs. More...
 
virtual void makeNonOrthoDeltaCoeffs (scalarField &) const
 Correct patch non-ortho deltaCoeffs. More...
 
virtual void makeNonOrthoCorrVectors (vectorField &) const
 Correct patch non-ortho correction vectors. More...
 
virtual void initMovePoints ()
 Initialise the patches for moving points. More...
 
virtual void movePoints ()
 Correct patches after moving points. More...
 
 TypeName (polyPatch::typeName_())
 Runtime type information. More...
 
 declareRunTimeSelectionTable (autoPtr, fvPatch, polyPatch,(const polyPatch &patch, const fvBoundaryMesh &bm),(patch, bm))
 
 fvPatch (const polyPatch &, const fvBoundaryMesh &)
 Construct from polyPatch and fvBoundaryMesh. More...
 
virtual ~fvPatch ()
 Destructor. More...
 
const polyPatchpatch () const noexcept
 Return the polyPatch. More...
 
virtual const wordname () const
 Return name. More...
 
virtual label start () const
 Return start label of this patch in the polyMesh face list. More...
 
virtual label size () const
 Return size. More...
 
virtual bool coupled () const
 Return true if this patch is coupled. More...
 
label index () const noexcept
 Return the index of this patch in the fvBoundaryMesh. More...
 
const fvBoundaryMeshboundaryMesh () const noexcept
 Return boundaryMesh reference. More...
 
template<class T >
const List< T >::subList patchSlice (const List< T > &l) const
 Slice List to patch, using the virtual patch size. More...
 
template<class T >
const List< T >::subList patchRawSlice (const List< T > &l) const
 Slice List to patch, using the underlying polyPatch information. More...
 
virtual const labelUListfaceCells () const
 Return faceCells. More...
 
const vectorFieldCf () const
 Return face centres. More...
 
tmp< vectorFieldCn () const
 Return neighbour cell centres. More...
 
const vectorFieldSf () const
 Return face area vectors. More...
 
const scalarFieldmagSf () const
 Return face area magnitudes. More...
 
tmp< vectorFieldnf () const
 Return face normals. More...
 
virtual tmp< vectorFielddelta () const
 Return cell-centre to face-centre vector except for coupled patches for which the cell-centre to coupled-cell-centre vector is returned. More...
 
const scalarFieldweights () const
 Return patch weighting factors. More...
 
const scalarFielddeltaCoeffs () const
 Return the face - cell distance coefficient except for coupled patches for which the cell-centre to coupled-cell-centre distance coefficient is returned. More...
 
template<class Type >
void patchInternalField (const UList< Type > &f, const labelUList &faceCells, Field< Type > &pfld) const
 Extract internal field next to patch using faceCells mapping. More...
 
template<class Type >
tmp< Field< Type > > patchInternalField (const UList< Type > &) const
 Return given internal field next to patch as patch field. More...
 
template<class Type >
tmp< Field< Type > > patchInternalField (const UList< Type > &f, const labelUList &faceCells) const
 Return given internal field next to patch as patch field using provided addressing. More...
 
template<class Type >
void patchInternalField (const UList< Type > &, Field< Type > &) const
 Return given internal field next to patch as patch field. More...
 
template<class GeometricField , class AnyType = bool>
const GeometricField::PatchpatchField (const GeometricField &gf) const
 Return the patch field of the GeometricField corresponding to this patch. More...
 
template<class GeometricField , class AnyType = bool>
const GeometricField::PatchlookupPatchField (const word &name, const GeometricField *=nullptr, const AnyType *=nullptr) const
 Lookup the named field from the local registry and return the patch field corresponding to this patch. More...
 
template<class Type >
Foam::tmp< Foam::Field< Type > > patchInternalField (const UList< Type > &f) const
 
template<class Type >
Foam::tmp< Foam::Field< Type > > patchInternalField (const UList< Type > &f, const labelUList &faceCells) const
 

Static Public Member Functions

static autoPtr< fvPatchNew (const polyPatch &, const fvBoundaryMesh &)
 Return a pointer to a new patch created on freestore from polyPatch. More...
 
static const fvPatchlookupPatch (const polyPatch &p)
 Lookup the polyPatch index on corresponding fvMesh. More...
 
static bool constraintType (const word &patchType)
 Return true if the given type is a constraint type. More...
 
static wordList constraintTypes ()
 Return a list of all the constraint patch types. More...
 

Friends

class fvBoundaryMesh
 
class surfaceInterpolation
 

Detailed Description

A finiteVolume patch using a polyPatch and a fvBoundaryMesh.

Source files

Definition at line 68 of file fvPatch.H.

Member Typedef Documentation

◆ BoundaryMesh

The boundary type associated with the patch.

Definition at line 136 of file fvPatch.H.

Constructor & Destructor Documentation

◆ fvPatch()

fvPatch ( const polyPatch p,
const fvBoundaryMesh bm 
)

Construct from polyPatch and fvBoundaryMesh.

Definition at line 59 of file fvPatch.C.

◆ ~fvPatch()

~fvPatch ( )
virtual

Destructor.

Definition at line 68 of file fvPatch.C.

Member Function Documentation

◆ makeWeights()

void makeWeights ( scalarField w) const
virtual

Make patch weighting factors.

Reimplemented in cyclicACMIFvPatch, cyclicFvPatch, cyclicAMIFvPatch, coupledFvPatch, and processorFvPatch.

Definition at line 151 of file fvPatch.C.

Referenced by cyclicAMIFvPatch::makeWeights(), and cyclicACMIFvPatch::makeWeights().

Here is the caller graph for this function:

◆ makeDeltaCoeffs()

void makeDeltaCoeffs ( scalarField w) const
virtual

Correct patch deltaCoeffs.

Reimplemented in cyclicAMIFvPatch, and mappedVariableThicknessWallFvPatch.

Definition at line 157 of file fvPatch.C.

◆ makeNonOrthoDeltaCoeffs()

void makeNonOrthoDeltaCoeffs ( scalarField w) const
virtual

Correct patch non-ortho deltaCoeffs.

Reimplemented in cyclicAMIFvPatch.

Definition at line 161 of file fvPatch.C.

◆ makeNonOrthoCorrVectors()

void makeNonOrthoCorrVectors ( vectorField w) const
virtual

Correct patch non-ortho correction vectors.

Reimplemented in cyclicAMIFvPatch.

Definition at line 165 of file fvPatch.C.

◆ initMovePoints()

void initMovePoints ( )
virtual

Initialise the patches for moving points.

Definition at line 169 of file fvPatch.C.

◆ movePoints()

void movePoints ( )
virtual

Correct patches after moving points.

Reimplemented in cyclicACMIFvPatch, and cyclicAMIFvPatch.

Definition at line 173 of file fvPatch.C.

◆ TypeName()

TypeName ( polyPatch::typeName_()  )

Runtime type information.

◆ declareRunTimeSelectionTable()

declareRunTimeSelectionTable ( autoPtr  ,
fvPatch  ,
polyPatch  ,
(const polyPatch &patch, const fvBoundaryMesh &bm)  ,
(patch, bm)   
)

◆ New()

Foam::autoPtr< Foam::fvPatch > New ( const polyPatch patch,
const fvBoundaryMesh bm 
)
static

Return a pointer to a new patch created on freestore from polyPatch.

Definition at line 28 of file fvPatchNew.C.

References DebugInFunction, Foam::endl(), Foam::exit(), Foam::FatalError, FatalErrorInLookup, and Foam::foamVersion::patch.

Referenced by fvMeshAdder::add(), and meshRefinement::appendPatch().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ lookupPatch()

const Foam::fvPatch & lookupPatch ( const polyPatch p)
static

Lookup the polyPatch index on corresponding fvMesh.

Note
Fatal if the polyPatch is not associated with a fvMesh

Definition at line 42 of file fvPatch.C.

References fvMesh::boundary(), Foam::exit(), Foam::FatalError, FatalErrorInFunction, Foam::nl, and p.

Here is the call graph for this function:

◆ patch()

const polyPatch& patch ( ) const
inlinenoexcept

◆ name()

virtual const word& name ( ) const
inlinevirtual

◆ start()

virtual label start ( ) const
inlinevirtual

◆ size()

virtual label size ( ) const
inlinevirtual

◆ coupled()

virtual bool coupled ( ) const
inlinevirtual

Return true if this patch is coupled.

Reimplemented in cyclicAMIFvPatch, cyclicACMIFvPatch, processorFvPatch, and coupledFvPatch.

Definition at line 232 of file fvPatch.H.

References polyPatch::coupled().

Here is the call graph for this function:

◆ constraintType()

bool constraintType ( const word patchType)
static

Return true if the given type is a constraint type.

Definition at line 74 of file fvPatch.C.

References UList< T >::found().

Here is the call graph for this function:

◆ constraintTypes()

Foam::wordList constraintTypes ( )
static

Return a list of all the constraint patch types.

Definition at line 85 of file fvPatch.C.

References forAllConstIters().

Here is the call graph for this function:

◆ index()

label index ( ) const
inlinenoexcept

Return the index of this patch in the fvBoundaryMesh.

Definition at line 250 of file fvPatch.H.

References patchIdentifier::index().

Referenced by boundaryAdjointContributionIncompressible::laminarDiffusivity(), boundaryAdjointContributionIncompressible::momentumDiffusion(), cyclicAMIFvPatch::movePoints(), boundaryAdjointContributionIncompressible::pab(), boundaryAdjointContributionIncompressible::pb(), boundaryAdjointContributionIncompressible::phiab(), boundaryAdjointContributionIncompressible::phib(), boundaryAdjointContributionIncompressible::pressureSource(), boundaryAdjointContributionIncompressible::tangentVelocitySource(), boundaryAdjointContributionIncompressible::TMVariable1(), boundaryAdjointContributionIncompressible::TMVariable1Diffusion(), boundaryAdjointContributionIncompressible::TMVariable2(), boundaryAdjointContributionIncompressible::TMVariable2Diffusion(), boundaryAdjointContributionIncompressible::turbulentDiffusivity(), boundaryAdjointContributionIncompressible::Uab(), boundaryAdjointContributionIncompressible::Ub(), energyJumpAMIFvPatchScalarField::updateCoeffs(), energyJumpFvPatchScalarField::updateCoeffs(), vibrationShellFvPatchScalarField::updateCoeffs(), totalFlowRateAdvectiveDiffusiveFvPatchScalarField::updateCoeffs(), thermalShellFvPatchScalarField::updateCoeffs(), filmPyrolysisRadiativeCoupledMixedFvPatchScalarField::updateCoeffs(), kLowReWallFunctionFvPatchScalarField::updateCoeffs(), velocityFilmShellFvPatchVectorField::updateCoeffs(), boundaryAdjointContributionIncompressible::velocitySource(), and boundaryAdjointContributionIncompressible::wallDistance().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ boundaryMesh()

const fvBoundaryMesh& boundaryMesh ( ) const
inlinenoexcept

◆ patchSlice()

const List<T>::subList patchSlice ( const List< T > &  l) const
inline

Slice List to patch, using the virtual patch size.

Definition at line 267 of file fvPatch.H.

References fvPatch::size(), and fvPatch::start().

Referenced by fvFieldDecomposer::reset().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ patchRawSlice()

const List<T>::subList patchRawSlice ( const List< T > &  l) const
inline

Slice List to patch, using the underlying polyPatch information.

Definition at line 277 of file fvPatch.H.

References polyPatch::start().

Here is the call graph for this function:

◆ faceCells()

const Foam::labelUList & faceCells ( ) const
virtual

◆ Cf()

const Foam::vectorField & Cf ( ) const

Return face centres.

Definition at line 113 of file fvPatch.C.

References boundaryMesh::mesh().

Referenced by fieldExtents::calcFieldExtents(), meshToMesh0::interpolate(), cyclicAMIFvPatch::movePoints(), and cyclicACMIFvPatch::resetPatchAreas().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ Cn()

Foam::tmp< Foam::vectorField > Cn ( ) const

Return neighbour cell centres.

Definition at line 119 of file fvPatch.C.

References mesh.

◆ Sf()

const Foam::vectorField & Sf ( ) const

Return face area vectors.

Definition at line 131 of file fvPatch.C.

References boundaryMesh::mesh().

Referenced by cyclicAMIFvPatch::movePoints(), cyclicACMIFvPatch::resetPatchAreas(), activeBaffleVelocityFvPatchVectorField::updateCoeffs(), and activePressureForceBaffleVelocityFvPatchVectorField::updateCoeffs().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ magSf()

const Foam::scalarField & magSf ( ) const

◆ nf()

Foam::tmp< Foam::vectorField > nf ( ) const

◆ delta()

Foam::tmp< Foam::vectorField > delta ( ) const
virtual

Return cell-centre to face-centre vector except for coupled patches for which the cell-centre to coupled-cell-centre vector is returned.

Reimplemented in cyclicAMIFvPatch, cyclicACMIFvPatch, cyclicFvPatch, processorFvPatch, and coupledFvPatch.

Definition at line 143 of file fvPatch.C.

◆ weights()

const Foam::scalarField & weights ( ) const

Return patch weighting factors.

Definition at line 183 of file fvPatch.C.

References boundaryMesh::mesh().

Here is the call graph for this function:

◆ deltaCoeffs()

const Foam::scalarField & deltaCoeffs ( ) const

Return the face - cell distance coefficient except for coupled patches for which the cell-centre to coupled-cell-centre distance coefficient is returned.

Definition at line 177 of file fvPatch.C.

References boundaryMesh::mesh().

Referenced by contactAngleForce::correct(), totalFlowRateAdvectiveDiffusiveFvPatchScalarField::updateCoeffs(), filmPyrolysisRadiativeCoupledMixedFvPatchScalarField::updateCoeffs(), turbulentTemperatureRadCoupledMixedFvPatchScalarField::updateCoeffs(), and humidityTemperatureCoupledMixedFvPatchScalarField::updateCoeffs().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ patchInternalField() [1/6]

void patchInternalField ( const UList< Type > &  f,
const labelUList faceCells,
Field< Type > &  pfld 
) const
inline

Extract internal field next to patch using faceCells mapping.

Definition at line 28 of file fvPatchTemplates.C.

References f(), forAll, and List< Type >::resize().

Here is the call graph for this function:

◆ patchInternalField() [2/6]

tmp<Field<Type> > patchInternalField ( const UList< Type > &  ) const

Return given internal field next to patch as patch field.

◆ patchInternalField() [3/6]

tmp<Field<Type> > patchInternalField ( const UList< Type > &  f,
const labelUList faceCells 
) const

Return given internal field next to patch as patch field using provided addressing.

◆ patchInternalField() [4/6]

void patchInternalField ( const UList< Type > &  f,
Field< Type > &  pfld 
) const

Return given internal field next to patch as patch field.

Definition at line 70 of file fvPatchTemplates.C.

References f().

Here is the call graph for this function:

◆ patchField()

const GeometricField::Patch & patchField ( const GeometricField gf) const

Return the patch field of the GeometricField corresponding to this patch.

Definition at line 81 of file fvPatchTemplates.C.

References GeometricField< Type, PatchField, GeoMesh >::boundaryField().

Referenced by porousBafflePressureFvPatchField< Type >::updateCoeffs().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ lookupPatchField()

const GeometricField::Patch & lookupPatchField ( const word name,
const GeometricField = nullptr,
const AnyType *  = nullptr 
) const

Lookup the named field from the local registry and return the patch field corresponding to this patch.

N.B. The dummy pointer arguments are used if this function is instantiated within a templated function to avoid a bug in gcc.

Definition at line 28 of file fvPatchFvMeshTemplates.C.

References boundaryMesh::mesh(), and Foam::name().

Referenced by enthalpySorptionFvPatchScalarField::patchSource(), semiPermeableBaffleMassFractionFvPatchScalarField::phiY(), totalFlowRateAdvectiveDiffusiveFvPatchScalarField::updateCoeffs(), mappedFlowRateFvPatchVectorField::updateCoeffs(), filmPyrolysisRadiativeCoupledMixedFvPatchScalarField::updateCoeffs(), porousBafflePressureFvPatchField< Type >::updateCoeffs(), turbulentTemperatureRadCoupledMixedFvPatchScalarField::updateCoeffs(), and humidityTemperatureCoupledMixedFvPatchScalarField::updateCoeffs().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ patchInternalField() [5/6]

Foam::tmp<Foam::Field<Type> > patchInternalField ( const UList< Type > &  f) const

Definition at line 45 of file fvPatchTemplates.C.

References f(), and Foam::New().

Here is the call graph for this function:

◆ patchInternalField() [6/6]

Foam::tmp<Foam::Field<Type> > patchInternalField ( const UList< Type > &  f,
const labelUList faceCells 
) const

Definition at line 57 of file fvPatchTemplates.C.

References f(), and Foam::New().

Here is the call graph for this function:

Friends And Related Function Documentation

◆ fvBoundaryMesh

friend class fvBoundaryMesh
friend

Definition at line 138 of file fvPatch.H.

◆ surfaceInterpolation

friend class surfaceInterpolation
friend

Definition at line 139 of file fvPatch.H.


The documentation for this class was generated from the following files: