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
00041
00042 #ifndef RutlandFlashBoil_H
00043 #define RutlandFlashBoil_H
00044
00045 #include <dieselSpray/evaporationModel.H>
00046
00047
00048
00049 namespace Foam
00050 {
00051
00052
00053
00054
00055
00056 class RutlandFlashBoil
00057 :
00058 public evaporationModel
00059 {
00060
00061 private:
00062
00063
00064
00065 dictionary evapDict_;
00066 scalar preReScFactor_;
00067 scalar ReExponent_;
00068 scalar ScExponent_;
00069
00070 word evaporationScheme_;
00071 label nEvapIter_;
00072
00073
00074 public:
00075
00076
00077 TypeName("RutlandFlashBoil");
00078
00079
00080
00081
00082
00083 RutlandFlashBoil
00084 (
00085 const dictionary& dict
00086 );
00087
00088
00089
00090
00091 ~RutlandFlashBoil();
00092
00093
00094
00095
00096 bool evaporation() const;
00097
00098
00099 scalar Sh
00100 (
00101 const scalar ReynoldsNumber,
00102 const scalar SchmidtNumber
00103 ) const;
00104
00105
00106 scalar relaxationTime
00107 (
00108 const scalar diameter,
00109 const scalar liquidDensity,
00110 const scalar rhoFuelVapor,
00111 const scalar massDiffusionCoefficient,
00112 const scalar ReynoldsNumber,
00113 const scalar SchmidtNumber,
00114 const scalar Xs,
00115 const scalar Xf,
00116 const scalar m0,
00117 const scalar dm,
00118 const scalar dt
00119 ) const;
00120
00121 scalar boilingTime
00122 (
00123 const scalar liquidDensity,
00124 const scalar cpFuel,
00125 const scalar heatOfVapour,
00126 const scalar kappa,
00127 const scalar Nusselt,
00128 const scalar deltaTemp,
00129 const scalar diameter,
00130 const scalar liquidCore,
00131 const scalar time,
00132 const scalar tDrop,
00133 const scalar tBoilingSurface,
00134 const scalar vapourSurfaceEnthalpy,
00135 const scalar vapourFarEnthalpy,
00136 const scalar cpGas,
00137 const scalar temperature,
00138 const scalar kLiquid
00139 ) const;
00140
00141 inline label nEvapIter() const;
00142 };
00143
00144
00145
00146
00147 }
00148
00149
00150
00151 #endif
00152
00153