From 46e8d2244502de60c192a0157c192aa8a1cdd843 Mon Sep 17 00:00:00 2001 From: Henry Weller Date: Wed, 25 Sep 2019 13:27:07 +0100 Subject: [PATCH] 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 --- etc/caseDicts/annotated/mirrorMeshDict | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/etc/caseDicts/annotated/mirrorMeshDict b/etc/caseDicts/annotated/mirrorMeshDict index 35f1a4a9cb..4ac31415df 100644 --- a/etc/caseDicts/annotated/mirrorMeshDict +++ b/etc/caseDicts/annotated/mirrorMeshDict @@ -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; // ************************************************************************* //