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 BasicReactingMultiphaseParcel_H
00037 #define BasicReactingMultiphaseParcel_H
00038
00039 #include <lagrangianIntermediate/ReactingMultiphaseParcel.H>
00040
00041
00042
00043
00044 namespace Foam
00045 {
00046
00047
00048 template<class ThermoType>
00049 class BasicReactingMultiphaseParcel;
00050
00051
00052
00053
00054
00055 template<class ThermoType>
00056 class BasicReactingMultiphaseParcel
00057 :
00058 public ReactingMultiphaseParcel<BasicReactingMultiphaseParcel<ThermoType> >
00059 {
00060
00061 public:
00062
00063
00064 typedef ThermoType thermoType;
00065
00066
00067 TypeName("BasicReactingMultiphaseParcel");
00068
00069
00070
00071
00072
00073 BasicReactingMultiphaseParcel
00074 (
00075 ReactingMultiphaseCloud<BasicReactingMultiphaseParcel>& owner,
00076 const vector& position,
00077 const label cellI
00078 );
00079
00080
00081 BasicReactingMultiphaseParcel
00082 (
00083 ReactingMultiphaseCloud<BasicReactingMultiphaseParcel>& owner,
00084 const vector& position,
00085 const label cellI,
00086 const label typeId,
00087 const scalar nParticle0,
00088 const scalar d0,
00089 const vector& U0,
00090 const scalarField& YGas0,
00091 const scalarField& YLiquid0,
00092 const scalarField& YSolid0,
00093 const scalarField& Y0,
00094 const typename
00095 ReactingMultiphaseParcel<BasicReactingMultiphaseParcel>::
00096 constantProperties& constProps
00097 );
00098
00099
00100 BasicReactingMultiphaseParcel
00101 (
00102 const Cloud<BasicReactingMultiphaseParcel>& c,
00103 Istream& is,
00104 bool readFields = true
00105 );
00106
00107
00108 BasicReactingMultiphaseParcel(const BasicReactingMultiphaseParcel& p);
00109
00110
00111 autoPtr<BasicReactingMultiphaseParcel> clone() const
00112 {
00113 return
00114 autoPtr<BasicReactingMultiphaseParcel>
00115 (
00116 new BasicReactingMultiphaseParcel(*this)
00117 );
00118 }
00119
00120
00121
00122 virtual ~BasicReactingMultiphaseParcel();
00123 };
00124
00125
00126
00127
00128 }
00129
00130
00131
00132 #ifdef NoRepository
00133 #include "BasicReactingMultiphaseParcel.C"
00134 #endif
00135
00136
00137
00138 #endif
00139
00140