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
00036
00037
00038 #ifndef ODEChemistryModel_H
00039 #define ODEChemistryModel_H
00040
00041 #include <specie/Reaction.H>
00042 #include <ODE/ODE.H>
00043 #include <finiteVolume/volFieldsFwd.H>
00044
00045
00046
00047 namespace Foam
00048 {
00049
00050
00051 class fvMesh;
00052
00053 template<class CompType, class ThermoType>
00054 class chemistrySolver;
00055
00056
00057
00058
00059
00060 template<class CompType, class ThermoType>
00061 class ODEChemistryModel
00062 :
00063 public CompType,
00064 public ODE
00065 {
00066
00067
00068
00069 void operator=(const ODEChemistryModel&);
00070
00071
00072 protected:
00073
00074
00075
00076
00077 PtrList<volScalarField>& Y_;
00078
00079
00080 const PtrList<Reaction<ThermoType> >& reactions_;
00081
00082
00083 const PtrList<ThermoType>& specieThermo_;
00084
00085
00086 label nSpecie_;
00087
00088
00089 label nReaction_;
00090
00091
00092 autoPtr<chemistrySolver<CompType, ThermoType> > solver_;
00093
00094
00095 PtrList<scalarField> RR_;
00096
00097
00098
00099
00100
00101
00102 inline PtrList<scalarField>& RR();
00103
00104
00105 public:
00106
00107
00108 TypeName("ODEChemistryModel");
00109
00110
00111
00112
00113
00114 ODEChemistryModel
00115 (
00116 const fvMesh& mesh,
00117 const word& compTypeName,
00118 const word& thermoTypeName
00119 );
00120
00121
00122
00123 virtual ~ODEChemistryModel();
00124
00125
00126
00127
00128
00129 inline const PtrList<Reaction<ThermoType> >& reactions() const;
00130
00131
00132 inline const PtrList<ThermoType>& specieThermo() const;
00133
00134
00135 inline label nSpecie() const;
00136
00137
00138 inline label nReaction() const;
00139
00140
00141 inline const chemistrySolver<CompType, ThermoType>& solver() const;
00142
00143
00144 virtual scalarField omega
00145 (
00146 const scalarField& c,
00147 const scalar T,
00148 const scalar p
00149 ) const;
00150
00151
00152
00153 virtual scalar omega
00154 (
00155 const Reaction<ThermoType>& r,
00156 const scalarField& c,
00157 const scalar T,
00158 const scalar p,
00159 scalar& pf,
00160 scalar& cf,
00161 label& lRef,
00162 scalar& pr,
00163 scalar& cr,
00164 label& rRef
00165 ) const;
00166
00167
00168 virtual void calculate();
00169
00170
00171
00172
00173
00174
00175 inline tmp<volScalarField> RR(const label i) const;
00176
00177
00178
00179 virtual scalar solve(const scalar t0, const scalar deltaT);
00180
00181
00182 virtual tmp<volScalarField> tc() const;
00183
00184
00185 virtual tmp<volScalarField> Sh() const;
00186
00187
00188 virtual tmp<volScalarField> dQ() const;
00189
00190
00191
00192
00193
00194 virtual label nEqns() const;
00195
00196 virtual void derivatives
00197 (
00198 const scalar t,
00199 const scalarField& c,
00200 scalarField& dcdt
00201 ) const;
00202
00203 virtual void jacobian
00204 (
00205 const scalar t,
00206 const scalarField& c,
00207 scalarField& dcdt,
00208 scalarSquareMatrix& dfdc
00209 ) const;
00210 };
00211
00212
00213
00214
00215 }
00216
00217
00218
00219 #include "ODEChemistryModelI.H"
00220
00221
00222
00223 #ifdef NoRepository
00224 # include "ODEChemistryModel.C"
00225 #endif
00226
00227
00228
00229 #endif
00230
00231