initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / lagrangian / intermediate / parcels / include / makeReactingMultiphaseParcelInjectionModels.H
blobe93dce23757777bd0975f7d2c337225d3034b820
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2008-2009 OpenCFD Ltd.
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 makeReactingMultiphaseParcelInjectionModels_H
28 #define makeReactingMultiphaseParcelInjectionModels_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"
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     );                                                                        \
113 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
115 #endif
117 // ************************************************************************* //