Skip to content
Snippets Groups Projects
Commit 180cb0bb authored by laurence's avatar laurence
Browse files

ENH: cvMesh: Construct cvMesh object after checkGeometry

parent 622f06c6
Branches
Tags
No related merge requests found
......@@ -64,14 +64,22 @@ int main(int argc, char *argv[])
)
);
conformalVoronoiMesh::debug = true;
conformalVoronoiMesh mesh(runTime, cvMeshDict);
if (checkGeometry)
{
const searchableSurfaces& allGeometry = mesh.allGeometry();
const searchableSurfaces allGeometry
(
IOobject
(
"cvSearchableSurfaces",
runTime.constant(),
"triSurface",
runTime,
IOobject::MUST_READ,
IOobject::NO_WRITE
),
cvMeshDict.subDict("geometry")
);
// Write some stats
allGeometry.writeStats(List<wordList>(0), Info);
......@@ -91,6 +99,11 @@ int main(int argc, char *argv[])
}
conformalVoronoiMesh::debug = true;
conformalVoronoiMesh mesh(runTime, cvMeshDict);
while (runTime.loop())
{
Info<< nl << "Time = " << runTime.timeName() << endl;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment