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

hCombustionThermos.C

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) 1991-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 #include "makeCombustionThermo.H"
00027 
00028 #include "hCombustionThermo.H"
00029 #include <reactionThermophysicalModels/hPsiMixtureThermo.H>
00030 
00031 #include <specie/perfectGas.H>
00032 
00033 #include <specie/hConstThermo.H>
00034 #include <specie/janafThermo.H>
00035 #include <specie/specieThermo.H>
00036 
00037 #include <specie/constTransport.H>
00038 #include <specie/sutherlandTransport.H>
00039 
00040 #include <reactionThermophysicalModels/homogeneousMixture.H>
00041 #include <reactionThermophysicalModels/inhomogeneousMixture.H>
00042 #include <reactionThermophysicalModels/veryInhomogeneousMixture.H>
00043 #include <reactionThermophysicalModels/dieselMixture.H>
00044 #include <reactionThermophysicalModels/multiComponentMixture.H>
00045 #include <reactionThermophysicalModels/reactingMixture.H>
00046 
00047 #include <specie/thermoPhysicsTypes.H>
00048 
00049 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00050 
00051 namespace Foam
00052 {
00053 
00054 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00055 
00056 makeCombustionThermo
00057 (
00058     hCombustionThermo,
00059     hPsiMixtureThermo,
00060     homogeneousMixture,
00061     constTransport,
00062     hConstThermo,
00063     perfectGas
00064 );
00065 
00066 makeCombustionThermo
00067 (
00068     hCombustionThermo,
00069     hPsiMixtureThermo,
00070     inhomogeneousMixture,
00071     constTransport,
00072     hConstThermo,
00073     perfectGas
00074 );
00075 
00076 makeCombustionThermo
00077 (
00078     hCombustionThermo,
00079     hPsiMixtureThermo,
00080     veryInhomogeneousMixture,
00081     constTransport,
00082     hConstThermo,
00083     perfectGas
00084 );
00085 
00086 makeCombustionThermo
00087 (
00088     hCombustionThermo,
00089     hPsiMixtureThermo,
00090     homogeneousMixture,
00091     sutherlandTransport,
00092     janafThermo,
00093     perfectGas
00094 );
00095 
00096 makeCombustionThermo
00097 (
00098     hCombustionThermo,
00099     hPsiMixtureThermo,
00100     inhomogeneousMixture,
00101     sutherlandTransport,
00102     janafThermo,
00103     perfectGas
00104 );
00105 
00106 makeCombustionThermo
00107 (
00108     hCombustionThermo,
00109     hPsiMixtureThermo,
00110     veryInhomogeneousMixture,
00111     sutherlandTransport,
00112     janafThermo,
00113     perfectGas
00114 );
00115 
00116 makeCombustionThermo
00117 (
00118     hCombustionThermo,
00119     hPsiMixtureThermo,
00120     dieselMixture,
00121     sutherlandTransport,
00122     janafThermo,
00123     perfectGas
00124 );
00125 
00126 // Multi-component thermo
00127 
00128 makeCombustionMixtureThermo
00129 (
00130     hCombustionThermo,
00131     hPsiMixtureThermo,
00132     multiComponentMixture,
00133     gasThermoPhysics
00134 );
00135 
00136 
00137 // Multi-component reaction thermo
00138 
00139 makeCombustionMixtureThermo
00140 (
00141     hCombustionThermo,
00142     hPsiMixtureThermo,
00143     reactingMixture,
00144     gasThermoPhysics
00145 );
00146 
00147 
00148 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00149 
00150 } // End namespace Foam
00151 
00152 // ************************ vim: set sw=4 sts=4 et: ************************ //
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines