45 lines
1.3 KiB
C++
45 lines
1.3 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM Extend Project: Open Source CFD |
|
|
| \\ / O peration | Version: 1.6-ext |
|
|
| \\ / A nd | Web: www.extend-project.de |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
location "constant";
|
|
object thermophysicalProperties;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
thermoType hsPsiMixtureThermo<reactingMixture<gasThermoPhysics>>;
|
|
|
|
chemistryReader foamChemistryReader;
|
|
|
|
foamChemistryThermoFile "$FOAM_CASE/chemkin/foam.dat";
|
|
|
|
foamChemistryFile "$FOAM_CASE/chemkin/foam.inp";
|
|
|
|
inertSpecie N2;
|
|
|
|
liquidComponents
|
|
(
|
|
H2O
|
|
);
|
|
|
|
H2O H2O defaultCoeffs;
|
|
|
|
solidComponents
|
|
(
|
|
C
|
|
ash
|
|
);
|
|
|
|
C C defaultCoeffs;
|
|
|
|
ash ash defaultCoeffs;
|
|
|
|
// ************************************************************************* //
|