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 totalPressureFvPatchScalarField_H
00036 #define totalPressureFvPatchScalarField_H
00037
00038 #include <finiteVolume/fixedValueFvPatchFields.H>
00039
00040
00041
00042 namespace Foam
00043 {
00044
00045
00046
00047
00048
00049 class totalPressureFvPatchScalarField
00050 :
00051 public fixedValueFvPatchScalarField
00052 {
00053
00054
00055
00056 word UName_;
00057
00058
00059 word phiName_;
00060
00061
00062
00063 word rhoName_;
00064
00065
00066 word psiName_;
00067
00068
00069 scalar gamma_;
00070
00071
00072 scalarField p0_;
00073
00074
00075 public:
00076
00077
00078 TypeName("totalPressure");
00079
00080
00081
00082
00083
00084 totalPressureFvPatchScalarField
00085 (
00086 const fvPatch&,
00087 const DimensionedField<scalar, volMesh>&
00088 );
00089
00090
00091 totalPressureFvPatchScalarField
00092 (
00093 const fvPatch&,
00094 const DimensionedField<scalar, volMesh>&,
00095 const dictionary&
00096 );
00097
00098
00099
00100 totalPressureFvPatchScalarField
00101 (
00102 const totalPressureFvPatchScalarField&,
00103 const fvPatch&,
00104 const DimensionedField<scalar, volMesh>&,
00105 const fvPatchFieldMapper&
00106 );
00107
00108
00109 totalPressureFvPatchScalarField
00110 (
00111 const totalPressureFvPatchScalarField&
00112 );
00113
00114
00115 virtual tmp<fvPatchScalarField> clone() const
00116 {
00117 return tmp<fvPatchScalarField>
00118 (
00119 new totalPressureFvPatchScalarField(*this)
00120 );
00121 }
00122
00123
00124 totalPressureFvPatchScalarField
00125 (
00126 const totalPressureFvPatchScalarField&,
00127 const DimensionedField<scalar, volMesh>&
00128 );
00129
00130
00131 virtual tmp<fvPatchScalarField> clone
00132 (
00133 const DimensionedField<scalar, volMesh>& iF
00134 ) const
00135 {
00136 return tmp<fvPatchScalarField>
00137 (
00138 new totalPressureFvPatchScalarField(*this, iF)
00139 );
00140 }
00141
00142
00143
00144
00145
00146
00147
00148 const word& UName() const
00149 {
00150 return UName_;
00151 }
00152
00153
00154
00155 word& UName()
00156 {
00157 return UName_;
00158 }
00159
00160
00161 scalar gamma() const
00162 {
00163 return gamma_;
00164 }
00165
00166
00167 scalar& gamma()
00168 {
00169 return gamma_;
00170 }
00171
00172
00173 const scalarField& p0() const
00174 {
00175 return p0_;
00176 }
00177
00178
00179 scalarField& p0()
00180 {
00181 return p0_;
00182 }
00183
00184
00185
00186
00187
00188 virtual void autoMap
00189 (
00190 const fvPatchFieldMapper&
00191 );
00192
00193
00194 virtual void rmap
00195 (
00196 const fvPatchScalarField&,
00197 const labelList&
00198 );
00199
00200
00201
00202
00203
00204
00205 virtual void updateCoeffs(const vectorField& Up);
00206
00207
00208 virtual void updateCoeffs();
00209
00210
00211
00212 virtual void write(Ostream&) const;
00213 };
00214
00215
00216
00217
00218 }
00219
00220
00221
00222 #endif
00223
00224