55 lines
1.2 KiB
C++
55 lines
1.2 KiB
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 physicalProperties;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
thermoType
|
|
{
|
|
type heRhoThermo;
|
|
mixture multicomponentMixture;
|
|
transport sutherland;
|
|
thermo janaf;
|
|
energy sensibleEnthalpy;
|
|
equationOfState perfectGas;
|
|
specie specie;
|
|
}
|
|
|
|
#include "speciesThermo"
|
|
|
|
defaultSpecie N2;
|
|
|
|
liquids
|
|
{
|
|
H2O;
|
|
}
|
|
|
|
solids
|
|
{
|
|
C
|
|
{
|
|
rho 2010;
|
|
Cp 710;
|
|
kappa 0.04;
|
|
hf 0;
|
|
emissivity 1.0;
|
|
}
|
|
|
|
ash;
|
|
|
|
CaCO3;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|