1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | foam-extend: Open Source CFD
4 \\ / O peration | Version: 3.2
5 \\ / A nd | Web: http://www.foam-extend.org
6 \\/ M anipulation | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
9 This file is part of foam-extend.
11 foam-extend is free software: you can redistribute it and/or modify it
12 under the terms of the GNU General Public License as published by the
13 Free Software Foundation, either version 3 of the License, or (at your
14 option) any later version.
16 foam-extend is distributed in the hope that it will be useful, but
17 WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
25 Foam::hsCombustionThermo
28 Sensible enthalpy variant of combustionThermo
33 \*---------------------------------------------------------------------------*/
35 #ifndef hsCombustionThermo_H
36 #define hsCombustionThermo_H
38 #include "basicPsiThermo.H"
39 #include "basicMultiComponentMixture.H"
41 #include "runTimeSelectionTables.H"
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
48 /*---------------------------------------------------------------------------*\
49 Class hsCombustionThermo Declaration
50 \*---------------------------------------------------------------------------*/
52 class hsCombustionThermo
61 //- Sensible enthalpy field
67 //- Runtime type information
68 TypeName("hsCombustionThermo");
71 //- Declare run-time constructor selection tables
72 declareRunTimeSelectionTable
77 (const fvMesh& mesh, const objectRegistry& obj),
84 //- Construct from dictionary and mesh
85 hsCombustionThermo(const fvMesh&, const objectRegistry&);
90 //- Standard selection based on fvMesh
91 static autoPtr<hsCombustionThermo> New(const fvMesh&, const objectRegistry&);
93 static autoPtr<hsCombustionThermo> New(const fvMesh& mesh)
95 return New(mesh, mesh);
98 //- Select and check that package contains 'thermoType'
99 static autoPtr<hsCombustionThermo> NewType
102 const objectRegistry&,
103 const word& thermoType
108 virtual ~hsCombustionThermo();
113 //- Return the composition of the multi-component mixture
114 virtual basicMultiComponentMixture& composition() = 0;
116 //- Return the composition of the multi-component mixture
117 virtual const basicMultiComponentMixture& composition() const = 0;
120 // Access to thermodynamic state variables
122 //- Sensible enthalpy [J/kg]
123 // Non-const access allowed for transport equations
124 virtual volScalarField& hs()
129 //- Sensible enthalpy [J/kg]
130 virtual const volScalarField& hs() const
136 //- Update properties
137 virtual void correct() = 0;
141 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
143 } // End namespace Foam
145 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
149 // ************************************************************************* //