41 if (faces.
size() != 6)
46 for (
const face&
f : faces)
65 if (cellFaces.size() != 6)
70 for (
const label facei : cellFaces)
72 if (meshFaces[facei].size() != 4)
116 const bool checkOnly,
123 if (!faceSizeMatch(faces, myFaces))
136 label numVert = calcLocalFaces(faces, myFaces);
138 if (numVert != vertPerCell)
144 calcEdgeAddressing(numVert);
147 calcPointFaceIndex();
150 vertLabels_.setSize(vertPerCell);
151 faceLabels_.setSize(facePerCell);
161 const face& face4 = localFaces_[face4I];
162 label face4vert0 = 0;
164 vertLabels_[0] = pointMap_[face4[face4vert0]];
165 faceLabels_[4] = faceMap_[face4I];
173 !(owner[faceMap_[face4I]] == celli)
175 vertLabels_[1] = pointMap_[face4[face4vert1]];
183 !(owner[faceMap_[face4I]] == celli)
185 vertLabels_[2] = pointMap_[face4[face4vert2]];
193 !(owner[faceMap_[face4I]] == celli)
195 vertLabels_[3] = pointMap_[face4[face4vert3]];
206 faceLabels_[0] = faceMap_[face0I];
207 const face& face0 = localFaces_[face0I];
209 label face0vert0 = pointFaceIndex_[face4[face4vert0]][face0I];
217 (owner[faceMap_[face0I]] == celli)
219 vertLabels_[4] = pointMap_[face0[face0vert4]];
227 (owner[faceMap_[face0I]] == celli)
229 vertLabels_[7] = pointMap_[face0[face0vert7]];
240 const face& face5 = localFaces_[face5I];
241 faceLabels_[5] = faceMap_[face5I];
243 label face5vert4 = pointFaceIndex_[face0[face0vert4]][face5I];
251 (owner[faceMap_[face5I]] == celli)
253 vertLabels_[5] = pointMap_[face5[face5vert5]];
261 (owner[faceMap_[face5I]] == celli)
263 vertLabels_[6] = pointMap_[face5[face5vert6]];
274 faceLabels_[2] = faceMap_[face2I];
285 faceLabels_[1] = faceMap_[face1I];
304 return facePerCell*vertPerCell;
337 shape.
reset(model(), vertLabels());
Various functions to operate on Lists.
A 1D vector of objects of type <T>, where the size of the vector is known and can be used for subscri...
void size(const label n)
Older name for setAddressableSize.
Base class for cellshape matchers (hexMatch, prismMatch, etc.). These are classes which given a mesh ...
const cellModel & model() const
labelListList pointFaceIndex_
pointFaceIndex[localVertI][localFacei] is index in localFace
labelList faceMap_
Map from local to mesh face numbering.
label calcLocalFaces(const faceList &faces, const labelList &myFaces)
Calculates localFaces. Returns number of local vertices (or -1.
labelList pointMap_
Map from local to mesh vertex numbering.
labelList faceLabels_
After matching: holds mesh faces in cellmodel order.
static label nextVert(const label, const label, const bool)
Step along face either in righthand or lefthand direction.
labelList vertLabels_
After matching: holds mesh vertices in cellmodel order.
const labelList & vertLabels() const
labelList faceSize_
Number of vertices per face in localFaces_.
label otherFace(const label numVert, const label v0, const label v1, const label localFacei) const
Given start,end of edge lookup both faces sharing it and return.
void calcEdgeAddressing(const label numVert)
Fill edge (start, end) to face number.
faceList localFaces_
Faces using local vertex numbering.
cellMatcher(const cellMatcher &)=delete
No copy construct.
void calcPointFaceIndex()
Fill vertex/face to index in face data structure.
An analytical geometric cellShape.
void reset(const cellModel &model, const labelUList &labels, const bool doCollapse=false)
Reset from components.
A face is a list of labels corresponding to mesh vertices.
virtual bool faceSizeMatch(const faceList &, const labelList &) const
Check whether number of face sizes match the shape.
static bool test(const UList< face > &faces)
Test if given list of faces satisfies criteria for HEX. (6 quad).
virtual bool matchShape(const bool checkOnly, const faceList &faces, const labelList &faceOwner, const label celli, const labelList &myFaces)
Low level shape recognition. Return true if matches.
virtual bool matches(const primitiveMesh &mesh, const label celli, cellShape &shape)
Like isA but also constructs a cellShape (if shape matches).
virtual label faceHashValue() const
Hash value of all face sizes of this shape. Can be used for.
hexMatcher()
Default construct.
Cell-face mesh analysis engine.
List< label > labelList
A List of labels.
List< face > faceList
List of faces.
static bool checkFaceSizeMatch(const UList< face > &faces)
UList< label > labelUList
A UList of labels.