mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Sprucing up the tutorials folder and adding -dict to "collapseEdges"
Patch provided by Bruno Santos Resolves patch application request http://www.openfoam.org/mantisbt/view.php?id=2015
This commit is contained in:
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2012-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2012-2016 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -946,6 +946,24 @@ Foam::polyMeshFilter::polyMeshFilter
|
||||
writeSettings(Info);
|
||||
}
|
||||
|
||||
Foam::polyMeshFilter::polyMeshFilter
|
||||
(
|
||||
const fvMesh& mesh,
|
||||
const labelList& pointPriority,
|
||||
const dictionary& dict
|
||||
)
|
||||
:
|
||||
polyMeshFilterSettings(dict),
|
||||
mesh_(mesh),
|
||||
newMeshPtr_(),
|
||||
originalPointPriority_(pointPriority),
|
||||
pointPriority_(),
|
||||
minEdgeLen_(),
|
||||
faceFilterFactor_()
|
||||
{
|
||||
writeSettings(Info);
|
||||
}
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
|
||||
|
||||
|
||||
@ -207,6 +207,14 @@ public:
|
||||
//- Construct from fvMesh and a label list of point priorities
|
||||
polyMeshFilter(const fvMesh& mesh, const labelList& pointPriority);
|
||||
|
||||
//- Construct from fvMesh and a label list of point priorities
|
||||
polyMeshFilter
|
||||
(
|
||||
const fvMesh& mesh,
|
||||
const labelList& pointPriority,
|
||||
const dictionary& dict
|
||||
);
|
||||
|
||||
|
||||
//- Destructor
|
||||
~polyMeshFilter();
|
||||
@ -257,7 +265,7 @@ public:
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
#ifdef NoRepository
|
||||
#include "polyMeshFilterTemplates.C"
|
||||
# include "polyMeshFilterTemplates.C"
|
||||
#endif
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
Reference in New Issue
Block a user