Files
OpenFOAM-12/etc/caseDicts/annotated/mirrorMeshDict
2019-09-25 13:27:07 +01:00

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;
// ************************************************************************* //