Mixing plane updates
This commit is contained in:
parent
2a489f6a0a
commit
2a4dd8d1b7
4 changed files with 44 additions and 26 deletions
|
@ -107,6 +107,15 @@ public:
|
|||
|
||||
// Member Functions
|
||||
|
||||
// Access
|
||||
|
||||
//- Return true if interface is coupled
|
||||
virtual bool coupled() const
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
// Agglomeration
|
||||
|
||||
//- Agglomerating the given fine-level coefficients and return
|
||||
|
|
|
@ -217,7 +217,7 @@ Foam::mixingPlanePolyPatch::mixingPlanePolyPatch
|
|||
)
|
||||
:
|
||||
coupledPolyPatch(name, size, start, index, bm),
|
||||
shadowName_("_initialize_me_"),
|
||||
shadowName_(fileName::null),
|
||||
csPtr_
|
||||
(
|
||||
new coordinateSystem
|
||||
|
|
|
@ -112,6 +112,15 @@ protected:
|
|||
|
||||
// Protected Member functions
|
||||
|
||||
//- Is the mixing plane active? (zone and shadow present)
|
||||
// bool active() const;
|
||||
|
||||
//- Initialise the calculation of the patch addressing
|
||||
virtual void initAddressing();
|
||||
|
||||
//- Calculate the patch addressing
|
||||
virtual void calcAddressing();
|
||||
|
||||
//- Initialise the calculation of the patch geometry
|
||||
virtual void initGeometry();
|
||||
|
||||
|
|
Reference in a new issue