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