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 fixedGradientFvPatchField_H
00036 #define fixedGradientFvPatchField_H
00037
00038 #include <finiteVolume/fvPatchField.H>
00039
00040
00041
00042 namespace Foam
00043 {
00044
00045
00046
00047
00048
00049 template<class Type>
00050 class fixedGradientFvPatchField
00051 :
00052 public fvPatchField<Type>
00053 {
00054
00055
00056 Field<Type> gradient_;
00057
00058
00059 public:
00060
00061
00062 TypeName("fixedGradient");
00063
00064
00065
00066
00067
00068 fixedGradientFvPatchField
00069 (
00070 const fvPatch&,
00071 const DimensionedField<Type, volMesh>&
00072 );
00073
00074
00075 fixedGradientFvPatchField
00076 (
00077 const fvPatch&,
00078 const DimensionedField<Type, volMesh>&,
00079 const dictionary&
00080 );
00081
00082
00083
00084 fixedGradientFvPatchField
00085 (
00086 const fixedGradientFvPatchField<Type>&,
00087 const fvPatch&,
00088 const DimensionedField<Type, volMesh>&,
00089 const fvPatchFieldMapper&
00090 );
00091
00092
00093 fixedGradientFvPatchField
00094 (
00095 const fixedGradientFvPatchField<Type>&
00096 );
00097
00098
00099 virtual tmp<fvPatchField<Type> > clone() const
00100 {
00101 return tmp<fvPatchField<Type> >
00102 (
00103 new fixedGradientFvPatchField<Type>(*this)
00104 );
00105 }
00106
00107
00108 fixedGradientFvPatchField
00109 (
00110 const fixedGradientFvPatchField<Type>&,
00111 const DimensionedField<Type, volMesh>&
00112 );
00113
00114
00115 virtual tmp<fvPatchField<Type> > clone
00116 (
00117 const DimensionedField<Type, volMesh>& iF
00118 ) const
00119 {
00120 return tmp<fvPatchField<Type> >
00121 (
00122 new fixedGradientFvPatchField<Type>(*this, iF)
00123 );
00124 }
00125
00126
00127
00128
00129
00130
00131
00132 virtual Field<Type>& gradient()
00133 {
00134 return gradient_;
00135 }
00136
00137 virtual const Field<Type>& gradient() const
00138 {
00139 return gradient_;
00140 }
00141
00142
00143
00144
00145
00146 virtual void autoMap
00147 (
00148 const fvPatchFieldMapper&
00149 );
00150
00151
00152 virtual void rmap
00153 (
00154 const fvPatchField<Type>&,
00155 const labelList&
00156 );
00157
00158
00159
00160
00161
00162 virtual tmp<Field<Type> > snGrad() const
00163 {
00164 return gradient_;
00165 }
00166
00167
00168 virtual void evaluate
00169 (
00170 const Pstream::commsTypes commsType=Pstream::blocking
00171 );
00172
00173
00174
00175 virtual tmp<Field<Type> > valueInternalCoeffs
00176 (
00177 const tmp<scalarField>&
00178 ) const;
00179
00180
00181
00182 virtual tmp<Field<Type> > valueBoundaryCoeffs
00183 (
00184 const tmp<scalarField>&
00185 ) const;
00186
00187
00188
00189 virtual tmp<Field<Type> > gradientInternalCoeffs() const;
00190
00191
00192
00193 virtual tmp<Field<Type> > gradientBoundaryCoeffs() const;
00194
00195
00196
00197 virtual void write(Ostream&) const;
00198 };
00199
00200
00201
00202
00203 }
00204
00205
00206
00207 #ifdef NoRepository
00208 # include <finiteVolume/fixedGradientFvPatchField.C>
00209 #endif
00210
00211
00212
00213 #endif
00214
00215