Files
openfoam/tutorials/lagrangian/reactingHeterogenousParcelFoam/constant/thermophysicalProperties
sergio 25575df60e ENH: new ReactingHeterogeneousCloud
- number of particles per parcel info to kinematic cloud

- added turbulent dispersion to basicHeterogeneousReactingParcel

- corrected dhsTrans in MUCSheterogeneousRate::calculate

- added cloud macro system to reactingParcelFoam and fixed calculation
  of average particles per parcel

- added progress variable dimension to reacting model (nF)

- added ReactingHeterogeneous tutorial
2019-01-04 17:08:53 -08:00

74 lines
1.9 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1806 |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
location "constant";
object thermophysicalProperties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
thermoType
{
type heRhoThermo;
mixture reactingMixture;
transport sutherland;
thermo janaf;
energy sensibleEnthalpy;
equationOfState perfectGas;
specie specie;
}
chemistryReader foamChemistryReader;
foamChemistryFile "<constant>/foam.inp";
foamChemistryThermoFile "<constant>/foam.dat";
inertSpecie N2;
liquids
{}
solids
{
Fe3O4
{
defaultCoeffs no;
Fe3O4Coeffs
{
rho 5100;
Cp 850;
kappa 0.04;
Hf 0;
emissivity 1.0;
W 232;
}
}
Fe2O3
{
defaultCoeffs no;
Fe2O3Coeffs
{
rho 5100;
Cp 710;
kappa 0.04;
Hf 525e3; //Heat of reaction HfProd - HfFuel
emissivity 1.0;
W 159; //Kg/Kmole
}
}
}
// ************************************************************************* //