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