Added virtual nf function directly from cut patch
This commit is contained in:
parent
ec3b5f5574
commit
b7dffa272f
1 changed files with 13 additions and 0 deletions
|
@ -120,6 +120,9 @@ protected:
|
|||
|
||||
// Discretisation correction functions
|
||||
|
||||
//- Make patch face - neighbour cell distances
|
||||
virtual void makeDeltaCoeffs(fvsPatchScalarField&) const;
|
||||
|
||||
//- Make patch face non-orthogonality correction vectors
|
||||
virtual void makeCorrVecs(fvsPatchVectorField&) const;
|
||||
|
||||
|
@ -170,6 +173,16 @@ public:
|
|||
virtual const unallocLabelList& faceCells() const;
|
||||
|
||||
|
||||
// Access functions for geometrical data
|
||||
|
||||
//- Return face normals
|
||||
virtual tmp<vectorField> nf() const;
|
||||
|
||||
|
||||
//- Return cell-centre to face-centre vector
|
||||
virtual tmp<vectorField> delta() const;
|
||||
|
||||
|
||||
// Access to immersed boundary components
|
||||
|
||||
//- Return reference to immersed boundary polyPatch
|
||||
|
|
Reference in a new issue