Open Inventor Release 2024.1.0
 
Loading...
Searching...
No Matches
MxWedge18CellExtract Class Reference

MeshViz Utility class for quadratic wedge cells with 18 nodes. More...

#include <MeshVizXLM/extractors/MxWedge18CellExtract.h>

Static Public Member Functions

static MbVec3d getIsoParametricCoord (const MiGeometryI &meshGeometry, const MiVolumeCell *wedgeCell, const MbVec3d &point)
 Computes the iso parametric coordinates of the given point in the given cell with the given geometry.
 
static MbVec3d getIsoParametricCoord (size_t nodeIndex)
 Returns the iso parametric coordinates of one of the 18 nodes of a quadratic wedge.
 
static void getWeight (const MiGeometryI &meshGeometry, const MiVolumeCell *wedgeCell, const MbVec3d &point, std::vector< double > &weights)
 Gets the weights in the given cell of the given point.
 
static void getWeight (const MbVec3d &ipcoord, std::vector< double > &weights)
 Gets the weights of a point defined by its iso parametric coordinates.
 
static void getDerivs (const MbVec3d &ipcoord, std::vector< double > &derivs)
 Gets the value of the derivatives of the shape functions (aka weights) at the point given by its iso parametric coordinates.
 
static bool isPointInsideCell (const MiGeometryI &meshGeometry, const MiVolumeCell *wedgeCell, const MbVec3d &point, std::vector< double > &weights)
 Checks if a point is inside or outside a quadratic wedge cell of 18 nodes.
 
static size_t getNodesIndexOfFacet (size_t facet, std::vector< size_t > &facetNodes)
 Gets the array of "linear" node indices belonging to a given facet.
 
static size_t getSubTriangleNodesIndex (size_t face, std::vector< size_t > &triangleNodeIds)
 Gets a triangulation of the given facet of a quadratic wedge of 18 nodes.
 
static size_t getSubTetrahedronNodesIndex (std::vector< size_t > &tetrahedronNodeIds)
 Gets a decomposition in sub-tetrahedra of a quadratic wedge of 18 nodes.
 

Friends

std::ostream & operator<< (std::ostream &s, const MxWedge18CellExtract &cell)
 

Detailed Description

MeshViz Utility class for quadratic wedge cells with 18 nodes.

Utility class that provides a static implementation of the MiVolumeCell's methods for a quadratic wedge of 18 nodes. This class is provided to make easier the creation of a class that implements the MiVolumeCell interface for a quadratic wedge of 18 nodes.

The following image shows the nodes numbering and the faces numbering used by this class. The weight (see getWeight()), parametric coordinates (see getIsoParametricCoord()), and the decomposition in sub tetrahedrons (see getSubTetrahedronNodesIndex()) are defined according to this node numbering. The face decomposition (see getSubTriangleNodesIndex()) is defined according to this node and face numbering.

Nodes and faces numbering

Definition at line 62 of file MxWedge18CellExtract.h.

Member Function Documentation

◆ getDerivs()

static void MxWedge18CellExtract::getDerivs ( const MbVec3d ipcoord,
std::vector< double > &  derivs 
)
static

Gets the value of the derivatives of the shape functions (aka weights) at the point given by its iso parametric coordinates.

Parameters
[in]ipcoordThe iso parametric coordinates of the input point. The reference space for the iso parametric coordinates is assumed to be [0-1]. Thus any point inside the cell has iso parametric coordinates in the interval [0-1].
[out]derivsThis method computes the 54 values derivs[0-53].
It assumes the derivs vector array has been already allocated. Its size must be set to 54 (at least) before calling this method, using for instance the derivs.resize(54)

◆ getIsoParametricCoord() [1/2]

static MbVec3d MxWedge18CellExtract::getIsoParametricCoord ( const MiGeometryI meshGeometry,
const MiVolumeCell wedgeCell,
const MbVec3d point 
)
static

Computes the iso parametric coordinates of the given point in the given cell with the given geometry.

As computing the iso parametric coordinates of a point needs the coordinates of the cell's nodes, the given wedgeCell is assumed to contain 18 nodes.

Note
Each node coordinate of the given cell is retrieved in the following way:
 meshGeometry.getCoord(wedgeCell->getNodeIndex(i)) 
for each i in the range [0-17].
Parameters
[in]meshGeometryThe geometry of the mesh.
[in]wedgeCellThe input cell.
[in]pointThe input point given in the same space coordinate as meshGeometry.

◆ getIsoParametricCoord() [2/2]

static MbVec3d MxWedge18CellExtract::getIsoParametricCoord ( size_t  nodeIndex)
static

Returns the iso parametric coordinates of one of the 18 nodes of a quadratic wedge.

This static method helps to implement the method MiCell::getIsoParametricCoord().

Parameters
[in]nodeIndexMust be defined in the range [0-17]

◆ getNodesIndexOfFacet()

static size_t MxWedge18CellExtract::getNodesIndexOfFacet ( size_t  facet,
std::vector< size_t > &  facetNodes 
)
inlinestatic

Gets the array of "linear" node indices belonging to a given facet.

Parameters
[in]facetThe index of the facet (where 0 <= facet < 5).
[out]facetNodesThe array of "linear" local node indices of the facet. ( 0 <= facetNodes[i] < 18 for each i ).
Returns
The number of nodes added.

Definition at line 172 of file MxWedge18CellExtract.h.

◆ getSubTetrahedronNodesIndex()

static size_t MxWedge18CellExtract::getSubTetrahedronNodesIndex ( std::vector< size_t > &  tetrahedronNodeIds)
inlinestatic

Gets a decomposition in sub-tetrahedra of a quadratic wedge of 18 nodes.

This static method helps to implement the method MiVolumeCell::getSubTetrahedronNodesIndex() for a quadratic wedge of 18 nodes.

Parameters
[out]tetrahedronNodeIdsSub tetrahedra node ids (where: 0 <= tetrahedronNodeIds[i] < 18 for each i). this method assign the 96 node ids tetrahedronNodeIds[0-95]
Returns
24 (number of sub-tetrahedra in a quadratic wedge of 18 nodes)

Definition at line 200 of file MxWedge18CellExtract.h.

◆ getSubTriangleNodesIndex()

static size_t MxWedge18CellExtract::getSubTriangleNodesIndex ( size_t  face,
std::vector< size_t > &  triangleNodeIds 
)
inlinestatic

Gets a triangulation of the given facet of a quadratic wedge of 18 nodes.

This static method helps to implement the method MiVolumeCell::getSubTriangleNodesIndex() for a quadratic wedge of 18 nodes.

Parameters
[in]faceNumber of the face. (where: 0 <= face < 5 ).
[out]triangleNodeIdsSub triangle node ids (where: 0 <= triangleNodeIds[i] < 18 for each i).
Returns
The number of sub triangles in the facet of the cell.

Definition at line 186 of file MxWedge18CellExtract.h.

◆ getWeight() [1/2]

static void MxWedge18CellExtract::getWeight ( const MbVec3d ipcoord,
std::vector< double > &  weights 
)
static

Gets the weights of a point defined by its iso parametric coordinates.

This static method helps to implement the method MiCell::getWeight(ipcoord,weights) for a quadratic wedge of 18 nodes.

Parameters
[in]ipcoordThe iso parametric coordinates of the input point. The reference space for the iso parametric coordinates is assumed to be [0-1]. Thus any point inside the cell has iso parametric coordinates in the interval [0-1].
[out]weightsThis method computes the 18 values weights[0-17].
It assumes the weights vector array has been already allocated. Its size must be set to 18 (at least) before calling this method, using for instance the weights.resize(18)

◆ getWeight() [2/2]

static void MxWedge18CellExtract::getWeight ( const MiGeometryI meshGeometry,
const MiVolumeCell wedgeCell,
const MbVec3d point,
std::vector< double > &  weights 
)
inlinestatic

Gets the weights in the given cell of the given point.

This static method helps to implement the method MiCell::getWeight(meshGeometry,point,weights) for a quadratic wedge of 18 nodes. As computing the weights of a point needs the coordinates of the cell's nodes, the given wedgeCell is assumed to contain 18 nodes.

Note
Each node coordinate of the given cell is retrieved in the following way:
 meshGeometry.getCoord(wedgeCell->getNodeIndex(i)) 
for each i in the range [0-17].
Parameters
[in]meshGeometryThe geometry of the mesh.
[in]wedgeCellThe input cell.
[in]pointThe input point given in the same space coordinate as meshGeometry.
[out]weightsThis method computes the 18 values weights[0-17]. It assumes the weights vector array has been already allocated. Its size must be set to 18 (at least) before calling this method, using for instance the weights.resize(18)

Definition at line 107 of file MxWedge18CellExtract.h.

◆ isPointInsideCell()

static bool MxWedge18CellExtract::isPointInsideCell ( const MiGeometryI meshGeometry,
const MiVolumeCell wedgeCell,
const MbVec3d point,
std::vector< double > &  weights 
)
inlinestatic

Checks if a point is inside or outside a quadratic wedge cell of 18 nodes.

This static method helps to implement the method MiCell::isPointInsideCell(meshGeometry,point,weights) for a quadratic wedge of 18 nodes.

Parameters
[in]meshGeometryThe geometry of the mesh.
[in]wedgeCellThe input cell.
[in]pointThe input point given in the same space coordinate as meshGeometry.
[out]weightsThis method computes the 18 values weights[0-17] if the point is inside the cell. It assumes the weights vector array has been already allocated. Its size must be set to 18 (at least) before calling this method, using for instance the weights.resize(18)
Returns
true if the point is inside the cell.

Definition at line 153 of file MxWedge18CellExtract.h.

Friends And Related Symbol Documentation

◆ operator<<

std::ostream & operator<< ( std::ostream &  s,
const MxWedge18CellExtract cell 
)
friend

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