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