This repository has been archived on 2023-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
foam-extend4.1-coherent-io/applications/utilities/mesh/manipulation/mirrorMesh/readMirrorDict.H

20 lines
412 B
C++

Info<< "Reading mirrorMeshDict\n" << endl;
IOdictionary mirrorMeshDict
(
IOobject
(
"mirrorMeshDict",
runTime.system(),
mesh,
IOobject::MUST_READ,
IOobject::NO_WRITE
)
);
plane mirrorPlane(mirrorMeshDict);
scalar planeTolerance
(
readScalar(mirrorMeshDict.lookup("planeTolerance"))
);