mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
49 lines
1.4 KiB
C++
49 lines
1.4 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: v1812 |
|
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2;
|
|
format ascii;
|
|
class volScalarField;
|
|
location "0";
|
|
object epsilon;
|
|
}
|
|
|
|
dimensions [ 0 2 -3 0 0 0 0 ];
|
|
|
|
internalField uniform 200;
|
|
|
|
boundaryField
|
|
{
|
|
inletair
|
|
{
|
|
type turbulentMixingLengthDissipationRateInlet;
|
|
mixingLength 0.005;
|
|
phi phi;
|
|
k k;
|
|
value uniform 200;
|
|
}
|
|
outlet
|
|
{
|
|
type inletOutlet;
|
|
inletValue uniform 200;
|
|
value uniform 200;
|
|
}
|
|
walls
|
|
{
|
|
type epsilonWallFunction;
|
|
Cmu 0.09;
|
|
kappa 0.41;
|
|
E 9.8;
|
|
value uniform 200;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|