A list of faces which address into the list of points. More...
Public Types | |
enum | surfaceTopo { MANIFOLD, OPEN, ILLEGAL } |
Enumeration defining the surface type. Used in check routines. More... | |
typedef Face | FaceType |
typedef FaceList< Face > | FaceListType |
typedef PointField | PointFieldType |
Public Member Functions | |
PrimitivePatch (const FaceList< Face > &faces, const Field< PointType > &points) | |
Construct from components. More... | |
PrimitivePatch (const Xfer< FaceList< Face >> &faces, const Xfer< List< PointType >> &points) | |
Construct from components. More... | |
PrimitivePatch (FaceList< Face > &faces, Field< PointType > &points, const bool reuse) | |
Construct from components, reuse storage. More... | |
PrimitivePatch (const PrimitivePatch< Face, FaceList, PointField, PointType > &) | |
Construct as copy. More... | |
virtual | ~PrimitivePatch () |
Destructor. More... | |
void | clearOut () |
void | clearGeom () |
void | clearTopology () |
void | clearPatchMeshAddr () |
const Field< PointType > & | points () const |
Return reference to global points. More... | |
label | nPoints () const |
Return number of points supporting patch faces. More... | |
label | nEdges () const |
Return number of edges in patch. More... | |
const edgeList & | edges () const |
Return list of edges, address into LOCAL point list. More... | |
label | nInternalEdges () const |
Number of internal edges. More... | |
bool | isInternalEdge (const label edgeI) const |
Is internal edge? More... | |
const labelList & | boundaryPoints () const |
Return list of boundary points,. More... | |
const labelListList & | faceFaces () const |
Return face-face addressing. More... | |
const labelListList & | edgeFaces () const |
Return edge-face addressing. More... | |
const labelListList & | faceEdges () const |
Return face-edge addressing. More... | |
const labelListList & | pointEdges () const |
Return point-edge addressing. More... | |
const labelListList & | pointFaces () const |
Return point-face addressing. More... | |
const List< Face > & | localFaces () const |
Return patch faces addressing into local point list. More... | |
const labelList & | meshPoints () const |
Return labelList of mesh points in patch. They are constructed. More... | |
const Map< label > & | meshPointMap () const |
Mesh point map. Given the global point index find its. More... | |
const Field< PointType > & | localPoints () const |
Return pointField of points in patch. More... | |
const labelList & | localPointOrder () const |
Return orders the local points for most efficient search. More... | |
label | whichPoint (const label gp) const |
Given a global point index, return the local point index. More... | |
label | whichEdge (const edge &) const |
Given an edge in local point labels, return its. More... | |
labelList | meshEdges (const edgeList &allEdges, const labelListList &cellEdges, const labelList &faceCells) const |
Return labels of patch edges in the global edge list using. More... | |
labelList | meshEdges (const edgeList &allEdges, const labelListList &pointEdges) const |
Return labels of patch edges in the global edge list using. More... | |
const Field< PointType > & | faceCentres () const |
Return face centres for patch. More... | |
const Field< PointType > & | faceNormals () const |
Return face normals for patch. More... | |
const Field< PointType > & | pointNormals () const |
Return point normals for patch. More... | |
template<class ToPatch > | |
List< objectHit > | projectPoints (const ToPatch &targetPatch, const Field< PointType > &projectionDirection, const intersection::algorithm=intersection::FULL_RAY, const intersection::direction=intersection::VECTOR) const |
Project vertices of patch onto another patch. More... | |
template<class ToPatch > | |
List< objectHit > | projectFaceCentres (const ToPatch &targetPatch, const Field< PointType > &projectionDirection, const intersection::algorithm=intersection::FULL_RAY, const intersection::direction=intersection::VECTOR) const |
Project vertices of patch onto another patch. More... | |
const labelListList & | edgeLoops () const |
Return list of closed loops of boundary vertices. More... | |
surfaceTopo | surfaceType () const |
Calculate surface type formed by patch. More... | |
bool | checkTopology (const bool report=false, labelHashSet *setPtr=nullptr) const |
Check surface formed by patch for manifoldness (see above). More... | |
bool | checkPointManifold (const bool report=false, labelHashSet *setPtr=nullptr) const |
Checks primitivePatch for faces sharing point but not edge. More... | |
virtual void | movePoints (const Field< PointType > &) |
Correct patch after moving points. More... | |
void | operator= (const PrimitivePatch< Face, FaceList, PointField, PointType > &) |
Assignment. More... | |
template<class ToPatch > | |
Foam::List< Foam::objectHit > | projectPoints (const ToPatch &targetPatch, const Field< PointType > &projectionDirection, const intersection::algorithm alg, const intersection::direction dir) const |
template<class ToPatch > | |
Foam::List< Foam::objectHit > | projectFaceCentres (const ToPatch &targetPatch, const Field< PointType > &projectionDirection, const intersection::algorithm alg, const intersection::direction dir) const |
A list of faces which address into the list of points.
The class is templated on the face type (e.g. triangle, polygon etc.) and on the list type of faces and points so that it can refer to existing lists using UList and const pointField& or hold the storage using List and pointField.
Definition at line 87 of file PrimitivePatch.H.
typedef Face FaceType |
Definition at line 97 of file PrimitivePatch.H.
typedef FaceList<Face> FaceListType |
Definition at line 98 of file PrimitivePatch.H.
typedef PointField PointFieldType |
Definition at line 99 of file PrimitivePatch.H.
enum surfaceTopo |
Enumeration defining the surface type. Used in check routines.
Enumerator | |
---|---|
MANIFOLD | |
OPEN | |
ILLEGAL |
Definition at line 105 of file PrimitivePatch.H.
PrimitivePatch | ( | const FaceList< Face > & | faces, |
const Field< PointType > & | points | ||
) |
Construct from components.
Definition at line 39 of file PrimitivePatch.C.
Referenced by PrimitivePatch< Face, ::Foam::List, pointField, point >::PrimitivePatch().
PrimitivePatch | ( | const Xfer< FaceList< Face >> & | faces, |
const Xfer< List< PointType >> & | points | ||
) |
Construct from components.
Definition at line 75 of file PrimitivePatch.C.
PrimitivePatch | ( | FaceList< Face > & | faces, |
Field< PointType > & | points, | ||
const bool | reuse | ||
) |
Construct from components, reuse storage.
Definition at line 111 of file PrimitivePatch.C.
PrimitivePatch | ( | const PrimitivePatch< Face, FaceList, PointField, PointType > & | pp | ) |
Construct as copy.
Definition at line 148 of file PrimitivePatch.C.
|
virtual |
Destructor.
Definition at line 185 of file PrimitivePatch.C.
Referenced by PrimitivePatch< Face, ::Foam::List, pointField, point >::PrimitivePatch().
void clearOut | ( | ) |
Definition at line 126 of file PrimitivePatchClear.C.
Referenced by PrimitivePatch< Face, ::Foam::List, pointField, point >::clearPatchMeshAddr(), and processorPolyPatch::updateMesh().
void clearGeom | ( | ) |
Definition at line 41 of file PrimitivePatchClear.C.
Referenced by polyPatch::clearGeom(), and polyPatch::updateMesh().
void clearTopology | ( | ) |
Definition at line 64 of file PrimitivePatchClear.C.
Referenced by polyPatch::clearAddressing(), and PrimitivePatch< Face, ::Foam::List, pointField, point >::clearGeom().
void clearPatchMeshAddr | ( | ) |
Definition at line 104 of file PrimitivePatchClear.C.
Referenced by polyPatch::clearAddressing(), and PrimitivePatch< Face, ::Foam::List, pointField, point >::clearTopology().
|
inline |
Return reference to global points.
Definition at line 284 of file PrimitivePatch.H.
Referenced by booleanSurface::booleanSurface(), PatchTools::calcBounds(), Foam::meshTools::calcBoxPointNormals(), triSurfaceTools::calcInterpolationWeights(), addPatchCellLayer::calcSidePatch(), cyclicAMIPolyPatch::calcTransforms(), cyclicPolyPatch::calcTransforms(), PatchTools::checkOrientation(), searchableSurfaces::checkQuality(), triSurfaceTools::classify(), distributedTriSurfaceMesh::distribute(), edgeIntersections::edgeIntersections(), extrudePatchMesh::extrudePatchMesh(), patchProbes::findElements(), mappedPatchBase::findSamples(), PatchTools::gatherAndMerge(), triSurfaceMesh::getNormal(), distributedTriSurfaceMesh::getNormal(), processorPolyPatch::initOrder(), cyclicPolyPatch::initOrder(), momentOfInertia::massPropertiesShell(), momentOfInertia::massPropertiesSolid(), coupledPolyPatch::matchTolerance(), NamedEnum< directionType, 3 >::names(), combineEqOp< Type, TrackingData >::operator()(), nearestEqOp::operator()(), triSurface::operator=(), MeshedSurface< Foam::face >::operator=(), oldCyclicPolyPatch::order(), processorPolyPatch::order(), cyclicPolyPatch::order(), orientedSurface::orient(), orientedSurface::orientedSurface(), distributedTriSurfaceMesh::overlappingSurface(), pairPatchAgglomeration::patchLevel(), sampledPlane::points(), sampledThresholdCellFaces::points(), sampledCuttingPlane::points(), distanceSurface::points(), sampledPatch::points(), sampledIsoSurface::points(), sampledTriSurfaceMesh::points(), powerLawLopesdaCostaZone::powerLawLopesdaCostaZone(), boundaryMesh::read(), Foam::selectCutEdges(), boundaryMesh::setFeatureEdges(), patchInjectionBase::setPositionAndCell(), addPatchCellLayer::setRefinement(), triSurfacePointGeoMesh::size(), cellDistFuncs::smallestDist(), triSurfaceTools::surfaceNormal(), triSurfaceTools::surfaceSide(), triSurfaceSearch::tree(), triSurfaceTools::triangulate(), patchEdgeFaceInfo::updateEdge(), patchInjectionBase::updateMesh(), and surfaceLocation::write().
|
inline |
Return number of points supporting patch faces.
Definition at line 295 of file PrimitivePatch.H.
Referenced by booleanSurface::booleanSurface(), Foam::meshTools::calcBoxPointNormals(), cyclicPolyPatch::calcTransforms(), PointEdgeWave< Type, TrackingData >::countPatchType(), snappySnapDriver::detectNearSurfaces(), snappySnapDriver::doSnap(), boundaryMesh::getNPoints(), snappySnapDriver::getZoneSurfacePoints(), triSurfaceTools::greenRefine(), PatchTools::matchPoints(), triSurfaceTools::mergePoints(), globalMeshData::mergePoints(), medialAxisMeshMover::move(), listPlusEqOp< T >::operator()(), PatchTools::pointNormals(), mappedPatchBase::sampleSize(), addPatchCellLayer::setRefinement(), PatchTools::subsetMap(), surfaceIntersection::surfaceIntersection(), syncTools::syncPointList(), and AC3DsurfaceFormat< Face >::write().
|
inline |
Return number of edges in patch.
Definition at line 301 of file PrimitivePatch.H.
Referenced by booleanSurface::booleanSurface(), createShellMesh::calcPointRegions(), addPatchCellLayer::calcSidePatch(), PatchTools::checkOrientation(), triSurfaceTools::collapseEdges(), patchPatchDist::correct(), edgeIntersections::edgeIntersections(), PatchTools::edgeNormals(), edgeSurface::edgeSurface(), extrudePatchMesh::extrudePatchMesh(), surfaceFeatures::findFeatures(), triSurfaceTools::greenRefine(), PatchTools::matchEdges(), meshRefinement::mergeBaffles(), surfaceFeatures::nearestFeatEdge(), polyBoundaryMesh::neighbourEdges(), listPlusEqOp< T >::operator()(), orientedSurface::orient(), boundaryMesh::read(), boundaryMesh::readTriSurface(), edgeIntersections::removeDegenerates(), addPatchCellLayer::setRefinement(), surfaceFeatures::surfaceFeatures(), surfaceIntersection::surfaceIntersection(), syncTools::syncEdgeList(), surfaceFeatures::trimFeatures(), and searchableSurfaces::writeStats().
const Foam::edgeList & edges | ( | ) | const |
Return list of edges, address into LOCAL point list.
Definition at line 228 of file PrimitivePatch.C.
Referenced by booleanSurface::booleanSurface(), createShellMesh::calcPointRegions(), addPatchCellLayer::calcSidePatch(), snappySnapDriver::calcSnapDistance(), searchableSurfaces::checkIntersection(), Foam::checkNonManifoldEdge(), PatchTools::checkOrientation(), triSurfaceTools::collapseEdges(), patchPatchDist::correct(), cyclicPolyPatch::coupledEdges(), PatchTools::edgeOwner(), edgeSurface::edgeSurface(), triSurfaceTools::getEdge(), combineFaces::getOutsideFace(), triSurfaceTools::getVertexTriangles(), triSurfaceTools::getVertexVertices(), triSurfaceTools::greenRefine(), PatchTools::matchEdges(), triSurfaceTools::maxEdge(), polyPatch::meshEdges(), triSurfaceTools::minEdge(), edgeIntersections::minEdgeLength(), slidingInterface::modifyMotionPoints(), PrimitivePatch< Face, ::Foam::List, pointField, point >::movePoints(), surfaceFeatures::nearestEdges(), surfaceFeatures::nearestFeatEdge(), surfaceFeatures::nearestSamples(), surfaceFeatures::nearestSurfEdge(), PrimitivePatch< Face, ::Foam::List, pointField, point >::nEdges(), polyBoundaryMesh::neighbourEdges(), listPlusEqOp< T >::operator()(), triSurfaceTools::oppositeEdge(), triSurfaceTools::oppositeVertex(), triSurfaceTools::otherEdges(), Foam::selectBox(), Foam::selectCutEdges(), boundaryMesh::setFeatureEdges(), perfectInterface::setRefinement(), addPatchCellLayer::setRefinement(), PatchTools::sortedEdgeFaces(), PatchTools::sortedPointEdges(), surfaceFeatures::surfaceFeatures(), surfaceIntersection::surfaceIntersection(), triSurfaceTools::surfaceSide(), syncTools::syncEdgeMap(), surfaceFeatures::trimFeatures(), patchFaceOrientation::updateEdge(), patchEdgeFaceInfo::updateEdge(), patchFaceOrientation::updateFace(), surfaceLocation::write(), and surfaceFeatures::writeObj().
Foam::label nInternalEdges | ( | ) | const |
Number of internal edges.
Definition at line 248 of file PrimitivePatch.C.
Referenced by patchPatchDist::correct(), PrimitivePatch< Face, ::Foam::List, pointField, point >::edges(), extrudePatchMesh::extrudePatchMesh(), combineFaces::getOutsideFace(), PrimitivePatch< Face, ::Foam::List, pointField, point >::isInternalEdge(), PrimitivePatch< Face, ::Foam::List, pointField, point >::nEdges(), polyBoundaryMesh::neighbourEdges(), and addPatchCellLayer::setRefinement().
|
inline |
Is internal edge?
Definition at line 313 of file PrimitivePatch.H.
const Foam::labelList & boundaryPoints | ( | ) | const |
Return list of boundary points,.
address into LOCAL point list
Definition at line 268 of file PrimitivePatch.C.
Referenced by PrimitivePatch< Face, ::Foam::List, pointField, point >::isInternalEdge(), PrimitivePatch< Face, ::Foam::List, pointField, point >::nInternalEdges(), and listPlusEqOp< T >::operator()().
const Foam::labelListList & faceFaces | ( | ) | const |
Return face-face addressing.
Definition at line 288 of file PrimitivePatch.C.
Referenced by pairPatchAgglomeration::agglomerate(), PrimitivePatch< Face, ::Foam::List, pointField, point >::boundaryPoints(), triSurfaceMesh::getNormal(), cellDistFuncs::getPointNeighbours(), and PrimitivePatch< Face, ::Foam::List, pointField, point >::isInternalEdge().
const Foam::labelListList & edgeFaces | ( | ) | const |
Return edge-face addressing.
Definition at line 308 of file PrimitivePatch.C.
Referenced by booleanSurface::booleanSurface(), createShellMesh::calcPointRegions(), addPatchCellLayer::calcSidePatch(), searchableSurfaces::checkClosed(), Foam::checkNonManifoldEdge(), PatchTools::checkOrientation(), triSurfaceTools::collapseEdges(), PatchTools::edgeNormals(), PatchTools::edgeOwner(), triSurfaceTools::edgeSide(), edgeSurface::edgeSurface(), extendedEdgeMesh::extendedEdgeMesh(), extrudePatchMesh::extrudePatchMesh(), PrimitivePatch< Face, ::Foam::List, pointField, point >::faceFaces(), surfaceFeatures::findFeatures(), combineFaces::getOutsideFace(), triSurfaceTools::getTriangle(), triSurfaceTools::getVertexTriangles(), addPatchCellLayer::globalEdgeFaces(), triSurfaceTools::greenRefine(), PrimitivePatch< Face, ::Foam::List, pointField, point >::isInternalEdge(), PatchTools::markZone(), surfaceLocation::normal(), listPlusEqOp< T >::operator()(), orientedSurface::orient(), triSurfaceTools::otherFace(), Foam::selectManifoldEdges(), boundaryMesh::setFeatureEdges(), addPatchCellLayer::setRefinement(), PatchTools::sortedEdgeFaces(), PatchTools::sortedPointEdges(), surfaceFeatures::surfaceFeatures(), surfaceIntersection::surfaceIntersection(), triSurfaceTools::surfaceNormal(), and triSurfaceTools::trackToEdge().
const Foam::labelListList & faceEdges | ( | ) | const |
Return face-edge addressing.
Definition at line 328 of file PrimitivePatch.C.
Referenced by createShellMesh::calcPointRegions(), PatchTools::checkOrientation(), triSurfaceTools::classify(), cyclicPolyPatch::coupledEdges(), PrimitivePatch< Face, ::Foam::List, pointField, point >::edgeFaces(), combineFaces::getOutsideFace(), triSurfaceTools::getTriangle(), intersectedSurface::intersectedSurface(), PrimitivePatch< Face, ::Foam::List, pointField, point >::isInternalEdge(), PatchTools::markZone(), meshRefinement::mergeBaffles(), triSurfaceTools::oppositeEdge(), triSurfaceTools::otherEdges(), addPatchCellLayer::setRefinement(), PatchTools::sortedPointEdges(), triSurfaceTools::surfaceNormal(), and triSurfaceTools::surfaceSide().
const Foam::labelListList & pointEdges | ( | ) | const |
Return point-edge addressing.
Definition at line 348 of file PrimitivePatch.C.
Referenced by snappySnapDriver::calcSnapDistance(), PrimitivePatch< Face, ::Foam::List, pointField, point >::faceEdges(), triSurfaceTools::getEdge(), triSurfaceTools::getVertexVertices(), PrimitivePatch< Face, ::Foam::List, pointField, point >::isInternalEdge(), polyPatch::meshEdges(), edgeIntersections::minEdgeLength(), listPlusEqOp< T >::operator()(), PatchTools::sortedPointEdges(), and triSurfaceTools::surfaceSide().
const Foam::labelListList & pointFaces | ( | ) | const |
Return point-face addressing.
Definition at line 368 of file PrimitivePatch.C.
Referenced by snappySnapDriver::avgCellCentres(), Foam::meshTools::calcBoxPointNormals(), cellDistFuncs::correctBoundaryPointCells(), cellDistFuncs::getPointNeighbours(), triSurfaceTools::getVertexTriangles(), volPointInterpolation::interpolateBoundaryField(), PrimitivePatch< Face, ::Foam::List, pointField, point >::isInternalEdge(), listPlusEqOp< T >::operator()(), oldCyclicPolyPatch::order(), PrimitivePatch< Face, ::Foam::List, pointField, point >::pointEdges(), PatchTools::pointNormals(), and triSurfaceTools::trackToEdge().
const Foam::List< Face > & localFaces | ( | ) | const |
Return patch faces addressing into local point list.
Definition at line 388 of file PrimitivePatch.C.
Referenced by mappedPatchBase::calcAMI(), createShellMesh::calcPointRegions(), Foam::checkNonManifoldEdge(), PatchTools::checkOrientation(), triSurfaceTools::classify(), triSurfaceTools::collapseEdges(), PatchTools::edgeOwner(), extrudePatchMesh::extrudePatchMesh(), combineFaces::getOutsideFace(), cellDistFuncs::getPointNeighbours(), triSurfaceTools::greenRefine(), processorPolyPatch::initOrder(), intersectedSurface::intersectedSurface(), PrimitivePatch< Face, ::Foam::List, pointField, point >::isInternalEdge(), Foam::levelSetFraction(), triSurfaceTools::mergePoints(), meshTriangulation::meshTriangulation(), listPlusEqOp< T >::operator()(), triSurfaceTools::oppositeVertex(), oldCyclicPolyPatch::order(), processorPolyPatch::order(), triSurfaceTools::otherEdges(), triSurfaceTools::otherVertices(), pairPatchAgglomeration::pairPatchAgglomeration(), PrimitivePatch< Face, ::Foam::List, pointField, point >::pointFaces(), PatchTools::pointNormals(), boundaryMesh::readTriSurface(), snappySnapDriver::repatchToSurface(), cyclicAMIPolyPatch::resetAMI(), addPatchCellLayer::setRefinement(), PatchTools::sortedEdgeFaces(), PatchTools::subsetMap(), triSurfaceTools::surfaceNormal(), triSurfaceTools::surfaceSide(), triSurfaceTools::triangulateFaceCentre(), boundaryMesh::triangulateLocal(), sampledPatch::update(), patchFaceOrientation::updateEdge(), patchFaceOrientation::updateFace(), AC3DsurfaceFormat< Face >::write(), and meshRefinement::zonify().
const Foam::labelList & meshPoints | ( | ) | const |
Return labelList of mesh points in patch. They are constructed.
walking through the faces in incremental order and not sorted anymore.
Definition at line 408 of file PrimitivePatch.C.
Referenced by snappySnapDriver::avgCellCentres(), Foam::meshTools::calcBoxPointNormals(), snappySnapDriver::calcNearestSurface(), addPatchCellLayer::calcSidePatch(), snappySnapDriver::calcSnapDistance(), inversePointDistanceDiffusivity::correct(), patchPatchDist::correct(), cellDistFuncs::correctBoundaryPointCells(), PointEdgeWave< Type, TrackingData >::countPatchType(), cyclicPolyPatch::coupledEdges(), snappySnapDriver::detectNearSurfaces(), extrudePatchMesh::extrudePatchMesh(), mappedPatchBase::findSamples(), combineFaces::getOutsideFace(), globalIndexAndTransform::globalIndexAndTransform(), globalPoints::globalPoints(), volPointInterpolation::interpolateBoundaryField(), PrimitivePatch< Face, ::Foam::List, pointField, point >::isInternalEdge(), PrimitivePatch< Face, ::Foam::List, pointField, point >::localFaces(), localPointRegion::localPointRegion(), PatchTools::matchEdges(), PatchTools::matchPoints(), globalMeshData::mergePoints(), facePointPatch::meshPoints(), medialAxisMeshMover::move(), polyBoundaryMesh::neighbourEdges(), PrimitivePatch< Face, ::Foam::List, pointField, point >::nPoints(), listPlusEqOp< T >::operator()(), combineEqOp< Type, TrackingData >::operator()(), orientedSurface::orientedSurface(), PatchTools::pointNormals(), fvMeshDistribute::printCoupleInfo(), Foam::selectCutEdges(), motionSmootherAlgo::setDisplacementPatchFields(), perfectInterface::setRefinement(), addPatchCellLayer::setRefinement(), snappySnapDriver::smoothDisplacement(), syncTools::syncEdgeMap(), globalMeshData::syncPointData(), syncTools::syncPointList(), syncTools::syncPointMap(), pointConstraints::syncUntransformedData(), boundaryMesh::triangulateLocal(), patchEdgeFaceInfo::updateEdge(), and medialAxisMeshMover::~medialAxisMeshMover().
const Foam::Map< Foam::label > & meshPointMap | ( | ) | const |
Mesh point map. Given the global point index find its.
location in the patch
Definition at line 428 of file PrimitivePatch.C.
Referenced by snappySnapDriver::getZoneSurfacePoints(), globalPoints::globalPoints(), PrimitivePatch< Face, ::Foam::List, pointField, point >::isInternalEdge(), PatchTools::matchPoints(), globalMeshData::mergePoints(), PrimitivePatch< Face, ::Foam::List, pointField, point >::meshPoints(), PatchTools::pointNormals(), and syncTools::syncPointList().
const Foam::Field< PointType > & localPoints | ( | ) | const |
Return pointField of points in patch.
Definition at line 448 of file PrimitivePatch.C.
Referenced by booleanSurface::booleanSurface(), mappedPatchBase::calcAMI(), snappySnapDriver::calcNearestSurface(), snappySnapDriver::calcSnapDistance(), cyclicPolyPatch::calcTransforms(), searchableSurfaces::checkIntersection(), PatchTools::checkOrientation(), triSurfaceTools::collapseEdges(), patchPatchDist::correct(), cyclicPolyPatch::coupledEdges(), snappySnapDriver::detectNearSurfaces(), snappySnapDriver::doSnap(), edgeSurface::edgeSurface(), triSurfaceTools::greenRefine(), processorPolyPatch::initOrder(), PrimitivePatch< Face, ::Foam::List, pointField, point >::isInternalEdge(), Foam::levelSetFraction(), facePointPatch::localPoints(), triSurfaceTools::maxEdge(), triSurfaceTools::mergePoints(), PrimitivePatch< Face, ::Foam::List, pointField, point >::meshPointMap(), meshTriangulation::meshTriangulation(), triSurfaceTools::minEdge(), edgeIntersections::minEdgeLength(), slidingInterface::modifyMotionPoints(), surfaceFeatures::nearestEdges(), surfaceFeatures::nearestFeatEdge(), surfaceFeatures::nearestSamples(), surfaceFeatures::nearestSurfEdge(), polyBoundaryMesh::neighbourEdges(), listPlusEqOp< T >::operator()(), processorPolyPatch::order(), pairPatchAgglomeration::pairPatchAgglomeration(), boundaryMesh::readTriSurface(), snappySnapDriver::repatchToSurface(), Foam::selectBox(), perfectInterface::setRefinement(), addPatchCellLayer::setRefinement(), snappySnapDriver::smoothDisplacement(), PatchTools::sortedEdgeFaces(), surfaceIntersection::surfaceIntersection(), triSurfaceTools::surfaceSide(), triSurfaceTools::triangulateFaceCentre(), boundaryMesh::triangulateLocal(), surfaceFeatures::trimFeatures(), sampledPatch::update(), AC3DsurfaceFormat< Face >::write(), surfaceLocation::write(), triSurfaceTools::writeOBJ(), surfaceFeatures::writeObj(), and meshRefinement::zonify().
const Foam::labelList & localPointOrder | ( | ) | const |
Return orders the local points for most efficient search.
Definition at line 468 of file PrimitivePatch.C.
Referenced by PrimitivePatch< Face, ::Foam::List, pointField, point >::isInternalEdge(), and PrimitivePatch< Face, ::Foam::List, pointField, point >::localPoints().
Foam::label whichPoint | ( | const label | gp | ) | const |
Given a global point index, return the local point index.
If the point is not found, return -1
Definition at line 489 of file PrimitivePatch.C.
Referenced by PrimitivePatch< Face, ::Foam::List, pointField, point >::isInternalEdge(), PrimitivePatch< Face, ::Foam::List, pointField, point >::localPointOrder(), and slidingInterface::modifyMotionPoints().
Foam::label whichEdge | ( | const edge & | e | ) | const |
Given an edge in local point labels, return its.
index in the edge list. If the edge is not found, return -1
Definition at line 175 of file PrimitivePatchMeshEdges.C.
Referenced by PrimitivePatch< Face, ::Foam::List, pointField, point >::isInternalEdge(), PrimitivePatch< Face, ::Foam::List, pointField, point >::meshEdges(), and slidingInterface::modifyMotionPoints().
Foam::labelList meshEdges | ( | const edgeList & | allEdges, |
const labelListList & | cellEdges, | ||
const labelList & | faceCells | ||
) | const |
Return labels of patch edges in the global edge list using.
cell addressing
Definition at line 41 of file PrimitivePatchMeshEdges.C.
Referenced by addPatchCellLayer::calcSidePatch(), addPatchCellLayer::globalEdgeFaces(), PrimitivePatch< Face, ::Foam::List, pointField, point >::isInternalEdge(), meshRefinement::mergeBaffles(), PrimitivePatch< Face, ::Foam::List, pointField, point >::meshEdges(), polyPatch::meshEdges(), listPlusEqOp< T >::operator()(), addPatchCellLayer::setRefinement(), and medialAxisMeshMover::~medialAxisMeshMover().
Foam::labelList meshEdges | ( | const edgeList & | allEdges, |
const labelListList & | pointEdges | ||
) | const |
Return labels of patch edges in the global edge list using.
basic edge addressing.
Definition at line 118 of file PrimitivePatchMeshEdges.C.
const Foam::Field< PointType > & faceCentres | ( | ) | const |
Return face centres for patch.
Definition at line 516 of file PrimitivePatch.C.
Referenced by symmetryPlanePolyPatch::calcGeometry(), wedgePolyPatch::calcGeometry(), cyclicPolyPatch::calcTransforms(), processorPolyPatch::initOrder(), PrimitivePatch< Face, ::Foam::List, pointField, point >::isInternalEdge(), meshRefinement::mergeBaffles(), listPlusEqOp< T >::operator()(), processorPolyPatch::order(), patchEdgeFaceInfo::updateFace(), and PrimitivePatch< Face, ::Foam::List, pointField, point >::whichPoint().
const Foam::Field< PointType > & faceNormals | ( | ) | const |
Return face normals for patch.
Definition at line 536 of file PrimitivePatch.C.
Referenced by ThermoSurfaceFilm< CloudType >::absorbInteraction(), ThermoSurfaceFilm< CloudType >::bounceInteraction(), Foam::meshTools::calcBoxPointNormals(), Foam::checkNonManifoldEdge(), PatchTools::checkOrientation(), directions::directions(), ThermoSurfaceFilm< CloudType >::drySplashInteraction(), PatchTools::edgeNormals(), triSurfaceTools::edgeSide(), extrudePatchMesh::extrudePatchMesh(), PrimitivePatch< Face, ::Foam::List, pointField, point >::faceCentres(), boundaryMesh::getNearest(), processorPolyPatch::initOrder(), intersectedSurface::intersectedSurface(), PrimitivePatch< Face, ::Foam::List, pointField, point >::isInternalEdge(), regionModel1D::moveMesh(), surfaceLocation::normal(), listPlusEqOp< T >::operator()(), processorPolyPatch::order(), PatchTools::pointNormals(), boundaryMesh::setFeatureEdges(), ThermoSurfaceFilm< CloudType >::splashInteraction(), triSurfaceTools::surfaceNormal(), triSurfaceTools::surfaceSide(), wallLayerCells::wallLayerCells(), and ThermoSurfaceFilm< CloudType >::wetSplashInteraction().
const Foam::Field< PointType > & pointNormals | ( | ) | const |
Return point normals for patch.
Definition at line 556 of file PrimitivePatch.C.
Referenced by Foam::meshTools::calcBoxPointNormals(), PrimitivePatch< Face, ::Foam::List, pointField, point >::faceNormals(), PrimitivePatch< Face, ::Foam::List, pointField, point >::isInternalEdge(), slidingInterface::modifyMotionPoints(), surfaceLocation::normal(), facePointPatch::pointNormals(), and triSurfaceTools::surfaceNormal().
List<objectHit> projectPoints | ( | const ToPatch & | targetPatch, |
const Field< PointType > & | projectionDirection, | ||
const intersection::algorithm | = intersection::FULL_RAY , |
||
const intersection::direction | = intersection::VECTOR |
||
) | const |
Project vertices of patch onto another patch.
Referenced by PrimitivePatch< Face, ::Foam::List, pointField, point >::isInternalEdge().
List<objectHit> projectFaceCentres | ( | const ToPatch & | targetPatch, |
const Field< PointType > & | projectionDirection, | ||
const intersection::algorithm | = intersection::FULL_RAY , |
||
const intersection::direction | = intersection::VECTOR |
||
) | const |
Project vertices of patch onto another patch.
Referenced by PrimitivePatch< Face, ::Foam::List, pointField, point >::isInternalEdge(), and PrimitivePatch< Face, ::Foam::List, pointField, point >::projectPoints().
const Foam::labelListList & edgeLoops | ( | ) | const |
Return list of closed loops of boundary vertices.
Edge loops are given as ordered lists of vertices in local addressing
Definition at line 167 of file PrimitivePatchEdgeLoops.C.
Referenced by combineFaces::getOutsideFace(), and PrimitivePatch< Face, ::Foam::List, pointField, point >::isInternalEdge().
Foam::PrimitivePatch< Face, FaceList, PointField, PointType >::surfaceTopo surfaceType | ( | ) | const |
Calculate surface type formed by patch.
Types:
Definition at line 120 of file PrimitivePatchCheck.C.
Referenced by PrimitivePatch< Face, ::Foam::List, pointField, point >::isInternalEdge().
bool checkTopology | ( | const bool | report = false , |
labelHashSet * | setPtr = nullptr |
||
) | const |
Check surface formed by patch for manifoldness (see above).
Return true if any incorrect edges are found. Insert vertices of incorrect edges into set.
Definition at line 168 of file PrimitivePatchCheck.C.
Referenced by PrimitivePatch< Face, ::Foam::List, pointField, point >::isInternalEdge(), and PrimitivePatch< Face, ::Foam::List, pointField, point >::surfaceType().
bool checkPointManifold | ( | const bool | report = false , |
labelHashSet * | setPtr = nullptr |
||
) | const |
Checks primitivePatch for faces sharing point but not edge.
This denotes a surface that is pinched at a single point (test for pinched at single edge is already in PrimitivePatch) Returns true if this situation found and puts conflicting (mesh)point in set. Based on all the checking routines in primitiveMesh.
Definition at line 228 of file PrimitivePatchCheck.C.
Referenced by PrimitivePatch< Face, ::Foam::List, pointField, point >::checkTopology(), and PrimitivePatch< Face, ::Foam::List, pointField, point >::isInternalEdge().
|
virtual |
Correct patch after moving points.
Definition at line 203 of file PrimitivePatch.C.
Referenced by cyclicAMIPolyPatch::initMovePoints(), PrimitivePatch< Face, ::Foam::List, pointField, point >::isInternalEdge(), polyPatch::movePoints(), cyclicRepeatAMIPolyPatch::resetAMI(), and PrimitivePatch< Face, ::Foam::List, pointField, point >::~PrimitivePatch().
void operator= | ( | const PrimitivePatch< Face, FaceList, PointField, PointType > & | pp | ) |
Assignment.
Definition at line 579 of file PrimitivePatch.C.
Referenced by polyPatch::operator=().
Foam::List<Foam::objectHit> projectPoints | ( | const ToPatch & | targetPatch, |
const Field< PointType > & | projectionDirection, | ||
const intersection::algorithm | alg, | ||
const intersection::direction | dir | ||
) | const |
Definition at line 48 of file PrimitivePatchProjectPoints.C.
Foam::List<Foam::objectHit> projectFaceCentres | ( | const ToPatch & | targetPatch, |
const Field< PointType > & | projectionDirection, | ||
const intersection::algorithm | alg, | ||
const intersection::direction | dir | ||
) | const |
Definition at line 291 of file PrimitivePatchProjectPoints.C.