Version: 8.3.0
SMDS_Downward Class Referenceabstract

#include <SMDS_Downward.hxx>

Inheritance diagram for SMDS_Downward:

Public Member Functions

virtual int getNumberOfDownCells (int cellId)
 Get the number of downward entities associated to a cell (always the same for a given vtk type of cell) More...
 
virtual const intgetDownCells (int cellId)
 get a pointer on the downward entities id's associated to a cell. More...
 
virtual const unsigned char * getDownTypes (int cellId)
 get a list of vtk cell types associated to downward entities of a given cell, in the same order than the downward entities id's list ( More...
 
virtual int getNumberOfUpCells (int cellId)=0
 
virtual const intgetUpCells (int cellId)=0
 
virtual const unsigned char * getUpTypes (int cellId)=0
 
virtual void getNodeIds (int cellId, std::set< int > &nodeSet)=0
 
virtual int getNodes (int cellId, int *nodevec)
 
virtual void getOrderedNodesOfFace (int cellId, std::vector< vtkIdType > &orderedNodes)
 
int getVtkCellId (int cellId)
 
int getMaxId ()
 

Static Public Member Functions

static int getCellDimension (unsigned char cellType)
 get the dimension of a cell (1,2,3 for 1D, 2D 3D) given the vtk cell type More...
 

Protected Member Functions

 SMDS_Downward (SMDS_UnstructuredGrid *grid, int nbDownCells)
 Generic constructor for all the downward connectivity structures (one per vtk cell type). More...
 
virtual ~SMDS_Downward ()
 
int addCell (int vtkId=-1)
 Give or create an entry for downward connectivity structure relative to a cell. More...
 
virtual void initCell (int cellId)
 generic method do nothing. More...
 
virtual void allocate (int nbElems)=0
 
virtual void compactStorage ()=0
 
virtual void addDownCell (int cellId, int lowCellId, unsigned char aType)
 Id's are downward connectivity id's. More...
 
virtual void addUpCell (int cellId, int upCellId, unsigned char aType)
 Id's are downward connectivity id's. More...
 
virtual int getNodeSet (int cellId, int *nodeSet)
 

Protected Attributes

SMDS_UnstructuredGrid_grid
 
int _maxId
 
int _nbDownCells
 the same number for all cells of a derived class More...
 
std::vector< int_cellIds
 growing size: all the down cell id's, size = _maxId * _nbDownCells More...
 
std::vector< int_vtkCellIds
 growing size: size = _maxId, either vtkId or -1 More...
 
std::vector< unsigned char > _cellTypes
 fixed size: the same vector for all cells of a derived class More...
 

Static Protected Attributes

static std::vector< int_cellDimension
 conversion table: type –> dimension More...
 

Friends

class SMDS_UnstructuredGrid
 
class SMDS_Down2D
 
class SMDS_Down3D
 

Constructor & Destructor Documentation

SMDS_Downward::SMDS_Downward ( SMDS_UnstructuredGrid grid,
int  nbDownCells 
)
protected

Generic constructor for all the downward connectivity structures (one per vtk cell type).

The static structure for cell dimension is set only once.

Parameters
gridunstructured grid associated to the mesh.
nbDownCellsnumber of downward entities associated to this vtk type of cell.
Returns

References _cellDimension, _cellIds, _cellTypes, _maxId, and getCellDimension().

SMDS_Downward::~SMDS_Downward ( )
protectedvirtual

Member Function Documentation

int SMDS_Downward::addCell ( int  vtkId = -1)
protected

Give or create an entry for downward connectivity structure relative to a cell.

If the entry already exists, just return its id, otherwise, create it. The internal storage memory is allocated if needed. The SMDS_UnstructuredGrid::_cellIdToDownId vector is completed for vtkUnstructuredGrid cells.

Parameters
vtkIdfor a vtkUnstructuredGrid cell or -1 (default) for a created downward cell.
Returns
the rank in downward[vtkType] structure.

References _grid, _maxId, _vtkCellIds, allocate(), SMDS_UnstructuredGrid::CellIdToDownId(), initCell(), and SMDS_UnstructuredGrid::setCellIdToDownId().

void SMDS_Downward::addDownCell ( int  cellId,
int  lowCellId,
unsigned char  aType 
)
protectedvirtual

Id's are downward connectivity id's.

add a downward entity of dimension n-1 (cell or node) to a given cell.

Actual implementation is done in derived methods.

Parameters
cellIdindex of the parent cell (dimension n) in the downward structure relative to a vtk cell type.
lowCellIdindex of the children cell to add (dimension n-1)
aTypevtk cell type of the cell to add (needed to find the SMDS_Downward structure containing the cell to add).

Reimplemented in SMDS_DownQuadHexa, SMDS_DownHexa, SMDS_DownQuadPenta, SMDS_DownPenta, SMDS_DownQuadPyramid, SMDS_DownPyramid, SMDS_DownQuadTetra, SMDS_DownTetra, SMDS_DownQuadQuadrangle, SMDS_DownQuadrangle, SMDS_DownQuadTriangle, and SMDS_DownTriangle.

void SMDS_Downward::addUpCell ( int  cellId,
int  upCellId,
unsigned char  aType 
)
protectedvirtual

Id's are downward connectivity id's.

add a downward entity of dimension n+1 to a given cell.

Actual implementation is done in derived methods.

Parameters
cellIdindex of the children cell (dimension n) in the downward structure relative to a vtk cell type.
upCellIdindex of the parent cell to add (dimension n+1)
aTypevtk cell type of the cell to add (needed to find the SMDS_Downward structure containing the cell to add).

Reimplemented in SMDS_Down2D, and SMDS_Down1D.

virtual void SMDS_Downward::allocate ( int  nbElems)
protectedpure virtual

Implemented in SMDS_Down3D, SMDS_Down2D, and SMDS_Down1D.

Referenced by addCell().

virtual void SMDS_Downward::compactStorage ( )
protectedpure virtual

Implemented in SMDS_Down3D, SMDS_Down2D, and SMDS_Down1D.

int SMDS_Downward::getCellDimension ( unsigned char  cellType)
static
const int * SMDS_Downward::getDownCells ( int  cellId)
virtual

get a pointer on the downward entities id's associated to a cell.

See Also
SMDS_Downward::getNumberOfDownCells for the number of downward entities.
SMDS_Downward::getDownTypes for the vtk cell types associated to the downward entities.
Parameters
cellIdindex of the cell in the downward structure relative to a given vtk cell type.
Returns
table of downward entities id's.

References _cellIds, and _nbDownCells.

Referenced by SMDS_Down1D::computeFaces(), SMESH_MeshEditor::CreateHoleSkin(), and SMESH_MeshEditor::DoubleNodesOnGroupBoundaries().

const unsigned char * SMDS_Downward::getDownTypes ( int  cellId)
virtual

get a list of vtk cell types associated to downward entities of a given cell, in the same order than the downward entities id's list (

See Also
SMDS_Downward::getDownCells).
Parameters
cellIdindex of the cell in the downward structure relative to a vtk cell type.
Returns
table of downward entities types.

References _cellTypes.

Referenced by SMDS_Down1D::computeFaces(), SMESH_MeshEditor::CreateHoleSkin(), and SMESH_MeshEditor::DoubleNodesOnGroupBoundaries().

int SMDS_Downward::getMaxId ( )
virtual void SMDS_Downward::getNodeIds ( int  cellId,
std::set< int > &  nodeSet 
)
pure virtual

Implemented in SMDS_Down3D, SMDS_Down2D, and SMDS_Down1D.

Referenced by SMDS_Down2D::getNodeIds().

virtual int SMDS_Downward::getNodes ( int  cellId,
int nodevec 
)
virtual
int SMDS_Downward::getNodeSet ( int  cellId,
int nodeSet 
)
protectedvirtual
int SMDS_Downward::getNumberOfDownCells ( int  cellId)
virtual

Get the number of downward entities associated to a cell (always the same for a given vtk type of cell)

Parameters
cellIdnot used here.
Returns

References _nbDownCells.

Referenced by SMDS_Down1D::computeFaces(), SMESH_MeshEditor::CreateHoleSkin(), and SMESH_MeshEditor::DoubleNodesOnGroupBoundaries().

virtual int SMDS_Downward::getNumberOfUpCells ( int  cellId)
pure virtual

Implemented in SMDS_Down3D, SMDS_Down2D, and SMDS_Down1D.

virtual void SMDS_Downward::getOrderedNodesOfFace ( int  cellId,
std::vector< vtkIdType > &  orderedNodes 
)
virtual
virtual const int* SMDS_Downward::getUpCells ( int  cellId)
pure virtual

Implemented in SMDS_Down3D, SMDS_Down2D, and SMDS_Down1D.

virtual const unsigned char* SMDS_Downward::getUpTypes ( int  cellId)
pure virtual

Implemented in SMDS_Down3D, SMDS_Down2D, and SMDS_Down1D.

int SMDS_Downward::getVtkCellId ( int  cellId)

References _vtkCellIds.

Referenced by SMESH_MeshEditor::CreateHoleSkin().

void SMDS_Downward::initCell ( int  cellId)
protectedvirtual

generic method do nothing.

see derived methods

Parameters
cellId

Reimplemented in SMDS_Down1D.

Referenced by addCell().

Friends And Related Function Documentation

friend class SMDS_Down2D
friend
friend class SMDS_Down3D
friend
friend class SMDS_UnstructuredGrid
friend

Field Documentation

vector< int > SMDS_Downward::_cellDimension
staticprotected

conversion table: type –> dimension

Referenced by SMDS_Downward().