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