Resolves contribution https://bugs.openfoam.org/view.php?id=3342 Patch provided by Gerhard Holzinger
44 lines
1.0 KiB
C++
44 lines
1.0 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Version: dev
|
|
\\/ M anipulation |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
object mirrorMeshDict;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
planeType pointAndNormal; // planeEquation // embeddedPoints
|
|
|
|
pointAndNormalDict
|
|
{
|
|
basePoint (0 0 0);
|
|
normalVector (0 1 0);
|
|
}
|
|
|
|
// 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;
|
|
|
|
// ************************************************************************* //
|