OpenFOAM-4.x/tutorials/incompressible/pimpleFoam/TJunctionFan/0.orig/epsilon
2016-06-28 11:59:45 +01:00

53 lines
1.5 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 4.x |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0";
object epsilon;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [m^2 s^-3];
internalField uniform 200;
boundaryField
{
inlet
{
type turbulentMixingLengthDissipationRateInlet;
mixingLength 0.01;
value uniform 200;
}
outlet1
{
type inletOutlet;
inletValue uniform 200;
value uniform 200;
}
outlet2
{
type inletOutlet;
inletValue uniform 200;
value uniform 200;
}
defaultFaces
{
type epsilonWallFunction;
Cmu 0.09;
kappa 0.41;
E 9.8;
value uniform 200;
}
}
// ************************************************************************* //