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

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