FreeFOAM The Cross-Platform CFD Toolkit
Hosted by SourceForge:
Get FreeFOAM at SourceForge.net.
            Fast, secure and Free Open Source software downloads

makeReactingMultiphaseParcelInjectionModels.H

Go to the documentation of this file.
00001 /*---------------------------------------------------------------------------*\
00002   =========                 |
00003   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
00004    \\    /   O peration     |
00005     \\  /    A nd           | Copyright (C) 2008-2010 OpenCFD Ltd.
00006      \\/     M anipulation  |
00007 -------------------------------------------------------------------------------
00008 License
00009     This file is part of OpenFOAM.
00010 
00011     OpenFOAM is free software: you can redistribute it and/or modify it
00012     under the terms of the GNU General Public License as published by
00013     the Free Software Foundation, either version 3 of the License, or
00014     (at your option) any later version.
00015 
00016     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
00017     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
00018     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
00019     for more details.
00020 
00021     You should have received a copy of the GNU General Public License
00022     along with OpenFOAM.  If not, see <http://www.gnu.org/licenses/>.
00023 
00024 \*---------------------------------------------------------------------------*/
00025 
00026 #ifndef makeReactingMultiphaseParcelInjectionModels_H
00027 #define makeReactingMultiphaseParcelInjectionModels_H
00028 
00029 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00030 
00031 #include <specie/thermoPhysicsTypes.H>
00032 #include <lagrangianIntermediate/KinematicCloud_.H>
00033 
00034 #include <lagrangianIntermediate/ConeInjection.H>
00035 #include <lagrangianIntermediate/ConeInjectionMP.H>
00036 #include <lagrangianIntermediate/FieldActivatedInjection.H>
00037 #include <lagrangianIntermediate/ManualInjection.H>
00038 #include <lagrangianIntermediate/NoInjection.H>
00039 #include <lagrangianIntermediate/PatchInjection.H>
00040 #include <lagrangianIntermediate/ReactingMultiphaseLookupTableInjection.H>
00041 
00042 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00043 
00044 #define makeReactingMultiphaseInjectionModels(ParcelType)                     \
00045                                                                               \
00046     makeReactingMultiphaseInjectionModelThermoType                            \
00047     (                                                                         \
00048         ParcelType,                                                           \
00049         constGasThermoPhysics                                                 \
00050     );                                                                        \
00051                                                                               \
00052     makeReactingMultiphaseInjectionModelThermoType                            \
00053     (                                                                         \
00054         ParcelType,                                                           \
00055         gasThermoPhysics                                                      \
00056     );                                                                        \
00057                                                                               \
00058     makeReactingMultiphaseInjectionModelThermoType                            \
00059     (                                                                         \
00060         ParcelType,                                                           \
00061         icoPoly8ThermoPhysics                                                 \
00062     );
00063 
00064 
00065 #define makeReactingMultiphaseInjectionModelThermoType(ParcelType, ThermoType)\
00066                                                                               \
00067     makeInjectionModel(KinematicCloud<ParcelType<ThermoType> >);              \
00068                                                                               \
00069     makeInjectionModelThermoType                                              \
00070     (                                                                         \
00071         ConeInjection,                                                        \
00072         KinematicCloud,                                                       \
00073         ParcelType,                                                           \
00074         ThermoType                                                            \
00075     );                                                                        \
00076     makeInjectionModelThermoType                                              \
00077     (                                                                         \
00078         ConeInjectionMP,                                                      \
00079         KinematicCloud,                                                       \
00080         ParcelType,                                                           \
00081         ThermoType                                                            \
00082     );                                                                        \
00083     makeInjectionModelThermoType                                              \
00084     (                                                                         \
00085         FieldActivatedInjection,                                              \
00086         KinematicCloud,                                                       \
00087         ParcelType,                                                           \
00088         ThermoType                                                            \
00089     );                                                                        \
00090     makeInjectionModelThermoType                                              \
00091     (                                                                         \
00092         ManualInjection,                                                      \
00093         KinematicCloud,                                                       \
00094         ParcelType,                                                           \
00095         ThermoType                                                            \
00096     );                                                                        \
00097     makeInjectionModelThermoType                                              \
00098     (                                                                         \
00099         NoInjection,                                                          \
00100         KinematicCloud,                                                       \
00101         ParcelType,                                                           \
00102         ThermoType                                                            \
00103     );                                                                        \
00104     makeInjectionModelThermoType                                              \
00105     (                                                                         \
00106         PatchInjection,                                                       \
00107         KinematicCloud,                                                       \
00108         ParcelType,                                                           \
00109         ThermoType                                                            \
00110     );                                                                        \
00111     makeInjectionModelThermoType                                              \
00112     (                                                                         \
00113         ReactingMultiphaseLookupTableInjection,                               \
00114         KinematicCloud,                                                       \
00115         ParcelType,                                                           \
00116         ThermoType                                                            \
00117     );
00118 
00119 
00120 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00121 
00122 #endif
00123 
00124 // ************************ vim: set sw=4 sts=4 et: ************************ //
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines