Mixing plane updates

This commit is contained in:
Hrvoje Jasak 2012-09-03 13:20:50 +01:00
parent 2a489f6a0a
commit 2a4dd8d1b7
4 changed files with 44 additions and 26 deletions

View file

@ -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

View file

@ -217,7 +217,7 @@ Foam::mixingPlanePolyPatch::mixingPlanePolyPatch
)
:
coupledPolyPatch(name, size, start, index, bm),
shadowName_("_initialize_me_"),
shadowName_(fileName::null),
csPtr_
(
new coordinateSystem

View file

@ -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();