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 CompositionModel_H
00039 #define CompositionModel_H
00040
00041 #include <OpenFOAM/IOdictionary.H>
00042 #include <OpenFOAM/autoPtr.H>
00043 #include <OpenFOAM/runTimeSelectionTables.H>
00044
00045 #include <OpenFOAM/PtrList.H>
00046 #include <reactionThermophysicalModels/multiComponentMixture.H>
00047
00048 #include <liquidMixture/liquidMixture.H>
00049 #include <solidMixture/solidMixture.H>
00050
00051 #include <lagrangianIntermediate/phasePropertiesList.H>
00052
00053
00054
00055 namespace Foam
00056 {
00057
00058
00059
00060
00061
00062 template<class CloudType>
00063 class CompositionModel
00064 {
00065
00066
00067
00068 const dictionary& dict_;
00069
00070
00071 CloudType& owner_;
00072
00073
00074 const dictionary& coeffDict_;
00075
00076
00077 multiComponentMixture<typename CloudType::thermoType>& mcCarrierThermo_;
00078
00079
00080 autoPtr<liquidMixture> liquids_;
00081
00082
00083 autoPtr<solidMixture> solids_;
00084
00085
00086 phasePropertiesList phaseProps_;
00087
00088
00089 public:
00090
00091
00092 TypeName("CompositionModel");
00093
00094
00095 declareRunTimeSelectionTable
00096 (
00097 autoPtr,
00098 CompositionModel,
00099 dictionary,
00100 (
00101 const dictionary& dict,
00102 CloudType& owner
00103 ),
00104 (dict, owner)
00105 );
00106
00107
00108
00109
00110
00111 CompositionModel
00112 (
00113 const dictionary& dict,
00114 CloudType& owner,
00115 const word& type
00116 );
00117
00118
00119
00120 virtual ~CompositionModel();
00121
00122
00123
00124 static autoPtr<CompositionModel<CloudType> > New
00125 (
00126 const dictionary& dict,
00127 CloudType& owner
00128 );
00129
00130
00131
00132
00133
00134
00135
00136 const CloudType& owner() const;
00137
00138
00139 const dictionary& dict() const;
00140
00141
00142 const dictionary& coeffDict() const;
00143
00144
00145 const multiComponentMixture<typename CloudType::thermoType>&
00146 mcCarrierThermo() const;
00147
00148
00149
00150
00151
00152 const liquidMixture& liquids() const;
00153
00154
00155 const solidMixture& solids() const;
00156
00157
00158 const phasePropertiesList& phaseProps() const;
00159
00160
00161 label nPhase() const;
00162
00163
00164
00165
00166
00167
00168 const wordList& phaseTypes() const;
00169
00170
00171 const wordList& stateLabels() const;
00172
00173
00174 const wordList& componentNames(const label phaseI) const;
00175
00176
00177 label globalCarrierId(const word& cmptName) const;
00178
00179
00180 label globalId(const label phaseI, const word& cmptName) const;
00181
00182
00183 const labelList& globalIds(const label phaseI) const;
00184
00185
00186 label localId(const label phaseI, const word& cmptName) const;
00187
00188
00189 label localToGlobalCarrierId
00190 (
00191 const label phaseI,
00192 const label id
00193 ) const;
00194
00195
00196 const scalarField& Y0(const label phaseI) const;
00197
00198
00199
00200 scalarField X
00201 (
00202 const label phaseI,
00203 const scalarField& Y
00204 ) const;
00205
00206
00207
00208
00209
00210
00211 virtual const scalarField& YMixture0() const = 0;
00212
00213
00214
00215
00216
00217 virtual label idGas() const = 0;
00218
00219
00220 virtual label idLiquid() const = 0;
00221
00222
00223 virtual label idSolid() const = 0;
00224
00225
00226
00227
00228
00229 virtual scalar H
00230 (
00231 const label phaseI,
00232 const scalarField& Y,
00233 const scalar p,
00234 const scalar T
00235 ) const;
00236
00237
00238 virtual scalar Hs
00239 (
00240 const label phaseI,
00241 const scalarField& Y,
00242 const scalar p,
00243 const scalar T
00244 ) const;
00245
00246
00247 virtual scalar Hc
00248 (
00249 const label phaseI,
00250 const scalarField& Y,
00251 const scalar p,
00252 const scalar T
00253 ) const;
00254
00255
00256 virtual scalar cp
00257 (
00258 const label phaseI,
00259 const scalarField& Y,
00260 const scalar p,
00261 const scalar T
00262 ) const;
00263
00264
00265 virtual scalar L
00266 (
00267 const label phaseI,
00268 const scalarField& Y,
00269 const scalar p,
00270 const scalar T
00271 ) const;
00272 };
00273
00274
00275
00276
00277 }
00278
00279
00280
00281 #define makeCompositionModel(CloudType) \
00282 \
00283 defineNamedTemplateTypeNameAndDebug \
00284 ( \
00285 CompositionModel<CloudType>, \
00286 0 \
00287 ); \
00288 \
00289 defineTemplateRunTimeSelectionTable \
00290 ( \
00291 CompositionModel<CloudType>, \
00292 dictionary \
00293 );
00294
00295
00296 #define makeCompositionModelThermoType(SS, CloudType, ParcelType, ThermoType) \
00297 \
00298 defineNamedTemplateTypeNameAndDebug \
00299 ( \
00300 SS<CloudType<ParcelType<ThermoType> > >, \
00301 0 \
00302 ); \
00303 \
00304 CompositionModel<CloudType<ParcelType<ThermoType> > >:: \
00305 adddictionaryConstructorToTable \
00306 <SS<CloudType<ParcelType<ThermoType> > > > \
00307 add##SS##CloudType##ParcelType##ThermoType##ConstructorToTable_;
00308
00309
00310
00311
00312 #ifdef NoRepository
00313 # include <lagrangianIntermediate/CompositionModel.C>
00314 #endif
00315
00316
00317
00318 #endif
00319
00320