Merge branch 'master' of ssh://noisy/home/noisy3/OpenFOAM/OpenFOAM-dev
This commit is contained in:
commit
ecbdccf2b1
@ -53,7 +53,7 @@ class inverseDistanceDiffusivity
|
||||
// Private data
|
||||
|
||||
//- Patches selected to base the distance on
|
||||
// These can contain regular expressions and the actuallt patch names
|
||||
// These can contain regular expressions and the actual patch names
|
||||
// will be searched for.
|
||||
wordList patchNames_;
|
||||
|
||||
|
@ -680,6 +680,30 @@ Foam::PointEdgeWave<Type>::PointEdgeWave
|
||||
}
|
||||
|
||||
|
||||
template <class Type>
|
||||
Foam::PointEdgeWave<Type>::PointEdgeWave
|
||||
(
|
||||
const polyMesh& mesh,
|
||||
List<Type>& allPointInfo,
|
||||
List<Type>& allEdgeInfo
|
||||
)
|
||||
:
|
||||
mesh_(mesh),
|
||||
allPointInfo_(allPointInfo),
|
||||
allEdgeInfo_(allEdgeInfo),
|
||||
changedPoint_(mesh_.nPoints(), false),
|
||||
changedPoints_(mesh_.nPoints()),
|
||||
nChangedPoints_(0),
|
||||
changedEdge_(mesh_.nEdges(), false),
|
||||
changedEdges_(mesh_.nEdges()),
|
||||
nChangedEdges_(0),
|
||||
nCyclicPatches_(countPatchType<cyclicPolyPatch>()),
|
||||
nEvals_(0),
|
||||
nUnvisitedPoints_(mesh_.nPoints()),
|
||||
nUnvisitedEdges_(mesh_.nEdges())
|
||||
{}
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
|
||||
|
||||
template <class Type>
|
||||
|
@ -275,6 +275,15 @@ public:
|
||||
const label maxIter
|
||||
);
|
||||
|
||||
//- Construct from mesh. Use setPointInfo and iterate() to do
|
||||
// actual calculation
|
||||
PointEdgeWave
|
||||
(
|
||||
const polyMesh& mesh,
|
||||
List<Type>& allPointInfo,
|
||||
List<Type>& allEdgeInfo
|
||||
);
|
||||
|
||||
|
||||
//- Destructor
|
||||
~PointEdgeWave();
|
||||
|
Loading…
Reference in New Issue
Block a user