21 lines
412 B
C
21 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"))
|
||
|
);
|