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 nutRoughWallFunctionFvPatchScalarField_H
00043 #define nutRoughWallFunctionFvPatchScalarField_H
00044
00045 #include <incompressibleRASModels/nutWallFunctionFvPatchScalarField.H>
00046
00047
00048
00049 namespace Foam
00050 {
00051 namespace incompressible
00052 {
00053 namespace RASModels
00054 {
00055
00056
00057
00058
00059
00060 class nutRoughWallFunctionFvPatchScalarField
00061 :
00062 public nutWallFunctionFvPatchScalarField
00063 {
00064 protected:
00065
00066
00067
00068
00069 scalarField Ks_;
00070
00071
00072 scalarField Cs_;
00073
00074
00075
00076
00077
00078 virtual scalar fnRough(const scalar KsPlus, const scalar Cs) const;
00079
00080
00081 virtual tmp<scalarField> calcNut() const;
00082
00083
00084 public:
00085
00086
00087 TypeName("nutRoughWallFunction");
00088
00089
00090
00091
00092
00093 nutRoughWallFunctionFvPatchScalarField
00094 (
00095 const fvPatch&,
00096 const DimensionedField<scalar, volMesh>&
00097 );
00098
00099
00100 nutRoughWallFunctionFvPatchScalarField
00101 (
00102 const fvPatch&,
00103 const DimensionedField<scalar, volMesh>&,
00104 const dictionary&
00105 );
00106
00107
00108
00109
00110 nutRoughWallFunctionFvPatchScalarField
00111 (
00112 const nutRoughWallFunctionFvPatchScalarField&,
00113 const fvPatch&,
00114 const DimensionedField<scalar, volMesh>&,
00115 const fvPatchFieldMapper&
00116 );
00117
00118
00119 nutRoughWallFunctionFvPatchScalarField
00120 (
00121 const nutRoughWallFunctionFvPatchScalarField&
00122 );
00123
00124
00125 virtual tmp<fvPatchScalarField> clone() const
00126 {
00127 return tmp<fvPatchScalarField>
00128 (
00129 new nutRoughWallFunctionFvPatchScalarField(*this)
00130 );
00131 }
00132
00133
00134 nutRoughWallFunctionFvPatchScalarField
00135 (
00136 const nutRoughWallFunctionFvPatchScalarField&,
00137 const DimensionedField<scalar, volMesh>&
00138 );
00139
00140
00141 virtual tmp<fvPatchScalarField> clone
00142 (
00143 const DimensionedField<scalar, volMesh>& iF
00144 ) const
00145 {
00146 return tmp<fvPatchScalarField>
00147 (
00148 new nutRoughWallFunctionFvPatchScalarField(*this, iF)
00149 );
00150 }
00151
00152
00153
00154
00155
00156
00157 scalarField& Ks()
00158 {
00159 return Ks_;
00160 }
00161
00162 scalarField& Cs()
00163 {
00164 return Cs_;
00165 }
00166
00167
00168
00169
00170 virtual void autoMap(const fvPatchFieldMapper&);
00171
00172
00173 virtual void rmap
00174 (
00175 const fvPatchScalarField&,
00176 const labelList&
00177 );
00178
00179
00180
00181
00182
00183 virtual void write(Ostream&) const;
00184 };
00185
00186
00187
00188
00189 }
00190 }
00191 }
00192
00193
00194
00195 #endif
00196
00197