Mixture classes (e.g., pureMixtrure, coefficientMulticomponentMixture), now have no fvMesh or volScalarField dependence. They operate on primitive values only. All the fvMesh-dependent functionality has been moved into the base thermodynamic classes. The 'composition()' access function has been removed from multi-component thermo models. Functions that were once provided by composition base classes such as basicSpecieMixture and basicCombustionMixture are now implemented directly in the relevant multi-component thermo base class.
32 lines
859 B
C++
32 lines
859 B
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 pureMixture;
|
|
properties liquid;
|
|
energy sensibleInternalEnergy;
|
|
}
|
|
|
|
mixture
|
|
{
|
|
H2O;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|