polyMeshTetDecomposition Class Reference

Tools for performing the minimum decomposition of faces of the mesh into triangles so that the cells may be tet decomposed. Includes functions for finding variable face starting (base) points on each face to avoid the decomposition of cells into tets that have negative or zero volume. More...

Static Public Member Functions

static scalar minQuality (const polyMesh &mesh, const point &cC, const label fI, const bool isOwner, const label faceBasePtI)
 
static scalar minQuality (const polyMesh &mesh, const label facei, const label faceBasePtI)
 
static label findSharedBasePoint (const polyMesh &mesh, label fI, const point &nCc, scalar tol, bool report=false)
 Find the first suitable base point to use for a minimum. More...
 
static label findSharedBasePoint (const polyMesh &mesh, label fI, scalar tol, bool report=false)
 As for findSharedBasePoint, but using neighbour cell. More...
 
static label findBasePoint (const polyMesh &mesh, label fI, scalar tol, bool report=false)
 Find the base point to use for a minimum triangle. More...
 
static labelList findFaceBasePts (const polyMesh &mesh, scalar tol=minTetQuality, bool report=false)
 
static bool checkFaceTets (const polyMesh &mesh, scalar tol=minTetQuality, const bool report=false, labelHashSet *setPtr=nullptr)
 Check face-decomposition tet volume. More...
 
static List< tetIndicesfaceTetIndices (const polyMesh &mesh, label fI, label cI)
 Return the tet decomposition of the given face, with. More...
 
static List< tetIndicescellTetIndices (const polyMesh &mesh, label cI)
 Return the tet decomposition of the given cell, see. More...
 
static tetIndices findTet (const polyMesh &mesh, label cI, const point &pt)
 Find the tet decomposition of the cell containing the given point. More...
 
static labelList adjustTetBasePtIs (const polyMesh &mesh, const bool report=false)
 Return an adjusted list of tet base points. More...
 

Static Public Attributes

static const scalar minTetQuality = sqr(SMALL)
 Minimum tetrahedron quality. More...
 

Detailed Description

Tools for performing the minimum decomposition of faces of the mesh into triangles so that the cells may be tet decomposed. Includes functions for finding variable face starting (base) points on each face to avoid the decomposition of cells into tets that have negative or zero volume.

Source files

Definition at line 59 of file polyMeshTetDecomposition.H.

Member Function Documentation

◆ minQuality() [1/2]

Foam::scalar minQuality ( const polyMesh mesh,
const point cC,
const label  fI,
const bool  isOwner,
const label  faceBasePtI 
)
static

Given a face and cc and starting index for triangulation determine the worst tet quality.

Definition at line 42 of file polyMeshTetDecomposition.C.

References f(), mesh, and tetrahedron< Point, PointRef >::quality().

Here is the call graph for this function:

◆ minQuality() [2/2]

Foam::scalar minQuality ( const polyMesh mesh,
const label  facei,
const label  faceBasePtI 
)
static

Given a face and starting index for triangulation determine the worst tet quality (owner or neighbour)

Definition at line 95 of file polyMeshTetDecomposition.C.

References mesh.

◆ findSharedBasePoint() [1/2]

Foam::label findSharedBasePoint ( const polyMesh mesh,
label  fI,
const point nCc,
scalar  tol,
bool  report = false 
)
static

Find the first suitable base point to use for a minimum.

triangle decomposition of the face, suiting owner and neighbour cells. Finds the first base point on the face whose worst quality tet from either cell is better than tolerance. Neighbour cell centre supplied. For coupled patches.

Definition at line 134 of file polyMeshTetDecomposition.C.

References f(), forAll, mesh, Foam::min(), and pFaces.

Referenced by polyMeshGeometry::checkFaceTets().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ findSharedBasePoint() [2/2]

Foam::label findSharedBasePoint ( const polyMesh mesh,
label  fI,
scalar  tol,
bool  report = false 
)
static

As for findSharedBasePoint, but using neighbour cell.

centre from the mesh. For internal faces.

Definition at line 170 of file polyMeshTetDecomposition.C.

References mesh.

◆ findBasePoint()

Foam::label findBasePoint ( const polyMesh mesh,
label  fI,
scalar  tol,
bool  report = false 
)
static

Find the base point to use for a minimum triangle.

decomposition of the face, using only the owner information. For non-coupled boundary faces.

Definition at line 189 of file polyMeshTetDecomposition.C.

References f(), forAll, mesh, and pFaces.

Referenced by polyMeshGeometry::checkFaceTets().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ findFaceBasePts()

Foam::labelList findFaceBasePts ( const polyMesh mesh,
scalar  tol = minTetQuality,
bool  report = false 
)
static

Find a suitable base point for each face for decomposition into tets

Definition at line 225 of file polyMeshTetDecomposition.C.

References Foam::abort(), coupled(), Foam::FatalError, FatalErrorInFunction, mesh, coupledPolyPatch::owner(), and patches.

Referenced by polyMesh::tetBasePtIs().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ checkFaceTets()

bool checkFaceTets ( const polyMesh mesh,
scalar  tol = minTetQuality,
const bool  report = false,
labelHashSet setPtr = nullptr 
)
static

Check face-decomposition tet volume.

Definition at line 384 of file polyMeshTetDecomposition.C.

References coupled(), Foam::endl(), f(), forAll, Foam::Info, HashSet< Key, Hash >::insert(), mesh, p, patches, and reduce().

Referenced by wallBoundedStreamLine::read().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ faceTetIndices()

Foam::List< Foam::tetIndices > faceTetIndices ( const polyMesh mesh,
label  fI,
label  cI 
)
static

Return the tet decomposition of the given face, with.

respect to the given cell

Definition at line 542 of file polyMeshTetDecomposition.C.

References f(), mesh, and pFaces.

Referenced by FreeStream< CloudType >::inflow().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ cellTetIndices()

Foam::List< Foam::tetIndices > cellTetIndices ( const polyMesh mesh,
label  cI 
)
static

Return the tet decomposition of the given cell, see.

findFacePt for the meaning of the indices

Definition at line 566 of file polyMeshTetDecomposition.C.

References DynamicList< T, SizeMin >::append(), mesh, and pFaces.

Referenced by patchInjectionBase::setPositionAndCell().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ findTet()

Foam::tetIndices findTet ( const polyMesh mesh,
label  cI,
const point pt 
)
static

Find the tet decomposition of the cell containing the given point.

Definition at line 595 of file polyMeshTetDecomposition.C.

References tetIndices::cell(), f(), tetrahedron< Point, PointRef >::inside(), mesh, pFaces, and tetIndices::tet().

Referenced by polyMesh::findTetFacePt().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ adjustTetBasePtIs()

Foam::labelList adjustTetBasePtIs ( const polyMesh mesh,
const bool  report = false 
)
static

Return an adjusted list of tet base points.

Definition at line 637 of file polyMeshTetDecomposition.C.

References cells, Foam::endl(), Foam::exit(), f(), Foam::FatalError, FatalErrorInFunction, forAll, forAllConstIters(), mesh, Foam::nl, Foam::Pout, and Foam::returnReduce().

Referenced by isoSurfaceTopo::isoSurfaceTopo().

Here is the call graph for this function:
Here is the caller graph for this function:

Member Data Documentation

◆ minTetQuality

const Foam::scalar minTetQuality = sqr(SMALL)
static

Minimum tetrahedron quality.

Definition at line 66 of file polyMeshTetDecomposition.H.

Referenced by wallBoundedStreamLine::read().


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