Tutorials have been updated to use the new consistent names within the wall boiling system. The changes are backwards compatible so all tutorials should run both before and after this change.
41 lines
956 B
C++
41 lines
956 B
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Version: dev
|
|
\\/ M anipulation |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
format ascii;
|
|
class dictionary;
|
|
location "constant";
|
|
object chemistryProperties.gas;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
chemistryType
|
|
{
|
|
solver EulerImplicit;
|
|
}
|
|
|
|
chemistry on;
|
|
|
|
initialChemicalTimeStep 1e-07;
|
|
|
|
EulerImplicitCoeffs
|
|
{
|
|
cTauChem 1;
|
|
}
|
|
|
|
odeCoeffs
|
|
{
|
|
solver Rosenbrock43;
|
|
absTol 1e-8;
|
|
relTol 0.01;
|
|
}
|
|
|
|
#include "reactions.vapour"
|
|
|
|
// ************************************************************************* //
|