psiMulticomponentThermo.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-2023 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::psiMulticomponentThermo
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  psiMulticomponentThermo.C
36 
37 \*---------------------------------------------------------------------------*/
38 
39 #ifndef psiMulticomponentThermo_H
40 #define psiMulticomponentThermo_H
41 
42 #include "psiThermo.H"
44 
45 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
46 
47 namespace Foam
48 {
49 
50 /*---------------------------------------------------------------------------*\
51  Class psiMulticomponentThermo Declaration
52 \*---------------------------------------------------------------------------*/
53 
55 :
56  virtual public psiThermo,
57  virtual public fluidMulticomponentThermo
58 {
59 public:
60 
61  // Public Classes
62 
63  //- Forward declare the composite class
64  class composite;
65 
66 
67  // Public Typedefs
68 
69  //- The derived type
70  template<class MixtureType>
71  using DerivedThermoType =
73  <
75  <
76  PsiThermo
77  <
79  >
80  >
81  >;
82 
83 
84  //- Runtime type information
85  TypeName("psiMulticomponentThermo");
86 
87 
88  //- Declare run-time constructor selection tables
90  (
91  autoPtr,
93  fvMesh,
94  (const fvMesh& mesh, const word& phaseName),
95  (mesh, phaseName)
96  );
97 
98 
99  // Selectors
100 
101  //- Standard selection based on fvMesh
103  (
104  const fvMesh&,
105  const word& phaseName=word::null
106  );
107 
108 
109  //- Destructor
110  virtual ~psiMulticomponentThermo();
111 };
112 
113 
114 /*---------------------------------------------------------------------------*\
115  Class psiMulticomponentThermo::composite Declaration
116 \*---------------------------------------------------------------------------*/
117 
119 :
125 {
126 public:
127 
128  // Constructors
129 
130  //- Construct from dictionary, mesh and phase name
131  template<class MixtureType>
132  composite
133  (
134  const dictionary& dict,
135  const MixtureType& mixture,
136  const fvMesh& mesh,
137  const word& phaseName
138  )
139  :
144  (
145  dict,
146  mixture.specieNames(),
147  mesh,
148  phaseName
149  )
150  {}
151 };
152 
153 
154 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
155 
156 } // End namespace Foam
157 
158 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
159 
160 #endif
161 
162 // ************************************************************************* //
Thermo implementation and storage of energy and heat capacities. Provides overloads of the functions ...
Definition: BasicThermo.H:66
Fluid multi-component thermo implementation.
Multi-component thermo implementation.
Thermo implementation based on compressibility.
Definition: PsiThermo.H:52
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:496
virtual const word & phaseName() const
Phase name.
Definition: basicThermo.H:502
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 keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:162
Base-class for multi-component fluid thermodynamic properties.
Base-class for fluid thermodynamic properties.
Definition: fluidThermo.H:57
Mesh data needed to do the Finite Volume discretisation.
Definition: fvMesh.H:99
Base-class for multi-component thermodynamic properties.
composite(const dictionary &dict, const MixtureType &mixture, const fvMesh &mesh, const word &phaseName)
Construct from dictionary, mesh and phase name.
Base-class for multi-component fluid thermodynamic properties based on compressibility.
static autoPtr< psiMulticomponentThermo > New(const fvMesh &, const word &phaseName=word::null)
Standard selection based on fvMesh.
virtual ~psiMulticomponentThermo()
Destructor.
TypeName("psiMulticomponentThermo")
Runtime type information.
declareRunTimeSelectionTable(autoPtr, psiMulticomponentThermo, fvMesh,(const fvMesh &mesh, const word &phaseName),(mesh, phaseName))
Declare run-time constructor selection tables.
Base-class for fluid thermodynamic properties based on compressibility.
Definition: psiThermo.H:56
A class for handling words, derived from string.
Definition: word.H:62
static const word null
An empty word.
Definition: word.H:77
Namespace for OpenFOAM.
dictionary dict