Geophysical Inversion and Modelling Library v1.5.4
|
A abstract cell. More...
#include <meshentities.h>
Inherits GIMLI::MeshEntity.
Inherited by GIMLI::EdgeCell, GIMLI::Hexahedron, GIMLI::Pyramid, GIMLI::Quadrangle, GIMLI::Tetrahedron, GIMLI::TriPrism, and GIMLI::Triangle.
Public Member Functions | |
Cell () | |
Cell (const std::vector< Node * > &nodes) | |
virtual | ~Cell () |
bool | operator== (const Cell &cell) |
virtual uint | rtti () const |
virtual uint | parentType () const |
virtual uint | neighborCellCount () const |
uint | boundaryCount () const |
void | cleanNeighborInfos () |
Cell * | neighborCell (const RVector &sf) |
Cell * | neighborCell (uint i) |
virtual void | findNeighborCell (uint i) |
double | attribute () const |
void | setAttribute (double attr) |
Node * | oppositeTo (const Boundary &bound) |
Boundary * | boundaryTo (const RVector &sf) |
Boundary * | boundary (Index i) |
virtual std::vector< Node * > | boundaryNodes (Index i) const |
![]() | |
MeshEntity () | |
virtual | ~MeshEntity () |
virtual uint | dim () const |
virtual void | setNodes (const std::vector< Node * > &nodes) |
const std::vector< Node * > & | nodes () const |
Node & | node (uint i) |
Node & | node (uint i) const |
uint | nodeCount () const |
Shape & | shape () |
Shape & | shape () const |
Shape * | pShape () |
RVector3 | rst (uint i) const |
RVector3 | center () const |
double | size () const |
IndexArray | ids () const |
virtual std::vector< PolynomialFunction< double > > | createShapeFunctions () const |
virtual RVector | N (const RVector3 &rst) const |
virtual void | N (const RVector3 &rst, RVector &n) const |
virtual RVector | dNdL (const RVector3 &rst, uint i) const |
virtual RMatrix | dNdL (const RVector3 &rst) const |
double | pot (const RVector3 &p, const RVector &u) const |
RVector3 | vec (const RVector3 &p, const R3Vector &v) const |
RVector3 | grad (const RVector3 &p, const RVector &u) const |
void | setUxCache (const RMatrix &mat) const |
const RMatrix & | uxCache () const |
ElementMatrix< double > & | uCache () |
ElementMatrix< double > & | gradUCache () |
void | changed () |
void | addSecondaryNode (Node *n) |
void | delSecondaryNode (Node *n) |
const std::vector< Node * > & | secondaryNodes () const |
const std::vector< Node * > | allNodes () const |
Index | allNodeCount () const |
virtual bool | enforcePositiveDirection () |
![]() | |
BaseEntity (const BaseEntity &ent) | |
BaseEntity & | operator= (const BaseEntity &ent) |
virtual bool | valid () const |
virtual void | setValid (bool valid) |
int | id () const |
void | setId (int id) |
void | setMarker (int marker) |
int | marker () const |
void | setTagged (bool tagged) |
void | untag () |
void | tag () |
bool | tagged () const |
Protected Member Functions | |
virtual void | registerNodes_ () |
virtual void | deRegisterNodes_ () |
virtual void | registerSecNode_ (Node *n) |
virtual void | deRegisterSecNode_ (Node *n) |
Cell (const Cell &cell) | |
Cell & | operator= (const Cell &cell) |
![]() | |
void | fillShape_ () |
MeshEntity (const MeshEntity &ent) | |
MeshEntity & | operator= (const MeshEntity &ent) |
Protected Attributes | |
std::vector< Cell * > | neighborCells_ |
double | attribute_ |
![]() | |
Shape * | shape_ |
std::vector< Node * > | nodeVector_ |
std::vector< Node * > | secondaryNodes_ |
ElementMatrix< double > | uCache_ |
ElementMatrix< double > | gradUCache_ |
RMatrix | uxCache_ |
![]() | |
int | id_ |
bool | valid_ |
int | marker_ |
bool | tagged_ |
Friends | |
DLLEXPORT friend std::ostream & | operator<< (std::ostream &str, const Cell &c) |
A abstract cell.
Interface class for all cells.
GIMLI::Cell::Cell | ( | ) |
Default constructor.
References GIMLI::MeshEntity::MeshEntity().
Referenced by Cell(), neighborCell(), operator=(), and operator==().
GIMLI::Cell::Cell | ( | const std::vector< Node * > & | nodes | ) |
Construct cell from vector of nodes.
References GIMLI::MeshEntity::MeshEntity().
|
virtual |
Default destructor.
|
inlineprotected |
Don't call this class directly
References Cell().
|
inlinevirtual |
Reimplemented from GIMLI::MeshEntity.
Boundary * GIMLI::Cell::boundary | ( | Index | i | ) |
Return the i-th boundary. Experimental!
References boundaryNodes().
Referenced by GIMLI::Mesh::findCellsAlongRay().
|
inlinevirtual |
Experimental
Reimplemented in GIMLI::EdgeCell, GIMLI::Hexahedron20, GIMLI::Hexahedron, GIMLI::Pyramid, GIMLI::Quadrangle, GIMLI::Tetrahedron, GIMLI::Triangle, and GIMLI::TriPrism.
References rtti().
Referenced by boundary(), GIMLI::Mesh::createNeighborInfosCell_(), and findNeighborCell().
Find the nearest boundary to be crossed in direction to the point responsible for the shape function.
References GIMLI::find(), and rtti().
|
protectedvirtual |
Reimplemented from GIMLI::MeshEntity.
|
protectedvirtual |
Reimplemented from GIMLI::MeshEntity.
|
virtual |
Find neighbor cell regarding to the i-th Boundary and store them in neighborCells_.
References boundaryNodes().
Referenced by GIMLI::Mesh::createNeighborInfosCell_().
|
inline |
Return the direct neighbor cell corresponding to local node i. The cell will be searched and stored by the virtual method findNeighborCell. All neighboring relationships have to be initialized ones by calling Mesh::createNeighborInfos(). If no cell can be found NULL is returned.
References Cell().
Don't call this class directly
References Cell().
|
inline |
For pygimli bindings to allow simple check
References Cell().
DEPRECATED???? Find the node of this cell which is in opposite position to the given boundary. Returns a pointer to the node. The boundary must be part of the cell otherwise, a NULL pointer returns. Works for triangle/edge and tetrahedron/triangleFace
Referenced by GIMLI::Edge::swap().
|
inlinevirtual |
To separate between major MeshEntity families e.g. Cell and Boundary.
Reimplemented from GIMLI::MeshEntity.
|
protectedvirtual |
Reimplemented from GIMLI::MeshEntity.
|
protectedvirtual |
Reimplemented from GIMLI::MeshEntity.
|
inlinevirtual |
Return the runtime identification for this MeshEntity.
Reimplemented from GIMLI::MeshEntity.
Reimplemented in GIMLI::Edge3Cell, GIMLI::EdgeCell, GIMLI::Hexahedron20, GIMLI::Hexahedron, GIMLI::Pyramid13, GIMLI::Pyramid, GIMLI::Quadrangle8, GIMLI::Quadrangle, GIMLI::Tetrahedron10, GIMLI::Tetrahedron, GIMLI::Triangle6, GIMLI::Triangle, GIMLI::TriPrism15, and GIMLI::TriPrism.
Referenced by boundaryNodes(), boundaryTo(), and GIMLI::Mesh::createRefined_().