MFEM
v3.0
|
Data type tetrahedron element. More...
#include <tetrahedron.hpp>
Public Types | |
enum | { TYPE_PU =0, TYPE_A =1, TYPE_PF =2, TYPE_O =3, TYPE_M =4 } |
Constants for different types of tetrahedrons. More... | |
Public Types inherited from mfem::Element | |
enum | Type { POINT, SEGMENT, TRIANGLE, QUADRILATERAL, TETRAHEDRON, HEXAHEDRON, BISECTED, QUADRISECTED, OCTASECTED } |
Constants for the classes derived from Element. More... | |
Public Member Functions | |
Tetrahedron () | |
Tetrahedron (const int *ind, int attr=1) | |
Constructs tetrahedron by specifying the indices and the attribute. More... | |
Tetrahedron (int ind1, int ind2, int ind3, int ind4, int attr=1) | |
Constructs tetrahedron by specifying the indices and the attribute. More... | |
void | ParseRefinementFlag (int refinement_edges[2], int &type, int &flag) |
void | CreateRefinementFlag (int refinement_edges[2], int type, int flag=0) |
virtual int | GetRefinementFlag () |
void | SetRefinementFlag (int rf) |
virtual int | NeedRefinement (DSTable &v_to_v, int *middle) const |
Return 1 if the element needs refinement in order to get conforming mesh. More... | |
virtual void | SetVertices (const int *ind) |
Set the vertices according to the given input. More... | |
virtual void | MarkEdge (DenseMatrix &pmat) |
Mark the longest edge by assuming/changing the order of the vertices. More... | |
virtual void | MarkEdge (const DSTable &v_to_v, const int *length) |
virtual int | GetType () const |
Return element's type. More... | |
virtual void | GetVertices (Array< int > &v) const |
Returns the indices of the element's vertices. More... | |
virtual int * | GetVertices () |
virtual int | GetNVertices () const |
virtual int | GetNEdges () const |
virtual const int * | GetEdgeVertices (int ei) const |
virtual int | GetNFaces (int &nFaceVertices) const |
virtual const int * | GetFaceVertices (int fi) const |
virtual Element * | Duplicate (Mesh *m) const |
virtual | ~Tetrahedron () |
Public Member Functions inherited from mfem::Element | |
Element (int bg=Geometry::POINT) | |
Default element constructor. More... | |
int | GetGeometryType () const |
const int * | GetVertices () const |
int | GetAttribute () const |
Return element's attribute. More... | |
void | SetAttribute (const int attr) |
Set element's attribute. More... | |
virtual | ~Element () |
Destroys element. More... | |
Protected Attributes | |
int | indices [4] |
int | refinement_flag |
Protected Attributes inherited from mfem::Element | |
int | attribute |
Element's attribute (specifying material property, etc). More... | |
int | base_geom |
Static Protected Attributes | |
static const int | edges [6][2] |
Data type tetrahedron element.
Definition at line 22 of file tetrahedron.hpp.
anonymous enum |
Constants for different types of tetrahedrons.
Enumerator | |
---|---|
TYPE_PU | |
TYPE_A | |
TYPE_PF | |
TYPE_O | |
TYPE_M |
Definition at line 41 of file tetrahedron.hpp.
|
inline |
Definition at line 43 of file tetrahedron.hpp.
mfem::Tetrahedron::Tetrahedron | ( | const int * | ind, |
int | attr = 1 |
||
) |
Constructs tetrahedron by specifying the indices and the attribute.
Definition at line 104 of file tetrahedron.cpp.
mfem::Tetrahedron::Tetrahedron | ( | int | ind1, |
int | ind2, | ||
int | ind3, | ||
int | ind4, | ||
int | attr = 1 |
||
) |
Constructs tetrahedron by specifying the indices and the attribute.
Definition at line 113 of file tetrahedron.cpp.
|
inlinevirtual |
Definition at line 94 of file tetrahedron.hpp.
void mfem::Tetrahedron::CreateRefinementFlag | ( | int | refinement_edges[2], |
int | type, | ||
int | flag = 0 |
||
) |
Definition at line 40 of file tetrahedron.cpp.
Implements mfem::Element.
Definition at line 252 of file tetrahedron.cpp.
|
inlinevirtual |
Implements mfem::Element.
Definition at line 84 of file tetrahedron.hpp.
|
inlinevirtual |
Implements mfem::Element.
Definition at line 89 of file tetrahedron.hpp.
|
inlinevirtual |
Implements mfem::Element.
Definition at line 82 of file tetrahedron.hpp.
|
inlinevirtual |
Implements mfem::Element.
Definition at line 86 of file tetrahedron.hpp.
|
inlinevirtual |
Implements mfem::Element.
Definition at line 80 of file tetrahedron.hpp.
|
inlinevirtual |
Reimplemented from mfem::Element.
Definition at line 54 of file tetrahedron.hpp.
|
inlinevirtual |
|
virtual |
Returns the indices of the element's vertices.
Implements mfem::Element.
Definition at line 243 of file tetrahedron.cpp.
|
inlinevirtual |
Implements mfem::Element.
Definition at line 78 of file tetrahedron.hpp.
|
inlinevirtual |
Mark the longest edge by assuming/changing the order of the vertices.
Reimplemented from mfem::Element.
Definition at line 65 of file tetrahedron.hpp.
|
virtual |
Reorder the vertices so that the longest edge is from vertex 0 to vertex 1. If called it should be once from the mesh constructor, because the order may be used later for setting the edges.
Reimplemented from mfem::Element.
Definition at line 149 of file tetrahedron.cpp.
|
virtual |
Return 1 if the element needs refinement in order to get conforming mesh.
Reimplemented from mfem::Element.
Definition at line 124 of file tetrahedron.cpp.
void mfem::Tetrahedron::ParseRefinementFlag | ( | int | refinement_edges[2], |
int & | type, | ||
int & | flag | ||
) |
Definition at line 22 of file tetrahedron.cpp.
|
inline |
Definition at line 56 of file tetrahedron.hpp.
|
virtual |
Set the vertices according to the given input.
Reimplemented from mfem::Element.
Definition at line 143 of file tetrahedron.cpp.
|
staticprotected |
Definition at line 26 of file tetrahedron.hpp.
|
protected |
Definition at line 25 of file tetrahedron.hpp.
|
protected |
The refinement flag keeps (in order) :
Definition at line 36 of file tetrahedron.hpp.