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