Files
openfoam/tutorials/multiphase/LTSInterFoam/wigleyHull/0/alpha.water.org
Henry 3f5eda25f0 symmetryPlane: add symmetryPlane as a special type of symmetry condition applied to a single plane
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.
2013-12-06 15:45:11 +00:00

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; } }

/ * /