MFEM v4.7.0
Finite element discretization library
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Protected Attributes | List of all members
mfem::Wedge Class Reference

Data type Wedge element. More...

#include <wedge.hpp>

Inheritance diagram for mfem::Wedge:
[legend]
Collaboration diagram for mfem::Wedge:
[legend]

Public Types

typedef Geometry::Constants< Geometry::PRISMgeom_t
 
- Public Types inherited from mfem::Element
enum  Type {
  POINT , SEGMENT , TRIANGLE , QUADRILATERAL ,
  TETRAHEDRON , HEXAHEDRON , WEDGE , PYRAMID
}
 Constants for the classes derived from Element. More...
 

Public Member Functions

 Wedge ()
 
 Wedge (const int *ind, int attr=1)
 Constructs wedge by specifying the indices and the attribute.
 
 Wedge (int ind1, int ind2, int ind3, int ind4, int ind5, int ind6, int attr=1)
 Constructs wedge by specifying the indices and the attribute.
 
Type GetType () const override
 Return element's type.
 
void GetVertices (Array< int > &v) const override
 Get the indices defining the vertices.
 
void SetVertices (const Array< int > &v) override
 Set the indices defining the vertices.
 
int * GetVertices () override
 
void SetVertices (const int *ind) override
 Set the indices defining the vertices.
 
int GetNVertices () const override
 
int GetNEdges () const override
 
const int * GetEdgeVertices (int ei) const override
 
MFEM_DEPRECATED int GetNFaces (int &nFaceVertices) const override
 
int GetNFaces () const override
 
int GetNFaceVertices (int fi) const override
 
const int * GetFaceVertices (int fi) const override
 
ElementDuplicate (Mesh *m) const override
 
virtual ~Wedge ()=default
 
- Public Member Functions inherited from mfem::Element
 Element (Geometry::Type bg=Geometry::POINT)
 Default element constructor.
 
virtual Type GetType () const =0
 Returns element's type.
 
Geometry::Type GetGeometryType () const
 
int GetAttribute () const
 Return element's attribute.
 
void SetAttribute (const int attr)
 Set element's attribute.
 
virtual void GetVertices (Array< int > &v) const =0
 Get the indices defining the vertices.
 
virtual void SetVertices (const Array< int > &v)=0
 Set the indices defining the vertices.
 
virtual void SetVertices (const int *ind)=0
 Set the indices defining the vertices.
 
virtual int * GetVertices ()=0
 
const int * GetVertices () const
 
virtual int GetNVertices () const =0
 
virtual int GetNEdges () const =0
 
virtual const int * GetEdgeVertices (int) const =0
 
virtual MFEM_DEPRECATED int GetNFaces (int &nFaceVertices) const =0
 
virtual int GetNFaces () const =0
 
virtual int GetNFaceVertices (int fi) const =0
 
virtual const int * GetFaceVertices (int fi) const =0
 
virtual void MarkEdge (const DSTable &v_to_v, const int *length)
 Mark the longest edge by assuming/changing the order of the vertices.
 
virtual int NeedRefinement (HashTable< Hashed2 > &v_to_v) const
 Return 1 if the element needs refinement in order to get conforming mesh.
 
virtual void ResetTransform (int tr)
 Set current coarse-fine transformation number.
 
virtual void PushTransform (int tr)
 Add 'tr' to the current chain of coarse-fine transformations.
 
virtual unsigned GetTransform () const
 Return current coarse-fine transformation.
 
virtual ElementDuplicate (Mesh *m) const =0
 
virtual ~Element ()
 Destroys element.
 

Protected Attributes

int indices [6]
 
- Protected Attributes inherited from mfem::Element
int attribute
 Element's attribute (specifying material property, etc).
 
Geometry::Type base_geom
 Element's type from the Finite Element's perspective.
 

Detailed Description

Data type Wedge element.

Definition at line 22 of file wedge.hpp.

Member Typedef Documentation

◆ geom_t

Definition at line 28 of file wedge.hpp.

Constructor & Destructor Documentation

◆ Wedge() [1/3]

mfem::Wedge::Wedge ( )
inline

Definition at line 30 of file wedge.hpp.

◆ Wedge() [2/3]

mfem::Wedge::Wedge ( const int *  ind,
int  attr = 1 
)

Constructs wedge by specifying the indices and the attribute.

Definition at line 19 of file wedge.cpp.

◆ Wedge() [3/3]

mfem::Wedge::Wedge ( int  ind1,
int  ind2,
int  ind3,
int  ind4,
int  ind5,
int  ind6,
int  attr = 1 
)

Constructs wedge by specifying the indices and the attribute.

Definition at line 29 of file wedge.cpp.

◆ ~Wedge()

virtual mfem::Wedge::~Wedge ( )
virtualdefault

Member Function Documentation

◆ Duplicate()

Element * mfem::Wedge::Duplicate ( Mesh m) const
inlineoverridevirtual
Note
The returned object should be deleted by the caller.

Implements mfem::Element.

Definition at line 72 of file wedge.hpp.

◆ GetEdgeVertices()

const int * mfem::Wedge::GetEdgeVertices ( int  ei) const
inlineoverridevirtual

Implements mfem::Element.

Definition at line 58 of file wedge.hpp.

◆ GetFaceVertices()

const int * mfem::Wedge::GetFaceVertices ( int  fi) const
inlineoverridevirtual

Implements mfem::Element.

Definition at line 69 of file wedge.hpp.

◆ GetNEdges()

int mfem::Wedge::GetNEdges ( ) const
inlineoverridevirtual

Implements mfem::Element.

Definition at line 56 of file wedge.hpp.

◆ GetNFaces() [1/2]

int mfem::Wedge::GetNFaces ( void  ) const
inlineoverridevirtual

Implements mfem::Element.

Definition at line 64 of file wedge.hpp.

◆ GetNFaces() [2/2]

int mfem::Wedge::GetNFaces ( int &  nFaceVertices) const
overridevirtual
Deprecated:
Use GetNFaces(void) and GetNFaceVertices(int) instead.

Implements mfem::Element.

Definition at line 62 of file wedge.cpp.

◆ GetNFaceVertices()

int mfem::Wedge::GetNFaceVertices ( int  fi) const
inlineoverridevirtual

Implements mfem::Element.

Definition at line 66 of file wedge.hpp.

◆ GetNVertices()

int mfem::Wedge::GetNVertices ( ) const
inlineoverridevirtual

Implements mfem::Element.

Definition at line 54 of file wedge.hpp.

◆ GetType()

Type mfem::Wedge::GetType ( ) const
inlineoverridevirtual

Return element's type.

Implements mfem::Element.

Definition at line 40 of file wedge.hpp.

◆ GetVertices() [1/2]

int * mfem::Wedge::GetVertices ( )
inlineoverridevirtual
Note
The returned array should NOT be deleted by the caller.

Implements mfem::Element.

Definition at line 49 of file wedge.hpp.

◆ GetVertices() [2/2]

void mfem::Wedge::GetVertices ( Array< int > &  v) const
overridevirtual

Get the indices defining the vertices.

Implements mfem::Element.

Definition at line 50 of file wedge.cpp.

◆ SetVertices() [1/2]

void mfem::Wedge::SetVertices ( const Array< int > &  v)
overridevirtual

Set the indices defining the vertices.

Implements mfem::Element.

Definition at line 56 of file wedge.cpp.

◆ SetVertices() [2/2]

void mfem::Wedge::SetVertices ( const int *  ind)
overridevirtual

Set the indices defining the vertices.

Implements mfem::Element.

Definition at line 42 of file wedge.cpp.

Member Data Documentation

◆ indices

int mfem::Wedge::indices[6]
protected

Definition at line 25 of file wedge.hpp.


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