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
00043 #ifndef turbulenceModel_H
00044 #define turbulenceModel_H
00045
00046 #include <OpenFOAM/primitiveFieldsFwd.H>
00047 #include <finiteVolume/volFieldsFwd.H>
00048 #include <finiteVolume/surfaceFieldsFwd.H>
00049 #include <finiteVolume/fvMatricesFwd.H>
00050 #include <incompressibleTransportModels/transportModel.H>
00051 #include <OpenFOAM/autoPtr.H>
00052 #include <OpenFOAM/runTimeSelectionTables.H>
00053
00054
00055
00056 namespace Foam
00057 {
00058
00059
00060 class fvMesh;
00061
00062 namespace incompressible
00063 {
00064
00065
00066
00067
00068
00069 class turbulenceModel
00070 {
00071
00072 protected:
00073
00074
00075
00076 const Time& runTime_;
00077 const fvMesh& mesh_;
00078
00079 const volVectorField& U_;
00080 const surfaceScalarField& phi_;
00081
00082 transportModel& transportModel_;
00083
00084
00085 private:
00086
00087
00088
00089
00090 turbulenceModel(const turbulenceModel&);
00091
00092
00093 void operator=(const turbulenceModel&);
00094
00095
00096 public:
00097
00098
00099 TypeName("turbulenceModel");
00100
00101
00102
00103
00104 declareRunTimeNewSelectionTable
00105 (
00106 autoPtr,
00107 turbulenceModel,
00108 turbulenceModel,
00109 (
00110 const volVectorField& U,
00111 const surfaceScalarField& phi,
00112 transportModel& lamTransportModel
00113 ),
00114 (U, phi, lamTransportModel)
00115 );
00116
00117
00118
00119
00120
00121 turbulenceModel
00122 (
00123 const volVectorField& U,
00124 const surfaceScalarField& phi,
00125 transportModel& lamTransportModel
00126 );
00127
00128
00129
00130
00131
00132 static autoPtr<turbulenceModel> New
00133 (
00134 const volVectorField& U,
00135 const surfaceScalarField& phi,
00136 transportModel& lamTransportModel
00137 );
00138
00139
00140
00141 virtual ~turbulenceModel()
00142 {}
00143
00144
00145
00146
00147
00148 inline const volVectorField& U() const
00149 {
00150 return U_;
00151 }
00152
00153
00154 inline const surfaceScalarField& phi() const
00155 {
00156 return phi_;
00157 }
00158
00159
00160 inline transportModel& transport() const
00161 {
00162 return transportModel_;
00163 }
00164
00165
00166 const volScalarField& nu() const
00167 {
00168 return transportModel_.nu();
00169 }
00170
00171
00172 virtual tmp<volScalarField> nut() const = 0;
00173
00174
00175 virtual tmp<volScalarField> nuEff() const = 0;
00176
00177
00178 virtual tmp<volScalarField> k() const = 0;
00179
00180
00181 virtual tmp<volScalarField> epsilon() const = 0;
00182
00183
00184 virtual tmp<volSymmTensorField> R() const = 0;
00185
00186
00187 virtual tmp<volSymmTensorField> devReff() const = 0;
00188
00189
00190 virtual tmp<fvVectorMatrix> divDevReff(volVectorField& U) const = 0;
00191
00192
00193 virtual void correct() = 0;
00194
00195
00196 virtual bool read() = 0;
00197 };
00198
00199
00200
00201
00202 }
00203 }
00204
00205
00206
00207 #endif
00208
00209