The standard/previous general symmetry type is now named symmetry
both in class and lookup name for consistency. The rigorous
symmetryPlane type is needed for moving-mesh cases in which the
motion it constrained by one or two planes.
1.3 KiB
/*——————————–- C++ -———————————-*\
======= |
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation |
\*—————————————————————————*/ FoamFile { version 2.0; format ascii; class volScalarField; location "0"; object alpha.water; } / * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * /
dimensions [0 0 0 0 0 0 0];
internalField uniform 0;
boundaryField { inlet { type fixedValue; value $internalField; }
outlet { type zeroGradient; }
sides { type symmetry; }
atmosphere { type inletOutlet; inletValue uniform 0; value $internalField; }
hull_wall { type zeroGradient; } }
/ * /