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