rhoReactionThermo.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) 2011-2020 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::rhoReactionThermo
26 
27 Description
28  Base-class for multi-component fluid thermodynamic properties based on
29  density.
30 
31 See also
32  Foam::basicThermo
33 
34 SourceFiles
35  rhoReactionThermo.C
36 
37 \*---------------------------------------------------------------------------*/
38 
39 #ifndef rhoReactionThermo_H
40 #define rhoReactionThermo_H
41 
42 #include "rhoThermo.H"
43 #include "fluidReactionThermo.H"
44 
45 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
46 
47 namespace Foam
48 {
49 
50 /*---------------------------------------------------------------------------*\
51  Class rhoReactionThermo Declaration
52 \*---------------------------------------------------------------------------*/
53 
55 :
56  virtual public rhoThermo,
57  virtual public fluidReactionThermo
58 {
59 public:
60 
61  // Public Classes
62 
63  //- Forward declare the implementation class
64  class implementation;
65 
66  //- Forward declare the composite class
67  class composite;
68 
69 
70  //- Runtime type information
71  TypeName("rhoReactionThermo");
72 
73 
74  //- Declare run-time constructor selection tables
76  (
77  autoPtr,
79  fvMesh,
80  (const fvMesh& mesh, const word& phaseName),
81  (mesh, phaseName)
82  );
83 
84 
85  // Selectors
86 
87  //- Standard selection based on fvMesh
89  (
90  const fvMesh&,
91  const word& phaseName=word::null
92  );
93 
94 
95  //- Destructor
96  virtual ~rhoReactionThermo();
97 };
98 
99 
100 /*---------------------------------------------------------------------------*\
101  Class rhoReactionThermo::implementation Declaration
102 \*---------------------------------------------------------------------------*/
105 :
106  virtual public rhoReactionThermo
107 {
108 
109 public:
110 
111  // Constructors
112 
113  //- Construct from mesh and phase name
114  implementation(const fvMesh&, const word& phaseName);
115 
116 
117  //- Destructor
118  virtual ~implementation();
119 };
120 
121 
122 /*---------------------------------------------------------------------------*\
123  Class rhoReactionThermo::composite Declaration
124 \*---------------------------------------------------------------------------*/
127 :
133 {
134 public:
135 
136  // Constructors
137 
138  //- Construct from mesh and phase name
140  (
141  const fvMesh& mesh,
142  const word& phaseName
143  )
144  :
145  basicThermo::implementation(mesh, phaseName),
146  fluidThermo::implementation(mesh, phaseName),
147  rhoThermo::implementation(mesh, phaseName),
148  fluidReactionThermo::implementation(mesh, phaseName),
149  rhoReactionThermo::implementation(mesh, phaseName)
150  {}
151 };
152 
153 
154 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
155 
156 } // End namespace Foam
157 
158 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
159 
160 #endif
161 
162 // ************************************************************************* //
Base-class for fluid and solid thermodynamic properties.
Definition: basicThermo.H:77
static autoPtr< rhoReactionThermo > New(const fvMesh &, const word &phaseName=word::null)
Standard selection based on fvMesh.
Base-class for multi-component fluid thermodynamic properties.
virtual ~rhoReactionThermo()
Destructor.
fvMesh & mesh
virtual const word & phaseName() const =0
Phase name.
A class for handling words, derived from string.
Definition: word.H:59
Base-class for multi-component fluid thermodynamic properties based on density.
Base-class for fluid thermodynamic properties.
Definition: fluidThermo.H:53
static const word null
An empty word.
Definition: word.H:77
declareRunTimeSelectionTable(autoPtr, rhoReactionThermo, fvMesh,(const fvMesh &mesh, const word &phaseName),(mesh, phaseName))
Declare run-time constructor selection tables.
Mesh data needed to do the Finite Volume discretisation.
Definition: fvMesh.H:95
Base-class for fluid thermodynamic properties based on density.
Definition: rhoThermo.H:52
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition: PtrList.H:52
TypeName("rhoReactionThermo")
Runtime type information.
Namespace for OpenFOAM.