51 lines
1.3 KiB
Text
51 lines
1.3 KiB
Text
/*---------------------------------------------------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: 1.4 |
|
|
| \\ / A nd | Web: http://www.openfoam.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
// Field Dictionary
|
|
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
|
|
root "boundaryFoam";
|
|
case "boundaryWallFunctions";
|
|
instance "0";
|
|
local "";
|
|
|
|
class volScalarField;
|
|
object k;
|
|
}
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
|
|
dimensions [0 2 -2 0 0 0 0];
|
|
|
|
internalField uniform 0.375;
|
|
|
|
boundaryField
|
|
{
|
|
lowerWall
|
|
{
|
|
type zeroGradient;
|
|
}
|
|
|
|
upperWall
|
|
{
|
|
type zeroGradient;
|
|
}
|
|
|
|
defaultFaces
|
|
{
|
|
type empty;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|