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