Files
openfoam/tutorials/incompressible/simpleFoam/backwardFacingStep2D/0/epsilon
2018-06-22 15:25:06 +01:00

54 lines
1.4 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: plus |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0";
object epsilon;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -3 0 0 0 0];
internalField uniform 17.83;
boundaryField
{
inlet
{
type fixedValue;
value $internalField;
}
outlet
{
type zeroGradient;
}
"(lowerWallStartup|upperWallStartup)"
{
type symmetryPlane;
}
"(upperWall|lowerWall)"
{
type epsilonWallFunction;
value $internalField;
}
"(front|back)"
{
type empty;
}
}
// ************************************************************************* //