46 lines
1.4 KiB
C++
46 lines
1.4 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: 2.3.0 |
|
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
location "constant";
|
|
object combustionProperties;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
combustionModel laminar<rhoChemistryCombustion>;
|
|
|
|
active false;
|
|
|
|
laminarCoeffs
|
|
{
|
|
}
|
|
|
|
|
|
EDCCoeffs
|
|
{
|
|
// EDC for RANS/URANS
|
|
underRelaxFineStructures 1.0;
|
|
CD1 2.1377;
|
|
CD2 2.45;
|
|
CD3 0.01;
|
|
gammaStarClipFactor 0.5;
|
|
|
|
// Limiting temperature
|
|
TMin 290;
|
|
TMax 3000;
|
|
|
|
// tolerancies
|
|
absoluteTolerance 1e-5;
|
|
relativeTolerance 1e-5;
|
|
|
|
// maxIterations:
|
|
maxIterations 1e+5;
|
|
}
|