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