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