uRhoMulticomponentThermo.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2025-2026 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
11  OpenFOAM is free software: you can redistribute it and/or modify it
12  under the terms of the GNU General Public License as published by
13  the Free Software Foundation, either version 3 of the License, or
14  (at your option) any later version.
15 
16  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19  for more details.
20 
21  You should have received a copy of the GNU General Public License
22  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
23 
24 Class
25  Foam::uRhoMulticomponentThermo
26 
27 Description
28  Base-class for combustion fluid thermodynamic properties based on
29  compressibility.
30 
31 See also
32  Foam::basicThermo
33 
34 SourceFiles
35  uRhoMulticomponentThermo.C
36 
37 \*---------------------------------------------------------------------------*/
38 
39 #ifndef uRhoMulticomponentThermo_H
40 #define uRhoMulticomponentThermo_H
41 
42 #include "rhoFluidThermo.H"
45 
46 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
47 
48 namespace Foam
49 {
50 
51 /*---------------------------------------------------------------------------*\
52  Class uRhoMulticomponentThermo Declaration
53 \*---------------------------------------------------------------------------*/
54 
56 :
57  virtual public rhoFluidThermo,
58  virtual public fluidMulticomponentThermo
59 {
60 
61 public:
62 
63  // Public Classes
64 
65  //- Forward declare the composite class
66  class composite;
67 
68 
69  // Public Typedefs
70 
71  //- The derived type
72  template<class MixtureType>
74  <
76  <
78  <
80  >
81  >
82  >;
83 
84  //- The derived name
85  static const word derivedThermoName()
86  {
87  return "uRhoThermo";
88  }
89 
90 
91  //- Runtime type information
92  TypeName("uRhoMulticomponentThermo");
93 
94 
95  // Declare run-time constructor selection tables
96 
98  (
99  autoPtr,
101  fvMesh,
102  (const fvMesh& mesh, const word& phaseName),
103  (mesh, phaseName)
104  );
105 
106 
107  // Selectors
108 
109  //- Standard selection based on fvMesh
111  (
112  const fvMesh&,
113  const word& phaseName=word::null
114  );
115 
116 
117  //- Destructor
118  virtual ~uRhoMulticomponentThermo();
119 
120 
121  // Member Functions
122 
123  //- Return the fuel-oxidant equivalence ratio
124  virtual tmp<volScalarField> Phi() const = 0;
125 
126  //- Reset the mixture to an unburnt state and update EGR
127  virtual void reset
128  (
129  volScalarField& b,
130  volScalarField& c,
131  const volScalarField& heb
132  ) = 0;
133 
134  //- Standard enthalpy of formation [J/kg]
135  virtual tmp<volScalarField> hf() const = 0;
136 };
137 
138 
139 /*---------------------------------------------------------------------------*\
140  Class uRhoMulticomponentThermo::composite Declaration
141 \*---------------------------------------------------------------------------*/
142 
144 :
150 {
151 public:
152 
153  // Constructors
154 
155  //- Construct from dictionary, mesh and phase name
156  template<class MixtureType>
157  composite
158  (
159  const dictionary& dict,
160  const MixtureType& mixture,
161  const fvMesh& mesh,
162  const word& phaseName
163  )
164  :
169  (
170  dict,
171  mixture.species(),
172  mesh,
173  phaseName,
174  false
175  )
176  {}
177 };
178 
179 
180 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
181 
182 } // End namespace Foam
183 
184 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
185 
186 #endif
187 
188 // ************************************************************************* //
Thermo implementation and storage of energy and heat capacities. Provides overloads of the functions ...
Definition: BasicThermo.H:66
Fluid multi-component thermo implementation.
Generic GeometricField class.
Multi-component thermo implementation.
Thermo implementation based on density.
Thermo implementation based on compressibility with additional unburnt thermodynamic state.
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition: autoPtr.H:51
virtual const fvMesh & mesh() const
Return const access to the mesh.
Definition: basicThermo.H:539
virtual const word & phaseName() const
Phase name.
Definition: basicThermo.H:545
Base-class for fluid and solid thermodynamic properties.
Definition: basicThermo.H:78
virtual const fvMesh & mesh() const =0
Return const access to the mesh.
virtual const word & phaseName() const =0
Phase name.
A list of keywords followed by any number of values (e.g. words and numbers) or sub-dictionaries.
Definition: dictionary.H:162
Base-class for multi-component fluid thermodynamic properties.
Base-class for fluid thermodynamic properties.
Definition: fluidThermo.H:56
Mesh data needed to do the Finite Volume discretisation.
Definition: fvMesh.H:98
Base-class for multi-component thermodynamic properties.
virtual const speciesTable & species() const =0
Return the table of species.
Base-class for fluid thermodynamic properties based on density.
Base-class for thermodynamic properties based on density.
Definition: rhoThermo.H:54
A class for managing temporary objects.
Definition: tmp.H:55
composite(const dictionary &dict, const MixtureType &mixture, const fvMesh &mesh, const word &phaseName)
Construct from dictionary, mesh and phase name.
Base-class for combustion fluid thermodynamic properties based on compressibility.
TypeName("uRhoMulticomponentThermo")
Runtime type information.
static const word derivedThermoName()
The derived name.
declareRunTimeSelectionTable(autoPtr, uRhoMulticomponentThermo, fvMesh,(const fvMesh &mesh, const word &phaseName),(mesh, phaseName))
virtual ~uRhoMulticomponentThermo()
Destructor.
static autoPtr< uRhoMulticomponentThermo > New(const fvMesh &, const word &phaseName=word::null)
Standard selection based on fvMesh.
virtual tmp< volScalarField > Phi() const =0
Return the fuel-oxidant equivalence ratio.
virtual tmp< volScalarField > hf() const =0
Standard enthalpy of formation [J/kg].
virtual void reset(volScalarField &b, volScalarField &c, const volScalarField &heb)=0
Reset the mixture to an unburnt state and update EGR.
A class for handling words, derived from string.
Definition: word.H:63
static const word null
An empty word.
Definition: word.H:78
volScalarField & b
Definition: createFields.H:27
const dimensionedScalar c
Speed of light in a vacuum.
Namespace for OpenFOAM.
dictionary dict