mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
52 lines
1.4 KiB
C++
52 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 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
|
|
{
|
|
defaultCoeffs yes;
|
|
}
|
|
}
|
|
|
|
solids
|
|
{
|
|
// none
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|