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 alphaFixedPressureFvPatchScalarField_H
00036 #define alphaFixedPressureFvPatchScalarField_H
00037
00038 #include <finiteVolume/fixedValueFvPatchFields.H>
00039
00040
00041
00042 namespace Foam
00043 {
00044
00045
00046
00047
00048
00049 class alphaFixedPressureFvPatchScalarField
00050 :
00051 public fixedValueFvPatchScalarField
00052 {
00053
00054
00055
00056 scalarField p_;
00057
00058
00059 public:
00060
00061
00062 TypeName("alphaFixedPressure");
00063
00064
00065
00066
00067
00068 alphaFixedPressureFvPatchScalarField
00069 (
00070 const fvPatch&,
00071 const DimensionedField<scalar, volMesh>&
00072 );
00073
00074
00075 alphaFixedPressureFvPatchScalarField
00076 (
00077 const fvPatch&,
00078 const DimensionedField<scalar, volMesh>&,
00079 const dictionary&
00080 );
00081
00082
00083
00084 alphaFixedPressureFvPatchScalarField
00085 (
00086 const alphaFixedPressureFvPatchScalarField&,
00087 const fvPatch&,
00088 const DimensionedField<scalar, volMesh>&,
00089 const fvPatchFieldMapper&
00090 );
00091
00092
00093 alphaFixedPressureFvPatchScalarField
00094 (
00095 const alphaFixedPressureFvPatchScalarField&
00096 );
00097
00098
00099 virtual tmp<fvPatchScalarField> clone() const
00100 {
00101 return tmp<fvPatchScalarField>
00102 (
00103 new alphaFixedPressureFvPatchScalarField(*this)
00104 );
00105 }
00106
00107
00108 alphaFixedPressureFvPatchScalarField
00109 (
00110 const alphaFixedPressureFvPatchScalarField&,
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 alphaFixedPressureFvPatchScalarField(*this, iF)
00123 );
00124 }
00125
00126
00127
00128
00129
00130
00131
00132 const scalarField& p() const
00133 {
00134 return p_;
00135 }
00136
00137
00138 scalarField& p()
00139 {
00140 return p_;
00141 }
00142
00143
00144
00145
00146
00147 virtual void autoMap
00148 (
00149 const fvPatchFieldMapper&
00150 );
00151
00152
00153 virtual void rmap
00154 (
00155 const fvPatchScalarField&,
00156 const labelList&
00157 );
00158
00159
00160
00161
00162
00163 virtual void updateCoeffs();
00164
00165
00166
00167 virtual void write(Ostream&) const;
00168 };
00169
00170
00171
00172
00173 }
00174
00175
00176
00177 #endif
00178
00179