etc/caseDicts/annotated/mirrorMeshDict: Added examples of planeEquation and embeddedPoints

Resolves contribution https://bugs.openfoam.org/view.php?id=3342
Patch provided by Gerhard Holzinger
This commit is contained in:
Henry Weller
2019-09-25 13:27:07 +01:00
parent 4feee735a3
commit 46e8d22445

View File

@ -14,7 +14,7 @@ FoamFile
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
planeType pointAndNormal;
planeType pointAndNormal; // planeEquation // embeddedPoints
pointAndNormalDict
{
@ -22,6 +22,22 @@ pointAndNormalDict
normalVector (0 1 0);
}
planeTolerance 1e-3;
// Plane equation: ax + by + cz + d = 0
planeEquationDict
{
a 0;
b 1;
c 0;
d 0;
}
embeddedPointsDict
{
point1 (0 0 0);
point2 (1 0 0);
point3 (0 0 1);
}
planeTolerance 1e-3;
// ************************************************************************* //