Merge branch 'upstream/OpenFOAM' into master
[freefoam.git] / src / thermophysicalModels / specie / reaction / reactions / makeReactionThermoReactions.C
blob213ab3582856453b8ab91392eafc53510a4b7e9c
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-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 Description
27 \*---------------------------------------------------------------------------*/
29 #include <specie/reactionTypes.H>
30 #include "makeReactionThermo.H"
32 #include <specie/ArrheniusReactionRate.H>
33 #include <specie/thirdBodyArrheniusReactionRate.H>
34 #include <specie/FallOffReactionRate.H>
35 #include <specie/ChemicallyActivatedReactionRate.H>
36 #include <specie/LindemannFallOffFunction.H>
37 #include <specie/TroeFallOffFunction.H>
38 #include <specie/SRIFallOffFunction.H>
39 #include <specie/LandauTellerReactionRate.H>
40 #include <specie/JanevReactionRate.H>
41 #include <specie/powerSeriesReactionRate.H>
44 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
46 namespace Foam
49 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
51 defineTemplateTypeNameAndDebug(icoPoly8Reaction, 0);
52 defineTemplateRunTimeSelectionTable(icoPoly8Reaction, Istream);
55 // * * * * * * * * * * * * * Make CHEMKIN reactions  * * * * * * * * * * * * //
57 makeIRNReactions(icoPoly8ThermoPhysics, ArrheniusReactionRate)
58 makeIRNReactions(icoPoly8ThermoPhysics, LandauTellerReactionRate)
59 makeIRNReactions(icoPoly8ThermoPhysics, thirdBodyArrheniusReactionRate)
60 makeIRReactions(icoPoly8ThermoPhysics, JanevReactionRate)
61 makeIRReactions(icoPoly8ThermoPhysics, powerSeriesReactionRate)
63 makePressureDependentReactions
65     icoPoly8ThermoPhysics,
66     ArrheniusReactionRate,
67     LindemannFallOffFunction
70 makePressureDependentReactions
72     icoPoly8ThermoPhysics,
73     ArrheniusReactionRate,
74     TroeFallOffFunction
77 makePressureDependentReactions
79     icoPoly8ThermoPhysics,
80     ArrheniusReactionRate,
81     SRIFallOffFunction
85 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
87 } // End namespace Foam
89 // ************************ vim: set sw=4 sts=4 et: ************************ //