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 #ifndef IrreversibleReaction_H
00037 #define IrreversibleReaction_H
00038
00039 #include <specie/Reaction.H>
00040
00041
00042
00043 namespace Foam
00044 {
00045
00046
00047
00048
00049
00050 template<class ReactionThermo, class ReactionRate>
00051 class IrreversibleReaction
00052 :
00053 public Reaction<ReactionThermo>
00054 {
00055
00056
00057 ReactionRate k_;
00058
00059
00060
00061
00062
00063 void operator=
00064 (
00065 const IrreversibleReaction<ReactionThermo, ReactionRate>&
00066 );
00067
00068
00069 public:
00070
00071
00072 TypeName("irreversible");
00073
00074
00075
00076
00077
00078 IrreversibleReaction
00079 (
00080 const Reaction<ReactionThermo>& reaction,
00081 const ReactionRate& reactionRate
00082 );
00083
00084
00085 IrreversibleReaction
00086 (
00087 const IrreversibleReaction<ReactionThermo, ReactionRate>&,
00088 const speciesTable& species
00089 );
00090
00091
00092 IrreversibleReaction
00093 (
00094 const speciesTable& species,
00095 const HashPtrTable<ReactionThermo>& thermoDatabase,
00096 Istream& is
00097 );
00098
00099
00100 virtual autoPtr<Reaction<ReactionThermo> > clone() const
00101 {
00102 return autoPtr<Reaction<ReactionThermo> >
00103 (
00104 new IrreversibleReaction<ReactionThermo, ReactionRate>(*this)
00105 );
00106 }
00107
00108
00109 virtual autoPtr<Reaction<ReactionThermo> > clone
00110 (
00111 const speciesTable& species
00112 ) const
00113 {
00114 return autoPtr<Reaction<ReactionThermo> >
00115 (
00116 new IrreversibleReaction<ReactionThermo, ReactionRate>
00117 (
00118 *this,
00119 species
00120 )
00121 );
00122 }
00123
00124
00125
00126
00127 virtual ~IrreversibleReaction()
00128 {}
00129
00130
00131
00132
00133
00134
00135
00136 virtual scalar kf
00137 (
00138 const scalar T,
00139 const scalar p,
00140 const scalarField& c
00141 ) const;
00142
00143
00144
00145 virtual void write(Ostream&) const;
00146 };
00147
00148
00149
00150
00151 }
00152
00153
00154
00155 #ifdef NoRepository
00156 # include <specie/IrreversibleReaction.C>
00157 #endif
00158
00159
00160
00161 #endif
00162
00163