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 #ifndef fvPatch_H
00037 #define fvPatch_H
00038
00039 #include <OpenFOAM/polyPatch.H>
00040 #include <OpenFOAM/labelList.H>
00041 #include <OpenFOAM/SubList.H>
00042 #include <OpenFOAM/typeInfo.H>
00043 #include <OpenFOAM/tmp.H>
00044 #include <OpenFOAM/primitiveFields.H>
00045 #include <OpenFOAM/SubField.H>
00046 #include <finiteVolume/fvPatchFieldsFwd.H>
00047 #include <OpenFOAM/autoPtr.H>
00048 #include <OpenFOAM/runTimeSelectionTables.H>
00049
00050
00051
00052 namespace Foam
00053 {
00054
00055 class fvBoundaryMesh;
00056 class surfaceInterpolation;
00057
00058
00059
00060
00061
00062 class fvPatch
00063 {
00064
00065
00066
00067 const polyPatch& polyPatch_;
00068
00069
00070 const fvBoundaryMesh& boundaryMesh_;
00071
00072
00073
00074
00075
00076 fvPatch(const fvPatch&);
00077
00078
00079 void operator=(const fvPatch&);
00080
00081
00082 protected:
00083
00084
00085
00086
00087 virtual void makeWeights(scalarField&) const;
00088
00089
00090 virtual void makeDeltaCoeffs(scalarField&) const;
00091
00092
00093 virtual void initMovePoints();
00094
00095
00096 virtual void movePoints();
00097
00098
00099 public:
00100
00101 typedef fvBoundaryMesh BoundaryMesh;
00102
00103 friend class fvBoundaryMesh;
00104 friend class surfaceInterpolation;
00105
00106
00107 TypeName(polyPatch::typeName_());
00108
00109
00110
00111
00112 declareRunTimeSelectionTable
00113 (
00114 autoPtr,
00115 fvPatch,
00116 polyPatch,
00117 (const polyPatch& patch, const fvBoundaryMesh& bm),
00118 (patch, bm)
00119 );
00120
00121
00122
00123
00124
00125 fvPatch(const polyPatch&, const fvBoundaryMesh&);
00126
00127
00128
00129
00130
00131 static autoPtr<fvPatch> New(const polyPatch&, const fvBoundaryMesh&);
00132
00133
00134
00135
00136 virtual ~fvPatch();
00137
00138
00139
00140
00141
00142
00143
00144 const polyPatch& patch() const
00145 {
00146 return polyPatch_;
00147 }
00148
00149
00150 const word& name() const
00151 {
00152 return polyPatch_.name();
00153 }
00154
00155
00156 virtual label size() const
00157 {
00158 return polyPatch_.size();
00159 }
00160
00161
00162 bool coupled() const
00163 {
00164 return polyPatch_.coupled();
00165 }
00166
00167
00168 static bool constraintType(const word& pt);
00169
00170
00171 static wordList constraintTypes();
00172
00173
00174 label index() const
00175 {
00176 return polyPatch_.index();
00177 }
00178
00179
00180 const fvBoundaryMesh& boundaryMesh() const
00181 {
00182 return boundaryMesh_;
00183 }
00184
00185
00186 template<class T>
00187 const typename List<T>::subList patchSlice(const List<T>& l) const
00188 {
00189 return typename List<T>::subList(l, size(), polyPatch_.start());
00190 }
00191
00192
00193 virtual const unallocLabelList& faceCells() const;
00194
00195
00196
00197
00198
00199 const vectorField& Cf() const;
00200
00201
00202 tmp<vectorField> Cn() const;
00203
00204
00205 const vectorField& Sf() const;
00206
00207
00208 const scalarField& magSf() const;
00209
00210
00211 tmp<vectorField> nf() const;
00212
00213
00214
00215
00216 virtual tmp<vectorField> delta() const;
00217
00218
00219
00220
00221
00222 const scalarField& weights() const;
00223
00224
00225
00226
00227 const scalarField& deltaCoeffs() const;
00228
00229
00230
00231
00232
00233 template<class Type>
00234 tmp<Field<Type> > patchInternalField(const UList<Type>&) const;
00235
00236
00237 template<class GeometricField, class Type>
00238 const typename GeometricField::PatchFieldType& patchField
00239 (
00240 const GeometricField&
00241 ) const;
00242
00243
00244
00245
00246
00247
00248 template<class GeometricField, class Type>
00249 const typename GeometricField::PatchFieldType& lookupPatchField
00250 (
00251 const word& name,
00252 const GeometricField* = NULL,
00253 const Type* = NULL
00254 ) const;
00255 };
00256
00257
00258
00259
00260 }
00261
00262
00263
00264 #ifdef NoRepository
00265 # include <finiteVolume/fvPatchTemplates.C>
00266 #endif
00267
00268
00269
00270 #endif
00271
00272