50 lines
1.3 KiB
C++
50 lines
1.3 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: splitCyclic |
|
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class volScalarField;
|
|
location "0";
|
|
object epsilon;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
dimensions [ 0 2 -3 0 0 0 0 ];
|
|
|
|
internalField uniform 1e-08;
|
|
|
|
boundaryField
|
|
{
|
|
lowerWall
|
|
{
|
|
type epsilonWallFunction;
|
|
value uniform 1e-08;
|
|
}
|
|
upperWall
|
|
{
|
|
type epsilonWallFunction;
|
|
value uniform 1e-08;
|
|
}
|
|
frontBack_half0
|
|
{
|
|
type cyclic;
|
|
}
|
|
defaultFaces
|
|
{
|
|
type empty;
|
|
}
|
|
frontBack_half1
|
|
{
|
|
type cyclic;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|