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