makeChemistryReductionMethod.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 \*---------------------------------------------------------------------------*/
25 
26 #ifndef makeChemistryReductionMethod_H
27 #define makeChemistryReductionMethod_H
28 
30 
31 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
32 
33 namespace Foam
34 {
35 
36 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
37 
38 #define defineChemistryReductionMethod(ReactionThermo, ThermoPhysics) \
39  \
40  typedef chemistryReductionMethod<ReactionThermo, ThermoPhysics> \
41  chemistryReductionMethod##ReactionThermo##ThermoPhysics; \
42  \
43  defineTemplateTypeNameAndDebugWithName \
44  ( \
45  chemistryReductionMethod##ReactionThermo##ThermoPhysics, \
46  ( \
47  word \
48  ( \
49  chemistryReductionMethod##ReactionThermo##ThermoPhysics:: \
50  typeName_() \
51  ) \
52  + "<" + word(ReactionThermo::typeName_()) \
53  + "," + ThermoPhysics::typeName() + ">" \
54  ).c_str(), \
55  0 \
56  ); \
57  \
58  defineTemplateRunTimeSelectionTable \
59  ( \
60  chemistryReductionMethod##ReactionThermo##ThermoPhysics, \
61  dictionary \
62  ); \
63 
64 #define makeChemistryReductionMethod(Method, ReactionThermo, ThermoPhysics) \
65  \
66  typedef chemistryReductionMethods::Method<ReactionThermo, ThermoPhysics> \
67  chemistryReductionMethod##Method##ReactionThermo##ThermoPhysics; \
68  \
69  defineTemplateTypeNameAndDebugWithName \
70  ( \
71  chemistryReductionMethod##Method##ReactionThermo##ThermoPhysics, \
72  ( \
73  word \
74  ( \
75  chemistryReductionMethod##Method##ReactionThermo##\
76 ThermoPhysics::typeName_() \
77  ) \
78  + "<" + word(ReactionThermo::typeName_()) \
79  + "," + ThermoPhysics::typeName() + ">" \
80  ).c_str(), \
81  0 \
82  ); \
83  \
84  chemistryReductionMethod<ReactionThermo, ThermoPhysics>:: \
85  adddictionaryConstructorToTable \
86  <chemistryReductionMethod##Method##ReactionThermo##ThermoPhysics> \
87  add##chemistryReductionMethod##Method##ReactionThermo##ThermoPhysics##\
88 dictionaryConstructorToTable_;
89 
90 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
91 
92 } // End namespace Foam
93 
94 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
95 
96 #endif
97 
98 // ************************************************************************* //
Macros for easy insertion into run-time selection tables.
Namespace for OpenFOAM.