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