The entries for liquid and solid species can now be simply be the name unless
property coefficients are overridden in which are specified in a dictionary as
before e.g. in the tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek case
the water is simply specified
liquids
{
H2O;
}
and solid ash uses standard coefficients but the coefficients for carbon are
overridden thus
solids
{
C
{
rho 2010;
Cp 710;
kappa 0.04;
Hf 0;
emissivity 1.0;
}
ash;
}
47 lines
1.3 KiB
C++
47 lines
1.3 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: dev |
|
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
location "constant";
|
|
object thermophysicalProperties;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
thermoType
|
|
{
|
|
type heRhoThermo;
|
|
mixture reactingMixture;
|
|
transport polynomial;
|
|
thermo hPolynomial;
|
|
energy sensibleEnthalpy;
|
|
equationOfState icoPolynomial;
|
|
specie specie;
|
|
}
|
|
|
|
chemistryReader foamChemistryReader;
|
|
|
|
foamChemistryFile "$FOAM_CASE/constant/reactions";
|
|
|
|
foamChemistryThermoFile "$FOAM_CASE/constant/thermo.incompressiblePoly";
|
|
|
|
inertSpecie air;
|
|
|
|
liquids
|
|
{
|
|
H2O;
|
|
}
|
|
|
|
solids
|
|
{}
|
|
|
|
|
|
// ************************************************************************* //
|