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
00043
00044
00045 #ifndef turbulentInletFvPatchField_H
00046 #define turbulentInletFvPatchField_H
00047
00048 #include <OpenFOAM/Random.H>
00049 #include <finiteVolume/fixedValueFvPatchFields.H>
00050
00051
00052
00053 namespace Foam
00054 {
00055
00056
00057
00058
00059
00060 template<class Type>
00061 class turbulentInletFvPatchField
00062 :
00063 public fixedValueFvPatchField<Type>
00064 {
00065
00066
00067 Random ranGen_;
00068 Type fluctuationScale_;
00069 Field<Type> referenceField_;
00070 scalar alpha_;
00071 label curTimeIndex_;
00072
00073
00074 public:
00075
00076
00077 TypeName("turbulentInlet");
00078
00079
00080
00081
00082
00083 turbulentInletFvPatchField
00084 (
00085 const fvPatch&,
00086 const DimensionedField<Type, volMesh>&
00087 );
00088
00089
00090 turbulentInletFvPatchField
00091 (
00092 const fvPatch&,
00093 const DimensionedField<Type, volMesh>&,
00094 const dictionary&
00095 );
00096
00097
00098
00099 turbulentInletFvPatchField
00100 (
00101 const turbulentInletFvPatchField<Type>&,
00102 const fvPatch&,
00103 const DimensionedField<Type, volMesh>&,
00104 const fvPatchFieldMapper&
00105 );
00106
00107
00108 turbulentInletFvPatchField
00109 (
00110 const turbulentInletFvPatchField<Type>&
00111 );
00112
00113
00114 virtual tmp<fvPatchField<Type> > clone() const
00115 {
00116 return tmp<fvPatchField<Type> >
00117 (
00118 new turbulentInletFvPatchField<Type>(*this)
00119 );
00120 }
00121
00122
00123 turbulentInletFvPatchField
00124 (
00125 const turbulentInletFvPatchField<Type>&,
00126 const DimensionedField<Type, volMesh>&
00127 );
00128
00129
00130 virtual tmp<fvPatchField<Type> > clone
00131 (
00132 const DimensionedField<Type, volMesh>& iF
00133 ) const
00134 {
00135 return tmp<fvPatchField<Type> >
00136 (
00137 new turbulentInletFvPatchField<Type>(*this, iF)
00138 );
00139 }
00140
00141
00142
00143
00144
00145
00146
00147 const Type& fluctuationScale() const
00148 {
00149 return fluctuationScale_;
00150 }
00151
00152
00153 Type& fluctuationScale()
00154 {
00155 return fluctuationScale_;
00156 }
00157
00158
00159 const Field<Type>& referenceField() const
00160 {
00161 return referenceField_;
00162 }
00163
00164
00165 Field<Type>& referenceField()
00166 {
00167 return referenceField_;
00168 }
00169
00170
00171
00172
00173
00174 virtual void autoMap
00175 (
00176 const fvPatchFieldMapper&
00177 );
00178
00179
00180 virtual void rmap
00181 (
00182 const fvPatchField<Type>&,
00183 const labelList&
00184 );
00185
00186
00187
00188
00189
00190 virtual void updateCoeffs();
00191
00192
00193
00194 virtual void write(Ostream&) const;
00195 };
00196
00197
00198
00199
00200 }
00201
00202
00203
00204 #ifdef NoRepository
00205 # include <finiteVolume/turbulentInletFvPatchField.C>
00206 #endif
00207
00208
00209
00210 #endif
00211
00212