openfoam/tutorials/lagrangian/reactingParcelFoam/airRecirculationRoom/transient/0.orig/k

53 lines
1.4 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2011 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
object k;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -2 0 0 0 0];
internalField uniform 0.0938;
boundaryField
{
"(roof|floor|sideWall|humanBody)"
{
type kqRWallFunction;
value $internalField;
}
"(inlet|mouth)"
{
type fixedValue;
value $internalField;
}
outlet
{
type zeroGradient;
}
"(intake1|intake2|intake3|intake4)"
{
type zeroGradient;
}
"(exhaust_maxX|exhaust_minX|exhaust_maxY|exhaust_minY)"
{
type fixedValue;
value $internalField;
}
}
// ************************************************************************* //