42 lines
1.2 KiB
C++
42 lines
1.2 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: v2412 |
|
|
| \\ / A nd | Website: www.openfoam.com |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
object turbulenceProperties;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
simulationType RAS;
|
|
|
|
RAS
|
|
{
|
|
RASModel PDRkEpsilon;
|
|
|
|
PDRkEpsilonCoeffs
|
|
{
|
|
Cmu 0.09;
|
|
C1 1.44;
|
|
C2 1.92;
|
|
C3 0;
|
|
C4 0.1;
|
|
alphah 1;
|
|
alphak 1;
|
|
alphaEps 0.76923;
|
|
}
|
|
|
|
turbulence on;
|
|
|
|
printCoeffs on;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|