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 inletOutletTotalTemperatureFvPatchScalarField_H
00036 #define inletOutletTotalTemperatureFvPatchScalarField_H
00037
00038 #include <finiteVolume/inletOutletFvPatchFields.H>
00039
00040
00041
00042 namespace Foam
00043 {
00044
00045
00046
00047
00048
00049 class inletOutletTotalTemperatureFvPatchScalarField
00050 :
00051 public inletOutletFvPatchScalarField
00052 {
00053
00054
00055
00056 word UName_;
00057
00058
00059 word phiName_;
00060
00061
00062 word psiName_;
00063
00064
00065 scalar gamma_;
00066
00067
00068 scalarField T0_;
00069
00070
00071 public:
00072
00073
00074 TypeName("inletOutletTotalTemperature");
00075
00076
00077
00078
00079
00080 inletOutletTotalTemperatureFvPatchScalarField
00081 (
00082 const fvPatch&,
00083 const DimensionedField<scalar, volMesh>&
00084 );
00085
00086
00087 inletOutletTotalTemperatureFvPatchScalarField
00088 (
00089 const fvPatch&,
00090 const DimensionedField<scalar, volMesh>&,
00091 const dictionary&
00092 );
00093
00094
00095
00096 inletOutletTotalTemperatureFvPatchScalarField
00097 (
00098 const inletOutletTotalTemperatureFvPatchScalarField&,
00099 const fvPatch&,
00100 const DimensionedField<scalar, volMesh>&,
00101 const fvPatchFieldMapper&
00102 );
00103
00104
00105 inletOutletTotalTemperatureFvPatchScalarField
00106 (
00107 const inletOutletTotalTemperatureFvPatchScalarField&
00108 );
00109
00110
00111 virtual tmp<fvPatchScalarField> clone() const
00112 {
00113 return tmp<fvPatchScalarField>
00114 (
00115 new inletOutletTotalTemperatureFvPatchScalarField(*this)
00116 );
00117 }
00118
00119
00120 inletOutletTotalTemperatureFvPatchScalarField
00121 (
00122 const inletOutletTotalTemperatureFvPatchScalarField&,
00123 const DimensionedField<scalar, volMesh>&
00124 );
00125
00126
00127 virtual tmp<fvPatchScalarField> clone
00128 (
00129 const DimensionedField<scalar, volMesh>& iF
00130 ) const
00131 {
00132 return tmp<fvPatchScalarField>
00133 (
00134 new inletOutletTotalTemperatureFvPatchScalarField(*this, iF)
00135 );
00136 }
00137
00138
00139
00140
00141
00142
00143
00144 const scalarField& T0() const
00145 {
00146 return T0_;
00147 }
00148
00149
00150 scalarField& T0()
00151 {
00152 return T0_;
00153 }
00154
00155
00156
00157
00158
00159 virtual void autoMap
00160 (
00161 const fvPatchFieldMapper&
00162 );
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 virtual void write(Ostream&) const;
00180 };
00181
00182
00183
00184
00185 }
00186
00187
00188
00189 #endif
00190
00191