psiReactionThermo.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::psiReactionThermo
26 
27 Description
28  Base-class for multi-component fluid thermodynamic properties based on
29  compressibility.
30 
31 See also
32  Foam::basicThermo
33 
34 SourceFiles
35  psiReactionThermo.C
36 
37 \*---------------------------------------------------------------------------*/
38 
39 #ifndef psiReactionThermo_H
40 #define psiReactionThermo_H
41 
42 #include "psiThermo.H"
43 #include "fluidReactionThermo.H"
44 
45 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
46 
47 namespace Foam
48 {
49 
50 /*---------------------------------------------------------------------------*\
51  Class psiReactionThermo Declaration
52 \*---------------------------------------------------------------------------*/
53 
55 :
56  virtual public psiThermo,
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("psiReactionThermo");
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 ~psiReactionThermo();
97 };
98 
99 
100 /*---------------------------------------------------------------------------*\
101  Class psiReactionThermo::implementation Declaration
102 \*---------------------------------------------------------------------------*/
105 :
106  virtual public psiReactionThermo
107 {
108 public:
109 
110  // Constructors
111 
112  //- Construct from mesh and phase name
113  implementation(const fvMesh&, const word& phaseName);
114 
115 
116  //- Destructor
117  virtual ~implementation();
118 };
119 
120 
121 /*---------------------------------------------------------------------------*\
122  Class psiReactionThermo::composite Declaration
123 \*---------------------------------------------------------------------------*/
126 :
132 {
133 public:
134 
135  // Constructors
136 
137  //- Construct from mesh and phase name
139  (
140  const fvMesh& mesh,
141  const word& phaseName
142  )
143  :
144  basicThermo::implementation(mesh, phaseName),
145  fluidThermo::implementation(mesh, phaseName),
146  psiThermo::implementation(mesh, phaseName),
147  fluidReactionThermo::implementation(mesh, phaseName),
148  psiReactionThermo::implementation(mesh, phaseName)
149  {}
150 };
151 
152 
153 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
154 
155 } // End namespace Foam
156 
157 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
158 
159 #endif
160 
161 // ************************************************************************* //
Base-class for fluid and solid thermodynamic properties.
Definition: basicThermo.H:77
static autoPtr< psiReactionThermo > New(const fvMesh &, const word &phaseName=word::null)
Standard selection based on fvMesh.
Base-class for multi-component fluid thermodynamic properties.
fvMesh & mesh
virtual const word & phaseName() const =0
Phase name.
declareRunTimeSelectionTable(autoPtr, psiReactionThermo, fvMesh,(const fvMesh &mesh, const word &phaseName),(mesh, phaseName))
Declare run-time constructor selection tables.
A class for handling words, derived from string.
Definition: word.H:59
Base-class for fluid thermodynamic properties.
Definition: fluidThermo.H:53
static const word null
An empty word.
Definition: word.H:77
virtual ~psiReactionThermo()
Destructor.
TypeName("psiReactionThermo")
Runtime type information.
Base-class for multi-component fluid thermodynamic properties based on compressibility.
Mesh data needed to do the Finite Volume discretisation.
Definition: fvMesh.H:95
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition: PtrList.H:52
Base-class for fluid thermodynamic properties based on compressibility.
Definition: psiThermo.H:51
Namespace for OpenFOAM.