41 lines
1.2 KiB
C++
41 lines
1.2 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: 2.4.0 |
|
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
location "constant";
|
|
object chemistryProperties;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
chemistryType
|
|
{
|
|
chemistrySolver EulerImplicit; // ode; //
|
|
chemistryThermo psi;
|
|
}
|
|
|
|
chemistry on;
|
|
|
|
initialChemicalTimeStep 1e-10;
|
|
|
|
EulerImplicitCoeffs
|
|
{
|
|
cTauChem 1;
|
|
equilibriumRateLimiter off;
|
|
}
|
|
|
|
odeCoeffs
|
|
{
|
|
solver rodas23;
|
|
absTol 1e-12;
|
|
relTol 0.01;
|
|
}
|
|
|
|
// ************************************************************************* //
|