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