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 cellToFaceStencil_H
00037 #define cellToFaceStencil_H
00038
00039 #include <OpenFOAM/globalIndex.H>
00040 #include <OpenFOAM/boolList.H>
00041 #include <OpenFOAM/HashSet.H>
00042 #include <OpenFOAM/indirectPrimitivePatch.H>
00043
00044
00045
00046 namespace Foam
00047 {
00048
00049 class polyMesh;
00050
00051
00052
00053
00054
00055 class cellToFaceStencil
00056 :
00057 public labelListList
00058 {
00059
00060
00061 const polyMesh& mesh_;
00062
00063
00064 const globalIndex globalNumbering_;
00065
00066
00067
00068
00069
00070 cellToFaceStencil(const cellToFaceStencil&);
00071
00072
00073 void operator=(const cellToFaceStencil&);
00074
00075
00076 protected:
00077
00078
00079 static void merge
00080 (
00081 const label,
00082 const label,
00083 const labelList&,
00084 labelList&
00085 );
00086
00087
00088 static void merge(const label, const labelList&, labelList&);
00089
00090
00091 void validBoundaryFaces(boolList& isValidBFace) const;
00092
00093
00094 autoPtr<indirectPrimitivePatch> allCoupledFacesPatch() const;
00095
00096
00097 class unionEqOp
00098 {
00099 public:
00100 void operator()( labelList& x, const labelList& y ) const;
00101 };
00102
00103
00104 void insertFaceCells
00105 (
00106 const label exclude0,
00107 const label exclude1,
00108 const boolList& nonEmptyFace,
00109 const labelList& faceLabels,
00110 labelHashSet& globals
00111 ) const;
00112
00113
00114 labelList calcFaceCells
00115 (
00116 const boolList& nonEmptyFace,
00117 const labelList& faceLabels,
00118 labelHashSet& globals
00119 ) const;
00120
00121
00122
00123 void calcFaceStencil
00124 (
00125 const labelListList& globalCellCells,
00126 labelListList& faceStencil
00127 ) const;
00128
00129
00130 public:
00131
00132
00133
00134
00135 explicit cellToFaceStencil(const polyMesh&);
00136
00137
00138
00139
00140 const polyMesh& mesh() const
00141 {
00142 return mesh_;
00143 }
00144
00145
00146 const globalIndex& globalNumbering() const
00147 {
00148 return globalNumbering_;
00149 }
00150
00151
00152 const cellToFaceStencil& by_ref() const
00153 {
00154 return *this;
00155 }
00156
00157 };
00158
00159
00160
00161
00162 }
00163
00164
00165
00166 #endif
00167
00168