Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #include <specie/reactionTypes.H>
00029 #include "makeReactionThermo.H"
00030
00031 #include <specie/ArrheniusReactionRate.H>
00032 #include <specie/thirdBodyArrheniusReactionRate.H>
00033 #include <specie/FallOffReactionRate.H>
00034 #include <specie/ChemicallyActivatedReactionRate.H>
00035 #include <specie/LindemannFallOffFunction.H>
00036 #include <specie/TroeFallOffFunction.H>
00037 #include <specie/SRIFallOffFunction.H>
00038 #include <specie/LandauTellerReactionRate.H>
00039 #include <specie/JanevReactionRate.H>
00040 #include <specie/powerSeriesReactionRate.H>
00041
00042
00043
00044
00045 namespace Foam
00046 {
00047
00048
00049
00050 defineTemplateTypeNameAndDebug(icoPoly8Reaction, 0);
00051 defineTemplateRunTimeSelectionTable(icoPoly8Reaction, Istream);
00052
00053
00054
00055
00056 makeIRNReactions(icoPoly8ThermoPhysics, ArrheniusReactionRate)
00057 makeIRNReactions(icoPoly8ThermoPhysics, LandauTellerReactionRate)
00058 makeIRNReactions(icoPoly8ThermoPhysics, thirdBodyArrheniusReactionRate)
00059 makeIRReactions(icoPoly8ThermoPhysics, JanevReactionRate)
00060 makeIRReactions(icoPoly8ThermoPhysics, powerSeriesReactionRate)
00061
00062 makePressureDependentReactions
00063 (
00064 icoPoly8ThermoPhysics,
00065 ArrheniusReactionRate,
00066 LindemannFallOffFunction
00067 )
00068
00069 makePressureDependentReactions
00070 (
00071 icoPoly8ThermoPhysics,
00072 ArrheniusReactionRate,
00073 TroeFallOffFunction
00074 )
00075
00076 makePressureDependentReactions
00077 (
00078 icoPoly8ThermoPhysics,
00079 ArrheniusReactionRate,
00080 SRIFallOffFunction
00081 )
00082
00083
00084
00085
00086 }
00087
00088