Merge /u/wyldckat/foam-extend32/ branch master into master
[foam-extend-3.2.git] / src / lagrangian / intermediate / parcels / include / makeReactingMultiphaseParcelInjectionModels.H
blob8ad49034460e646a8a924908329aa5489e6a12b6
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | foam-extend: Open Source CFD
4    \\    /   O peration     | Version:     3.2
5     \\  /    A nd           | Web:         http://www.foam-extend.org
6      \\/     M anipulation  | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
8 License
9     This file is part of foam-extend.
11     foam-extend is free software: you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by the
13     Free Software Foundation, either version 3 of the License, or (at your
14     option) any later version.
16     foam-extend is distributed in the hope that it will be useful, but
17     WITHOUT ANY WARRANTY; without even the implied warranty of
18     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19     General Public License for more details.
21     You should have received a copy of the GNU General Public License
22     along with foam-extend.  If not, see <http://www.gnu.org/licenses/>.
24 \*---------------------------------------------------------------------------*/
26 #ifndef makeReactingMultiphaseParcelInjectionModels_H
27 #define makeReactingMultiphaseParcelInjectionModels_H
29 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
31 #include "thermoPhysicsTypes.H"
32 #include "KinematicCloudTemplate.H"
34 #include "ConeInjection.H"
35 #include "ConeInjectionMP.H"
36 #include "FieldActivatedInjection.H"
37 #include "ManualInjection.H"
38 #include "NoInjection.H"
39 #include "PatchInjection.H"
40 #include "ReactingMultiphaseLookupTableInjection.H"
42 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
44 #define makeReactingMultiphaseInjectionModels(ParcelType)                     \
45                                                                               \
46     makeReactingMultiphaseInjectionModelThermoType                            \
47     (                                                                         \
48         ParcelType,                                                           \
49         constGasThermoPhysics                                                 \
50     );                                                                        \
51                                                                               \
52     makeReactingMultiphaseInjectionModelThermoType                            \
53     (                                                                         \
54         ParcelType,                                                           \
55         gasThermoPhysics                                                      \
56     );                                                                        \
57                                                                               \
58     makeReactingMultiphaseInjectionModelThermoType                            \
59     (                                                                         \
60         ParcelType,                                                           \
61         icoPoly8ThermoPhysics                                                 \
62     );
65 #define makeReactingMultiphaseInjectionModelThermoType(ParcelType, ThermoType)\
66                                                                               \
67     makeInjectionModel(KinematicCloud<ParcelType<ThermoType> >);              \
68                                                                               \
69     makeInjectionModelThermoType                                              \
70     (                                                                         \
71         ConeInjection,                                                        \
72         KinematicCloud,                                                       \
73         ParcelType,                                                           \
74         ThermoType                                                            \
75     );                                                                        \
76     makeInjectionModelThermoType                                              \
77     (                                                                         \
78         ConeInjectionMP,                                                      \
79         KinematicCloud,                                                       \
80         ParcelType,                                                           \
81         ThermoType                                                            \
82     );                                                                        \
83     makeInjectionModelThermoType                                              \
84     (                                                                         \
85         FieldActivatedInjection,                                              \
86         KinematicCloud,                                                       \
87         ParcelType,                                                           \
88         ThermoType                                                            \
89     );                                                                        \
90     makeInjectionModelThermoType                                              \
91     (                                                                         \
92         ManualInjection,                                                      \
93         KinematicCloud,                                                       \
94         ParcelType,                                                           \
95         ThermoType                                                            \
96     );                                                                        \
97     makeInjectionModelThermoType                                              \
98     (                                                                         \
99         NoInjection,                                                          \
100         KinematicCloud,                                                       \
101         ParcelType,                                                           \
102         ThermoType                                                            \
103     );                                                                        \
104     makeInjectionModelThermoType                                              \
105     (                                                                         \
106         PatchInjection,                                                       \
107         KinematicCloud,                                                       \
108         ParcelType,                                                           \
109         ThermoType                                                            \
110     );                                                                        \
111     makeInjectionModelThermoType                                              \
112     (                                                                         \
113         ReactingMultiphaseLookupTableInjection,                               \
114         KinematicCloud,                                                       \
115         ParcelType,                                                           \
116         ThermoType                                                            \
117     );
120 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
122 #endif
124 // ************************************************************************* //