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 timeVaryingMappedTotalPressureFvPatchScalarField_H
00036 #define timeVaryingMappedTotalPressureFvPatchScalarField_H
00037
00038 #include <finiteVolume/timeVaryingMappedFixedValueFvPatchFields.H>
00039
00040
00041
00042 namespace Foam
00043 {
00044
00045
00046
00047
00048
00049 class timeVaryingMappedTotalPressureFvPatchScalarField
00050 :
00051 public timeVaryingMappedFixedValueFvPatchScalarField
00052 {
00053
00054
00055
00056 word UName_;
00057
00058
00059 word phiName_;
00060
00061
00062
00063 word rhoName_;
00064
00065
00066 scalar rho_;
00067
00068
00069 word psiName_;
00070
00071
00072 scalar gamma_;
00073
00074
00075 public:
00076
00077
00078 TypeName("timeVaryingMappedTotalPressure");
00079
00080
00081
00082
00083
00084 timeVaryingMappedTotalPressureFvPatchScalarField
00085 (
00086 const fvPatch&,
00087 const DimensionedField<scalar, volMesh>&
00088 );
00089
00090
00091 timeVaryingMappedTotalPressureFvPatchScalarField
00092 (
00093 const fvPatch&,
00094 const DimensionedField<scalar, volMesh>&,
00095 const dictionary&
00096 );
00097
00098
00099
00100 timeVaryingMappedTotalPressureFvPatchScalarField
00101 (
00102 const timeVaryingMappedTotalPressureFvPatchScalarField&,
00103 const fvPatch&,
00104 const DimensionedField<scalar, volMesh>&,
00105 const fvPatchFieldMapper&
00106 );
00107
00108
00109 timeVaryingMappedTotalPressureFvPatchScalarField
00110 (
00111 const timeVaryingMappedTotalPressureFvPatchScalarField&
00112 );
00113
00114
00115 virtual tmp<fvPatchScalarField> clone() const
00116 {
00117 return tmp<fvPatchScalarField>
00118 (
00119 new timeVaryingMappedTotalPressureFvPatchScalarField(*this)
00120 );
00121 }
00122
00123
00124 timeVaryingMappedTotalPressureFvPatchScalarField
00125 (
00126 const timeVaryingMappedTotalPressureFvPatchScalarField&,
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 timeVaryingMappedTotalPressureFvPatchScalarField(*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
00174
00175
00176 virtual void autoMap
00177 (
00178 const fvPatchFieldMapper&
00179 );
00180
00181
00182 virtual void rmap
00183 (
00184 const fvPatchScalarField&,
00185 const labelList&
00186 );
00187
00188
00189
00190
00191
00192
00193 virtual void updateCoeffs(const vectorField& Up);
00194
00195
00196 virtual void updateCoeffs();
00197
00198
00199
00200 virtual void write(Ostream&) const;
00201 };
00202
00203
00204
00205
00206 }
00207
00208
00209
00210 #endif
00211
00212