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 #ifndef muSgsWallFunctionFvPatchScalarField_H
00036 #define muSgsWallFunctionFvPatchScalarField_H
00037
00038 #include <finiteVolume/fixedValueFvPatchFields.H>
00039
00040
00041
00042 namespace Foam
00043 {
00044 namespace compressible
00045 {
00046 namespace LESModels
00047 {
00048
00049
00050
00051
00052
00053 class muSgsWallFunctionFvPatchScalarField
00054 :
00055 public fixedValueFvPatchScalarField
00056 {
00057
00058
00059
00060 word UName_;
00061
00062
00063 word rhoName_;
00064
00065
00066 word muName_;
00067
00068
00069 scalar kappa_;
00070
00071
00072 scalar E_;
00073
00074
00075 public:
00076
00077
00078 TypeName("muSgsWallFunction");
00079
00080
00081
00082
00083
00084 muSgsWallFunctionFvPatchScalarField
00085 (
00086 const fvPatch&,
00087 const DimensionedField<scalar, volMesh>&
00088 );
00089
00090
00091 muSgsWallFunctionFvPatchScalarField
00092 (
00093 const fvPatch&,
00094 const DimensionedField<scalar, volMesh>&,
00095 const dictionary&
00096 );
00097
00098
00099
00100
00101 muSgsWallFunctionFvPatchScalarField
00102 (
00103 const muSgsWallFunctionFvPatchScalarField&,
00104 const fvPatch&,
00105 const DimensionedField<scalar, volMesh>&,
00106 const fvPatchFieldMapper&
00107 );
00108
00109
00110 muSgsWallFunctionFvPatchScalarField
00111 (
00112 const muSgsWallFunctionFvPatchScalarField&
00113 );
00114
00115
00116 virtual tmp<fvPatchScalarField> clone() const
00117 {
00118 return tmp<fvPatchScalarField>
00119 (
00120 new muSgsWallFunctionFvPatchScalarField(*this)
00121 );
00122 }
00123
00124
00125 muSgsWallFunctionFvPatchScalarField
00126 (
00127 const muSgsWallFunctionFvPatchScalarField&,
00128 const DimensionedField<scalar, volMesh>&
00129 );
00130
00131
00132 virtual tmp<fvPatchScalarField> clone
00133 (
00134 const DimensionedField<scalar, volMesh>& iF
00135 ) const
00136 {
00137 return tmp<fvPatchScalarField>
00138 (
00139 new muSgsWallFunctionFvPatchScalarField
00140 (
00141 *this,
00142 iF
00143 )
00144 );
00145 }
00146
00147
00148
00149
00150
00151
00152
00153 virtual void evaluate
00154 (
00155 const Pstream::commsTypes commsType=Pstream::blocking
00156 );
00157
00158
00159
00160
00161 void write(Ostream&) const;
00162 };
00163
00164
00165
00166
00167 }
00168 }
00169 }
00170
00171
00172
00173 #endif
00174
00175