71 lines
1.9 KiB
C++
71 lines
1.9 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: 1.7.1 |
|
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class volScalarField;
|
|
location "0";
|
|
object epsilon;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
dimensions [0 2 -3 0 0 0 0];
|
|
|
|
internalField uniform 50.0;
|
|
|
|
boundaryField
|
|
{
|
|
mainjet
|
|
{
|
|
type turbulentMixingLengthDissipationRateInlet;
|
|
mixingLength 5.04e-4; // turbulent mixing length or turbulence length scale = 0.07*dh
|
|
value uniform 200; // placeholder
|
|
}
|
|
pilot
|
|
{
|
|
type turbulentMixingLengthDissipationRateInlet;
|
|
mixingLength 7.35e-4; // turbulent mixing length or turbulence length scale = 0.07*dh
|
|
value uniform 200; // placeholder
|
|
}
|
|
coflow
|
|
{
|
|
type turbulentMixingLengthDissipationRateInlet;
|
|
mixingLength 0.0197; // turbulent mixing length or turbulence length scale = 0.07*dh
|
|
value uniform 200; // placeholder
|
|
}
|
|
outlet
|
|
{
|
|
type zeroGradient;
|
|
|
|
}
|
|
burnerwall
|
|
{
|
|
type epsilonWallFunction;
|
|
value uniform 0.0;
|
|
}
|
|
slipwall
|
|
{
|
|
type slip;
|
|
}
|
|
axis
|
|
{
|
|
type symmetryPlane;
|
|
}
|
|
front
|
|
{
|
|
type wedge;
|
|
}
|
|
back
|
|
{
|
|
type wedge;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|