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
00039
00040 #ifndef ReactingCloud_H
00041 #define ReactingCloud_H
00042
00043 #include <lagrangianIntermediate/ThermoCloud_.H>
00044 #include <lagrangianIntermediate/reactingCloud.H>
00045 #include <reactionThermophysicalModels/multiComponentMixture.H>
00046
00047
00048
00049 namespace Foam
00050 {
00051
00052
00053
00054 template<class CloudType>
00055 class CompositionModel;
00056
00057 template<class CloudType>
00058 class PhaseChangeModel;
00059
00060
00061
00062
00063
00064 template<class ParcelType>
00065 class ReactingCloud
00066 :
00067 public ThermoCloud<ParcelType>,
00068 public reactingCloud
00069 {
00070 public:
00071
00072
00073 typedef typename ParcelType::thermoType thermoType;
00074
00075
00076 private:
00077
00078
00079
00080
00081 ReactingCloud(const ReactingCloud&);
00082
00083
00084 void operator=(const ReactingCloud&);
00085
00086
00087 protected:
00088
00089
00090
00091
00092 typename ParcelType::constantProperties constProps_;
00093
00094
00095 multiComponentMixture<thermoType>& mcCarrierThermo_;
00096
00097
00098
00099
00100
00101 autoPtr<CompositionModel<ReactingCloud<ParcelType> > >
00102 compositionModel_;
00103
00104
00105 autoPtr<PhaseChangeModel<ReactingCloud<ParcelType> > >
00106 phaseChangeModel_;
00107
00108
00109
00110
00111
00112 PtrList<DimensionedField<scalar, volMesh> > rhoTrans_;
00113
00114
00115
00116
00117
00118 scalar dMassPhaseChange_;
00119
00120
00121
00122
00123
00124
00125
00126 void checkSuppliedComposition
00127 (
00128 const scalarField& YSupplied,
00129 const scalarField& Y,
00130 const word& YName
00131 );
00132
00133
00134
00135
00136
00137 void preEvolve();
00138
00139
00140 void evolveCloud();
00141
00142
00143 void postEvolve();
00144
00145
00146 public:
00147
00148
00149
00150
00151 ReactingCloud
00152 (
00153 const word& cloudName,
00154 const volScalarField& rho,
00155 const volVectorField& U,
00156 const dimensionedVector& g,
00157 basicThermo& thermo,
00158 bool readFields = true
00159 );
00160
00161
00162
00163 virtual ~ReactingCloud();
00164
00165
00166
00167 typedef ParcelType parcelType;
00168
00169
00170
00171
00172
00173
00174
00175 inline const typename ParcelType::constantProperties&
00176 constProps() const;
00177
00178
00179 inline const multiComponentMixture<thermoType>&
00180 mcCarrierThermo() const;
00181
00182
00183 inline multiComponentMixture<thermoType>& mcCarrierThermo();
00184
00185
00186
00187
00188
00189 inline const CompositionModel<ReactingCloud<ParcelType> >&
00190 composition() const;
00191
00192
00193 inline const PhaseChangeModel<ReactingCloud<ParcelType> >&
00194 phaseChange() const;
00195
00196
00197
00198
00199
00200
00201
00202 inline DimensionedField<scalar, volMesh>&
00203 rhoTrans(const label i);
00204
00205
00206 inline PtrList<DimensionedField<scalar, volMesh> >&
00207 rhoTrans();
00208
00209
00210 inline tmp<DimensionedField<scalar, volMesh> >
00211 Srho(const label i) const;
00212
00213
00214
00215 inline tmp<DimensionedField<scalar, volMesh> > Srho() const;
00216
00217
00218
00219
00220
00221 void info() const;
00222
00223
00224 void addToMassPhaseChange(const scalar dMass);
00225
00226
00227
00228
00229
00230 void checkParcelProperties
00231 (
00232 ParcelType& parcel,
00233 const scalar lagrangianDt,
00234 const bool fullyDescribed
00235 );
00236
00237
00238 void resetSourceTerms();
00239
00240
00241 void evolve();
00242 };
00243
00244
00245
00246
00247 }
00248
00249
00250
00251 #include "ReactingCloudI_.H"
00252
00253
00254
00255 #ifdef NoRepository
00256 # include "ReactingCloud_.C"
00257 #endif
00258
00259
00260
00261 #endif
00262
00263