fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git] / src / lagrangian / intermediate / parcels / include / makeReactingParcelInjectionModels.H
blob80a0f8aff6adebfc60bb19eb88f446d60fa10036
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright held by original author
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
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 the
13     Free Software Foundation; either version 2 of the License, or (at your
14     option) any later version.
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.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM; if not, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 \*---------------------------------------------------------------------------*/
27 #ifndef makeReactingParcelInjectionModels_H
28 #define makeReactingParcelInjectionModels_H
30 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
32 #include "thermoPhysicsTypes.H"
33 #include "KinematicCloud.H"
35 #include "ConeInjection.H"
36 #include "ConeInjectionMP.H"
37 #include "FieldActivatedInjection.H"
38 #include "ManualInjection.H"
39 #include "NoInjection.H"
40 #include "PatchInjection.H"
41 #include "ReactingLookupTableInjection.H"
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 #define makeReactingInjectionModels(ParcelType)                               \
46                                                                               \
47     makeReactingInjectionModelThermoType                                      \
48     (                                                                         \
49         ParcelType,                                                           \
50         constGasThermoPhysics                                                 \
51     );                                                                        \
52                                                                               \
53     makeReactingInjectionModelThermoType                                      \
54     (                                                                         \
55         ParcelType,                                                           \
56         gasThermoPhysics                                                      \
57     );                                                                        \
58                                                                               \
59     makeReactingInjectionModelThermoType                                      \
60     (                                                                         \
61         ParcelType,                                                           \
62         icoPoly8ThermoPhysics                                                 \
63     );
66 #define makeReactingInjectionModelThermoType(ParcelType, ThermoType)          \
67                                                                               \
68     makeInjectionModel(KinematicCloud<ParcelType<ThermoType> >);              \
69                                                                               \
70     makeInjectionModelThermoType                                              \
71     (                                                                         \
72         ConeInjection,                                                        \
73         KinematicCloud,                                                       \
74         ParcelType,                                                           \
75         ThermoType                                                            \
76     );                                                                        \
77     makeInjectionModelThermoType                                              \
78     (                                                                         \
79         ConeInjectionMP,                                                      \
80         KinematicCloud,                                                       \
81         ParcelType,                                                           \
82         ThermoType                                                            \
83     );                                                                        \
84     makeInjectionModelThermoType                                              \
85     (                                                                         \
86         FieldActivatedInjection,                                              \
87         KinematicCloud,                                                       \
88         ParcelType,                                                           \
89         ThermoType                                                            \
90     );                                                                        \
91     makeInjectionModelThermoType                                              \
92     (                                                                         \
93         ManualInjection,                                                      \
94         KinematicCloud,                                                       \
95         ParcelType,                                                           \
96         ThermoType                                                            \
97     );                                                                        \
98     makeInjectionModelThermoType                                              \
99     (                                                                         \
100         NoInjection,                                                          \
101         KinematicCloud,                                                       \
102         ParcelType,                                                           \
103         ThermoType                                                            \
104     );                                                                        \
105     makeInjectionModelThermoType                                              \
106     (                                                                         \
107         PatchInjection,                                                       \
108         KinematicCloud,                                                       \
109         ParcelType,                                                           \
110         ThermoType                                                            \
111     );                                                                        \
112     makeInjectionModelThermoType                                              \
113     (                                                                         \
114         ReactingLookupTableInjection,                                         \
115         KinematicCloud,                                                       \
116         ParcelType,                                                           \
117         ThermoType                                                            \
118     );
121 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
123 #endif
125 // ************************************************************************* //