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
00029
00030
00031
00032
00033
00034
00035 #ifndef chemistryReader_H
00036 #define chemistryReader_H
00037
00038 #include <OpenFOAM/typeInfo.H>
00039 #include <OpenFOAM/runTimeSelectionTables.H>
00040 #include <specie/Reaction.H>
00041
00042
00043
00044 namespace Foam
00045 {
00046
00047
00048
00049
00050
00051 template<class ThermoType>
00052 class chemistryReader
00053 {
00054
00055
00056
00057 chemistryReader(const chemistryReader&);
00058
00059
00060 void operator=(const chemistryReader&);
00061
00062
00063 public:
00064
00065
00066 TypeName("chemistryReader");
00067
00068
00069 typedef ThermoType thermoType;
00070
00071
00072
00073
00074
00075 chemistryReader()
00076 {}
00077
00078
00079
00080
00081 declareRunTimeSelectionTable
00082 (
00083 autoPtr,
00084 chemistryReader,
00085 dictionary,
00086 (
00087 const dictionary& thermoDict
00088 ),
00089 (thermoDict)
00090 );
00091
00092
00093
00094
00095
00096 static autoPtr<chemistryReader> New(const dictionary& thermoDict);
00097
00098
00099
00100 virtual ~chemistryReader()
00101 {}
00102
00103
00104
00105
00106 virtual const speciesTable& species() const = 0;
00107
00108 virtual const HashPtrTable<ThermoType>& speciesThermo() const = 0;
00109
00110 virtual const SLPtrList<Reaction<ThermoType> >& reactions() const = 0;
00111 };
00112
00113
00114
00115
00116 }
00117
00118
00119
00120 #define makeChemistryReader(Thermo) \
00121 \
00122 defineTemplateTypeNameAndDebug \
00123 ( \
00124 chemistryReader<Thermo>, \
00125 0 \
00126 ); \
00127 \
00128 defineTemplateRunTimeSelectionTable(chemistryReader<Thermo>, dictionary);
00129
00130
00131 #define makeChemistryReaderType(SS, Thermo) \
00132 \
00133 defineNamedTemplateTypeNameAndDebug(SS<Thermo>, 0); \
00134 \
00135 chemistryReader<Thermo>::adddictionaryConstructorToTable<SS<Thermo> > \
00136 add##SS##Thermo##ConstructorToTable_;
00137
00138
00139 #define addChemistryReaderType(SS, Thermo) \
00140 \
00141 defineNamedTemplateTypeNameAndDebug(SS, 0); \
00142 \
00143 chemistryReader<Thermo>::adddictionaryConstructorToTable<SS> \
00144 add##SS##Thermo##ConstructorToTable_;
00145
00146
00147
00148
00149 #ifdef NoRepository
00150 # include "chemistryReader.C"
00151 #endif
00152
00153
00154
00155 #endif
00156
00157