PrimitivePatch< FaceList, PointField > Class Template Reference

A list of faces which address into the list of points. More...

Inheritance diagram for PrimitivePatch< FaceList, PointField >:
Collaboration diagram for PrimitivePatch< FaceList, PointField >:

Public Types

enum  surfaceTopo { MANIFOLD, OPEN, ILLEGAL }
 Enumeration defining the surface type. Used in check routines. More...
 
typedef std::remove_reference< FaceList >::type::value_type face_type
 The face type. More...
 
typedef std::remove_reference< PointField >::type::value_type point_type
 The point type. More...
 
typedef FaceList FaceListType
 The face list type. More...
 
typedef PointField PointFieldType
 The point field type. More...
 
typedef face_type FaceType
 Deprecated(2020-03) prefer face_type typedef. More...
 

Public Member Functions

 PrimitivePatch (const FaceList &faces, const PointField &points)
 Construct from components. More...
 
 PrimitivePatch (FaceList &&faces, const PointField &points)
 Construct from components, transferring faces. More...
 
 PrimitivePatch (FaceList &faces, PointField &points, const bool reuse)
 Construct from components, reuse storage. More...
 
 PrimitivePatch (const PrimitivePatch< FaceList, PointField > &pp)
 Copy construct. More...
 
virtual ~PrimitivePatch ()
 Destructor. More...
 
void clearOut ()
 
void clearGeom ()
 
void clearTopology ()
 
void clearPatchMeshAddr ()
 
void swap (PrimitivePatch &)=delete
 Suppress direct swapping, since storage containers may be const. More...
 
const Field< point_type > & points () const noexcept
 Return reference to global points. More...
 
label nFaces () const noexcept
 Number of faces in the patch. More...
 
label nPoints () const
 Number of points supporting patch faces. More...
 
label nEdges () const
 Number of edges in patch. More...
 
const edgeListedges () const
 Return list of edges, address into LOCAL point list. More...
 
const edgeList::subList internalEdges () const
 Return sub-list of internal edges, address into LOCAL point list. More...
 
const edgeList::subList boundaryEdges () const
 Return sub-list of boundary edges, address into LOCAL point list. More...
 
label nInternalEdges () const
 Number of internal edges. More...
 
label nBoundaryEdges () const
 Number of boundary edges == (nEdges() - nInternalEdges()) More...
 
bool isInternalEdge (const label edgei) const
 Is internal edge? More...
 
const labelListboundaryPoints () const
 Return list of boundary points, address into LOCAL point list. More...
 
const labelListListfaceFaces () const
 Return face-face addressing. More...
 
const labelListListedgeFaces () const
 Return edge-face addressing. More...
 
const labelListListfaceEdges () const
 Return face-edge addressing. More...
 
const labelListListpointEdges () const
 Return point-edge addressing. More...
 
const labelListListpointFaces () const
 Return point-face addressing. More...
 
const List< face_type > & localFaces () const
 Return patch faces addressing into local point list. More...
 
labelList boundaryFaces () const
 Extract list of local faces corresponding to the boundary edges. More...
 
labelList uniqBoundaryFaces () const
 Extract sorted list of unique local faces associated with the boundary edges. More...
 
const labelListmeshPoints () const
 Return labelList of mesh points in patch. More...
 
const Map< label > & meshPointMap () const
 Mesh point map. More...
 
const Field< point_type > & localPoints () const
 Return pointField of points in patch. More...
 
const labelListlocalPointOrder () 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...
 
edge meshEdge (const label edgei) const
 From patch edge to global edge using meshPoints. More...
 
edge meshEdge (const edge &e) const
 From patch edge to global edge using meshPoints. More...
 
label findEdge (const edge &e) const
 Search for edge (local point labels) and return its index in the edge list or -1 if not found. More...
 
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. More...
 
labelList meshEdges (const edgeList &allEdges, const labelListList &pointEdges) const
 Return labels of patch edges into the global edge list using basic edge addressing. More...
 
label meshEdge (const label edgei, const edgeList &allEdges, const labelListList &pointEdges) const
 Return label of the local patch edge into the global edge list using basic edge addressing. More...
 
labelList meshEdges (const labelUList &edgeLabels, const edgeList &allEdges, const labelListList &pointEdges) const
 Return labels of specified patch edges into the global edge list using basic edge addressing. More...
 
const Field< point_type > & faceCentres () const
 Return face centres for patch. More...
 
const Field< point_type > & faceAreas () const
 Return face area vectors for patch. More...
 
const Field< scalar > & magFaceAreas () const
 Return face area magnitudes for patch. More...
 
const Field< point_type > & faceNormals () const
 Return face unit normals for patch. More...
 
const Field< point_type > & pointNormals () const
 Return point normals for patch. More...
 
Pair< point_typebox () const
 The enclosing (bounding) box for the patch points. More...
 
scalar sphere (const label facei) const
 The enclosing (bounding) sphere radius^2 for specified face. More...
 
bool hasFaceAreas () const
 
bool hasFaceCentres () const
 
bool hasFaceNormals () const
 
bool hasPointNormals () const
 
bool hasBoundaryPoints () const
 
bool hasEdges () const
 
bool hasFaceFaces () const
 
bool hasEdgeFaces () const
 
bool hasFaceEdges () const
 
bool hasPointEdges () const
 
bool hasPointFaces () const
 
bool hasMeshPoints () const
 
bool hasMeshPointMap () const
 
template<class ToPatch >
List< objectHitprojectPoints (const ToPatch &targetPatch, const Field< point_type > &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< objectHitprojectFaceCentres (const ToPatch &targetPatch, const Field< point_type > &projectionDirection, const intersection::algorithm=intersection::FULL_RAY, const intersection::direction=intersection::VECTOR) const
 Project vertices of patch onto another patch. More...
 
const labelListListedgeLoops () const
 Return list of closed loops of boundary vertices. More...
 
surfaceTopo surfaceType (labelHashSet *badEdgesPtr=nullptr) const
 Calculate surface type formed by patch, optionally recording the indices of illegal edges. More...
 
bool checkTopology (const bool report=false, labelHashSet *pointSetPtr=nullptr) const
 Check surface formed by patch for manifoldness (see above). More...
 
bool checkPointManifold (const bool report=false, labelHashSet *pointSetPtr=nullptr) const
 Checks primitivePatch for faces sharing point but not edge. More...
 
virtual void movePoints (const Field< point_type > &)
 Correct patch after moving points. More...
 
void operator= (const PrimitivePatch< FaceList, PointField > &rhs)
 Copy assign faces. Leave points alone (could be a reference). More...
 
void operator= (PrimitivePatch< FaceList, PointField > &&rhs)
 Move assign faces. Leave points alone (could be a reference). More...
 
label whichEdge (const edge &e) const
 Identical to findEdge. More...
 
template<class ToPatch >
Foam::List< Foam::objectHitprojectPoints (const ToPatch &targetPatch, const Field< typename Foam::PrimitivePatch< FaceList, PointField >::point_type > &projectionDirection, const intersection::algorithm alg, const intersection::direction dir) const
 
template<class ToPatch >
Foam::List< Foam::objectHitprojectFaceCentres (const ToPatch &targetPatch, const Field< typename Foam::PrimitivePatch< FaceList, PointField >::point_type > &projectionDirection, const intersection::algorithm alg, const intersection::direction dir) const
 
- Public Member Functions inherited from PrimitivePatchBase
 ClassName ("PrimitivePatch")
 Runtime type information. More...
 
 PrimitivePatchBase ()=default
 Default construct. More...
 

Detailed Description

template<class FaceList, class PointField>
class Foam::PrimitivePatch< FaceList, PointField >

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.

Source files

Definition at line 70 of file PrimitivePatch.H.

Member Typedef Documentation

◆ face_type

typedef std::remove_reference<FaceList>::type::value_type face_type

The face type.

Definition at line 91 of file PrimitivePatch.H.

◆ point_type

typedef std::remove_reference<PointField>::type::value_type point_type

The point type.

Definition at line 97 of file PrimitivePatch.H.

◆ FaceListType

typedef FaceList FaceListType

The face list type.

Definition at line 102 of file PrimitivePatch.H.

◆ PointFieldType

The point field type.

Definition at line 107 of file PrimitivePatch.H.

◆ FaceType

Deprecated(2020-03) prefer face_type typedef.

Deprecated:
(2020-03) prefer face_type typedef

Definition at line 114 of file PrimitivePatch.H.

Member Enumeration Documentation

◆ surfaceTopo

Enumeration defining the surface type. Used in check routines.

Ordered from 'good' to 'bad'

Enumerator
MANIFOLD 
OPEN 
ILLEGAL 

Definition at line 124 of file PrimitivePatch.H.

Constructor & Destructor Documentation

◆ PrimitivePatch() [1/4]

PrimitivePatch ( const FaceList &  faces,
const PointField points 
)

Construct from components.

Definition at line 28 of file PrimitivePatch.C.

◆ PrimitivePatch() [2/4]

PrimitivePatch ( FaceList &&  faces,
const PointField points 
)

Construct from components, transferring faces.

Definition at line 59 of file PrimitivePatch.C.

◆ PrimitivePatch() [3/4]

PrimitivePatch ( FaceList &  faces,
PointField points,
const bool  reuse 
)

Construct from components, reuse storage.

Definition at line 90 of file PrimitivePatch.C.

◆ PrimitivePatch() [4/4]

PrimitivePatch ( const PrimitivePatch< FaceList, PointField > &  pp)

Copy construct.

Definition at line 122 of file PrimitivePatch.C.

◆ ~PrimitivePatch()

virtual ~PrimitivePatch ( )
virtual

Destructor.

Member Function Documentation

◆ clearOut()

void clearOut ( )

Definition at line 78 of file PrimitivePatchClear.C.

Referenced by processorPolyPatch::updateMesh().

Here is the caller graph for this function:

◆ clearGeom()

void clearGeom ( )

Definition at line 28 of file PrimitivePatchClear.C.

Referenced by polyPatch::clearGeom(), and polyPatch::updateMesh().

Here is the caller graph for this function:

◆ clearTopology()

void clearTopology ( )

Definition at line 43 of file PrimitivePatchClear.C.

Referenced by polyPatch::clearAddressing().

Here is the caller graph for this function:

◆ clearPatchMeshAddr()

void clearPatchMeshAddr ( )

Definition at line 66 of file PrimitivePatchClear.C.

Referenced by polyPatch::clearAddressing().

Here is the caller graph for this function:

◆ swap()

void swap ( PrimitivePatch< FaceList, PointField > &  )
delete

Suppress direct swapping, since storage containers may be const.

◆ points()

const Field<point_type>& points ( ) const
inlinenoexcept

Return reference to global points.

Definition at line 401 of file PrimitivePatch.H.

Referenced by booleanSurface::booleanSurface(), addPatchCellLayer::calcExtrudeInfo(), cyclicPolyPatch::calcTransforms(), cyclicAMIPolyPatch::calcTransforms(), AMIInterpolation::calculate(), polySurface::copySurface(), surfMesh::copySurface(), triSurfaceTools::curvatures(), distributedTriSurfaceMesh::distribute(), Foam::drawHitProblem(), edgeIntersections::edgeIntersections(), Foam::edgeMeshTools::featureProximity(), distanceSurface::filterFaceProximity(), mappedPatchBase::findLocalSamples(), processorPolyPatch::initOrder(), cyclicPolyPatch::initOrder(), isoSurfaceTopo::isoSurfaceTopo(), momentOfInertia::massPropertiesShell(), momentOfInertia::massPropertiesSolid(), offsetSurface::operator()(), triSurface::operator=(), oldCyclicPolyPatch::order(), processorPolyPatch::order(), cyclicPolyPatch::order(), orientedSurface::orientedSurface(), sampledInterface::points(), sampledDistanceSurface::points(), sampledCuttingPlane::points(), sampledIsoSurface::points(), powerLawLopesdaCostaZone::powerLawLopesdaCostaZone(), boundaryMesh::read(), FilterField::reset(), refinementSurfaces::setMinLevelFields(), addPatchCellLayer::setRefinement(), AMIInterpolation::srcPointFace(), triSurfaceTools::surfaceNormal(), triSurfaceTools::surfaceSide(), AMIInterpolation::tgtPointFace(), triSurfaceMeshPointSet::triSurfaceMeshPointSet(), triSurfaceTools::validTri(), triSurfaceTools::vertexNormals(), triSurfaceTools::vertexTriads(), and surfaceNoise::writeSurfaceData().

Here is the caller graph for this function:

◆ nFaces()

label nFaces ( ) const
inlinenoexcept

Number of faces in the patch.

Definition at line 409 of file PrimitivePatch.H.

Referenced by faMeshDistributor::distribute(), surfaceNoise::initialise(), and FilterField::reset().

Here is the caller graph for this function:

◆ nPoints()

◆ nEdges()

◆ edges()

◆ internalEdges()

const Foam::edgeList::subList internalEdges ( ) const

Return sub-list of internal edges, address into LOCAL point list.

Definition at line 189 of file PrimitivePatch.C.

◆ boundaryEdges()

const Foam::edgeList::subList boundaryEdges ( ) const

Return sub-list of boundary edges, address into LOCAL point list.

Definition at line 198 of file PrimitivePatch.C.

◆ nInternalEdges()

◆ nBoundaryEdges()

Foam::label nBoundaryEdges ( ) const

Number of boundary edges == (nEdges() - nInternalEdges())

Definition at line 220 of file PrimitivePatch.C.

Referenced by faMesh::updateMesh().

Here is the caller graph for this function:

◆ isInternalEdge()

bool isInternalEdge ( const label  edgei) const
inline

Is internal edge?

Definition at line 463 of file PrimitivePatch.H.

◆ boundaryPoints()

const Foam::labelList & boundaryPoints ( ) const

Return list of boundary points, address into LOCAL point list.

Uses edge addressing (if it exists) or calculates directly from localFaces()

Definition at line 229 of file PrimitivePatch.C.

◆ faceFaces()

const Foam::labelListList & faceFaces ( ) const

Return face-face addressing.

Definition at line 242 of file PrimitivePatch.C.

Referenced by triSurfaceTools::validTri().

Here is the caller graph for this function:

◆ edgeFaces()

◆ faceEdges()

◆ pointEdges()

const Foam::labelListList & pointEdges ( ) const

Return point-edge addressing.

Definition at line 281 of file PrimitivePatch.C.

Referenced by snappySnapDriver::calcSnapDistance(), triSurfaceTools::getEdge(), triSurfaceTools::getVertexVertices(), edgeIntersections::minEdgeLength(), and triSurfaceTools::surfaceSide().

Here is the caller graph for this function:

◆ pointFaces()

const Foam::labelListList & pointFaces ( ) const

Return point-face addressing.

Definition at line 294 of file PrimitivePatch.C.

Referenced by snappySnapDriver::avgCellCentres(), triSurfaceTools::getVertexTriangles(), oldCyclicPolyPatch::order(), and triSurfaceTools::vertexNormals().

Here is the caller graph for this function:

◆ localFaces()

◆ boundaryFaces()

Foam::labelList boundaryFaces ( ) const

Extract list of local faces corresponding to the boundary edges.

Definition at line 27 of file PrimitivePatchBdryFaces.C.

◆ uniqBoundaryFaces()

Foam::labelList uniqBoundaryFaces ( ) const

Extract sorted list of unique local faces associated with the boundary edges.

Definition at line 51 of file PrimitivePatchBdryFaces.C.

◆ meshPoints()

const Foam::labelList & meshPoints ( ) const

Return labelList of mesh points in patch.

They are constructed by walking through the faces in incremental order and not sorted anymore.

Definition at line 323 of file PrimitivePatch.C.

Referenced by snappyLayerDriver::addLayers(), sensitivitySurface::assembleSensitivities(), snappySnapDriver::avgCellCentres(), meshRefinement::blockLeakFaces(), holeToFace::calcClosure(), addPatchCellLayer::calcExtrudeInfo(), snappySnapDriver::calcNearestSurface(), snappySnapDriver::calcSnapDistance(), patchPatchDist::correct(), cyclicPolyPatch::coupledEdges(), triSurfaceTools::curvatures(), faMeshDecomposition::decomposeMesh(), snappySnapDriver::detectNearSurfaces(), faMeshDistributor::distribute(), mappedPatchBase::findLocalSamples(), combineFaces::getOutsideFace(), globalIndexAndTransform::globalIndexAndTransform(), globalPoints::globalPoints(), processorFaPatch::makeNonGlobalPatchPoints(), betaMax::markProcessorEdges(), PatchTools::matchPoints(), globalMeshData::mergePoints(), facePointPatch::meshPoints(), fieldSmoother::minSmoothField(), medialAxisMeshMover::move(), polyBoundaryMesh::neighbourEdges(), PrimitivePatch<::Foam::List< labelledTri >, pointField >::nPoints(), orientedSurface::orientedSurface(), volPointInterpolationAdjoint::pushUntransformedData(), cyclicAMIPolyPatch::resetAMI(), sensitivitySurfacePoints::sensitivitySurfacePoints(), motionSmootherAlgo::setDisplacement(), perfectInterface::setRefinement(), addPatchCellLayer::setRefinement(), snappySnapDriver::smoothDisplacement(), fieldSmoother::smoothPatchNormals(), syncTools::syncEdgeList(), syncTools::syncEdgeMap(), globalMeshData::syncPointData(), syncTools::syncPointList(), syncTools::syncPointMap(), pointConstraints::syncUntransformedData(), triSurfaceTools::vertexNormals(), and AMIWeights::writeWeightField().

Here is the caller graph for this function:

◆ meshPointMap()

const Foam::Map< Foam::label > & meshPointMap ( ) const

◆ localPoints()

◆ localPointOrder()

const Foam::labelList & localPointOrder ( ) const

Return orders the local points for most efficient search.

Definition at line 365 of file PrimitivePatch.C.

◆ whichPoint()

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 379 of file PrimitivePatch.C.

Referenced by slidingInterface::modifyMotionPoints().

Here is the caller graph for this function:

◆ meshEdge() [1/3]

Foam::edge meshEdge ( const label  edgei) const

From patch edge to global edge using meshPoints.

Definition at line 28 of file PrimitivePatchMeshEdges.C.

Referenced by PatchTools::matchEdges().

Here is the caller graph for this function:

◆ meshEdge() [2/3]

Foam::edge meshEdge ( const edge e) const

From patch edge to global edge using meshPoints.

Definition at line 36 of file PrimitivePatchMeshEdges.C.

◆ findEdge()

Foam::label findEdge ( const edge e) const

Search for edge (local point labels) and return its index in the edge list or -1 if not found.

Ignores invalid or out-of-range edges

Definition at line 176 of file PrimitivePatchMeshEdges.C.

Referenced by PrimitivePatch<::Foam::List< labelledTri >, pointField >::whichEdge().

Here is the caller graph for this function:

◆ meshEdges() [1/3]

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 46 of file PrimitivePatchMeshEdges.C.

Referenced by addPatchCellLayer::calcExtrudeInfo(), addPatchCellLayer::globalEdgeFaces(), polyPatch::meshEdges(), and addPatchCellLayer::setRefinement().

Here is the caller graph for this function:

◆ meshEdges() [2/3]

Foam::labelList meshEdges ( const edgeList allEdges,
const labelListList pointEdges 
) const

Return labels of patch edges into the global edge list using basic edge addressing.

Definition at line 96 of file PrimitivePatchMeshEdges.C.

◆ meshEdge() [3/3]

Foam::label meshEdge ( const label  edgei,
const edgeList allEdges,
const labelListList pointEdges 
) const

Return label of the local patch edge into the global edge list using basic edge addressing.

Definition at line 130 of file PrimitivePatchMeshEdges.C.

◆ meshEdges() [3/3]

Foam::labelList meshEdges ( const labelUList edgeLabels,
const edgeList allEdges,
const labelListList pointEdges 
) const

Return labels of specified patch edges into the global edge list using basic edge addressing.

Definition at line 155 of file PrimitivePatchMeshEdges.C.

◆ faceCentres()

◆ faceAreas()

const Foam::Field< typename Foam::PrimitivePatch< FaceList, PointField >::point_type > & faceAreas ( ) const

Return face area vectors for patch.

Definition at line 409 of file PrimitivePatch.C.

Referenced by cyclicACMIPolyPatch::scalePatchFaceAreas(), and dynamicMotionSolverFvMeshAMI::update().

Here is the caller graph for this function:

◆ magFaceAreas()

const Foam::Field< Foam::scalar > & magFaceAreas ( ) const

Return face area magnitudes for patch.

Definition at line 422 of file PrimitivePatch.C.

◆ faceNormals()

◆ pointNormals()

const Foam::Field< typename Foam::PrimitivePatch< FaceList, PointField >::point_type > & pointNormals ( ) const

Return point normals for patch.

Definition at line 454 of file PrimitivePatch.C.

Referenced by slidingInterface::modifyMotionPoints(), facePointPatch::pointNormals(), sensitivitySurfacePoints::sensitivitySurfacePoints(), and triSurfaceTools::surfaceNormal().

Here is the caller graph for this function:

◆ box()

Foam::Pair< typename Foam::PrimitivePatch< FaceList, PointField >::point_type > box ( ) const

The enclosing (bounding) box for the patch points.

Definition at line 122 of file PrimitivePatchBdryPoints.C.

◆ sphere()

Foam::scalar sphere ( const label  facei) const

The enclosing (bounding) sphere radius^2 for specified face.

Definition at line 158 of file PrimitivePatchBdryPoints.C.

Referenced by FilterField::reset().

Here is the caller graph for this function:

◆ hasFaceAreas()

bool hasFaceAreas ( ) const
inline

Definition at line 653 of file PrimitivePatch.H.

◆ hasFaceCentres()

bool hasFaceCentres ( ) const
inline

Definition at line 654 of file PrimitivePatch.H.

◆ hasFaceNormals()

bool hasFaceNormals ( ) const
inline

Definition at line 655 of file PrimitivePatch.H.

◆ hasPointNormals()

bool hasPointNormals ( ) const
inline

Definition at line 656 of file PrimitivePatch.H.

◆ hasBoundaryPoints()

bool hasBoundaryPoints ( ) const
inline

Definition at line 658 of file PrimitivePatch.H.

◆ hasEdges()

bool hasEdges ( ) const
inline

Definition at line 663 of file PrimitivePatch.H.

◆ hasFaceFaces()

bool hasFaceFaces ( ) const
inline

Definition at line 664 of file PrimitivePatch.H.

◆ hasEdgeFaces()

bool hasEdgeFaces ( ) const
inline

Definition at line 665 of file PrimitivePatch.H.

◆ hasFaceEdges()

bool hasFaceEdges ( ) const
inline

Definition at line 666 of file PrimitivePatch.H.

◆ hasPointEdges()

bool hasPointEdges ( ) const
inline

Definition at line 668 of file PrimitivePatch.H.

◆ hasPointFaces()

bool hasPointFaces ( ) const
inline

Definition at line 669 of file PrimitivePatch.H.

◆ hasMeshPoints()

bool hasMeshPoints ( ) const
inline

Definition at line 671 of file PrimitivePatch.H.

◆ hasMeshPointMap()

bool hasMeshPointMap ( ) const
inline

Definition at line 672 of file PrimitivePatch.H.

◆ projectPoints() [1/2]

List<objectHit> projectPoints ( const ToPatch &  targetPatch,
const Field< point_type > &  projectionDirection,
const intersection::algorithm  = intersection::FULL_RAY,
const intersection::direction  = intersection::VECTOR 
) const

Project vertices of patch onto another patch.

◆ projectFaceCentres() [1/2]

List<objectHit> projectFaceCentres ( const ToPatch &  targetPatch,
const Field< point_type > &  projectionDirection,
const intersection::algorithm  = intersection::FULL_RAY,
const intersection::direction  = intersection::VECTOR 
) const

Project vertices of patch onto another patch.

◆ edgeLoops()

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 127 of file PrimitivePatchEdgeLoops.C.

Referenced by combineFaces::getOutsideFace().

Here is the caller graph for this function:

◆ surfaceType()

Foam::PrimitivePatch< FaceList, PointField >::surfaceTopo surfaceType ( labelHashSet badEdgesPtr = nullptr) const

Calculate surface type formed by patch, optionally recording the indices of illegal edges.

Return types:

  • all edges have two neighbours (manifold)
  • some edges have more than two neighbours (illegal)
  • other (open)

Definition at line 97 of file PrimitivePatchCheck.C.

◆ checkTopology()

bool checkTopology ( const bool  report = false,
labelHashSet pointSetPtr = 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 154 of file PrimitivePatchCheck.C.

◆ checkPointManifold()

bool checkPointManifold ( const bool  report = false,
labelHashSet pointSetPtr = 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 196 of file PrimitivePatchCheck.C.

◆ movePoints()

void movePoints ( const Field< point_type > &  )
virtual

Correct patch after moving points.

Definition at line 164 of file PrimitivePatch.C.

Referenced by snappyLayerDriver::addLayers(), cyclicAMIPolyPatch::initMovePoints(), and polyPatch::movePoints().

Here is the caller graph for this function:

◆ operator=() [1/2]

void operator= ( const PrimitivePatch< FaceList, PointField > &  rhs)

Copy assign faces. Leave points alone (could be a reference).

Definition at line 470 of file PrimitivePatch.C.

Referenced by polyPatch::operator=().

Here is the caller graph for this function:

◆ operator=() [2/2]

void operator= ( PrimitivePatch< FaceList, PointField > &&  rhs)

Move assign faces. Leave points alone (could be a reference).

Definition at line 490 of file PrimitivePatch.C.

◆ whichEdge()

label whichEdge ( const edge e) const
inline

Identical to findEdge.

Definition at line 778 of file PrimitivePatch.H.

Referenced by slidingInterface::modifyMotionPoints().

Here is the caller graph for this function:

◆ projectPoints() [2/2]

Foam::List<Foam::objectHit> projectPoints ( const ToPatch &  targetPatch,
const Field< typename Foam::PrimitivePatch< FaceList, PointField >::point_type > &  projectionDirection,
const intersection::algorithm  alg,
const intersection::direction  dir 
) const

Definition at line 38 of file PrimitivePatchProjectPoints.C.

◆ projectFaceCentres() [2/2]

Foam::List<Foam::objectHit> projectFaceCentres ( const ToPatch &  targetPatch,
const Field< typename Foam::PrimitivePatch< FaceList, PointField >::point_type > &  projectionDirection,
const intersection::algorithm  alg,
const intersection::direction  dir 
) const

Definition at line 268 of file PrimitivePatchProjectPoints.C.


The documentation for this class was generated from the following files: