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