BMulticomponentMixture.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) 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::BMulticomponentMixture
26 
27 Description
28  Templated burnt gas combustion multicomponent mixture
29 
30 See also
31  Foam::bMulticomponentMixture
32 
33 SourceFiles
34  BMulticomponentMixture.C
35 
36 \*---------------------------------------------------------------------------*/
37 
38 #ifndef BMulticomponentMixture_H
39 #define BMulticomponentMixture_H
40 
42 #include "bMulticomponentMixture.H"
43 
44 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 
46 namespace Foam
47 {
48 
49 /*---------------------------------------------------------------------------*\
50  Class BMulticomponentMixture Declaration
51 \*---------------------------------------------------------------------------*/
52 
53 template<class ThermoType>
55 :
56  public coefficientMulticomponentMixture<ThermoType>,
58 {
59 
60 public:
61 
62  // Constructors
63 
64  //- Construct from a dictionary
66 
67  //- Disallow default bitwise copy construction
69  (
71  ) = delete;
72 
73 
74  // Member Functions
75 
76  //- Return the instantiated type name
77  static word typeName()
78  {
79  return
81  + '<' + ThermoType::typeName() + '>';
82  }
83 
84 
85  // Member Operators
86 
87  //- Disallow default bitwise assignment
88  void operator=(const BMulticomponentMixture<ThermoType>&) = delete;
89 };
90 
91 
92 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
93 
94 } // End namespace Foam
95 
96 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
97 
98 #ifdef NoRepository
99  #include "BMulticomponentMixture.C"
100 #endif
101 
102 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
103 
104 #endif
105 
106 // ************************************************************************* //
Templated burnt gas combustion multicomponent mixture.
static word typeName()
Return the instantiated type name.
BMulticomponentMixture(const dictionary &)
Construct from a dictionary.
void operator=(const BMulticomponentMixture< ThermoType > &)=delete
Disallow default bitwise assignment.
Burnt gas combustion multicomponent mixture.
Thermophysical properties mixing class which applies mass-fraction weighted mixing to the thermodynam...
A list of keywords followed by any number of values (e.g. words and numbers) or sub-dictionaries.
Definition: dictionary.H:162
A class for handling words, derived from string.
Definition: word.H:63
Namespace for OpenFOAM.
String typeName(const std::type_info &info)
Return the un-mangled name given the standard type info.