HArD::Core2D
Hybrid Arbitrary Degree::Core 2D - Library to implement 2D schemes with edge and cell polynomials as unknowns
Public Member Functions | Protected Attributes | List of all members
HArDCore2D::LocalDOFSpace Class Reference

Base class for local DOF spaces: functions to access local DOFs (organised from the smallest dimension to the largest) associated with each geometric entity. More...

#include <localdofspace.hpp>

Inheritance diagram for HArDCore2D::LocalDOFSpace:
Inheritance graph
[legend]
Collaboration diagram for HArDCore2D::LocalDOFSpace:
Collaboration graph
[legend]

Public Member Functions

 LocalDOFSpace (const Mesh &mesh, size_t n_local_vertex_dofs, size_t n_local_edge_dofs, size_t n_local_cell_dofs)
 Constructor. More...
 
const Meshmesh () const
 Returns the mesh. More...
 
size_t numLocalDofsVertex () const
 Returns the number of local vertex DOFs. More...
 
size_t numLocalDofsEdge () const
 Returns the number of local edge DOFs. More...
 
size_t numLocalDofsCell () const
 Returns the number of local cell DOFs. More...
 
size_t dimension () const
 Returns the dimension of the global space (all DOFs for all geometric entities) More...
 
size_t numTotalDofsVertices () const
 Returns the total number of vertex DOFs. More...
 
size_t numTotalDofsEdges () const
 Returns the total number of vertex DOFs. More...
 
size_t numTotalDofsCells () const
 Returns the total number of vertex DOFs. More...
 
size_t dimensionVertex (const Vertex &V) const
 Returns the dimension of the local space on the vertex V. More...
 
size_t dimensionVertex (size_t iV) const
 Returns the dimension of the local space on the vertex of index iV. More...
 
size_t dimensionEdge (const Edge &E) const
 Returns the dimension of the local space on the edge E (including vertices) More...
 
size_t dimensionEdge (size_t iE) const
 Returns the dimension of the local space on the edge of index iE (including vertices) More...
 
size_t dimensionCell (const Cell &T) const
 Returns the dimension of the local space on the cell T (including faces, edges and vertices) More...
 
size_t dimensionCellBoundary (const Cell &T) const
 Returns the dimension of the local space on the boundary of T. More...
 
size_t dimensionCell (size_t iT) const
 Returns the dimension of the local space on the cell of index iT (including faces, edges and vertices) More...
 
size_t dimensionCellBoundary (size_t iT) const
 Returns the dimension of the local space on the boundary of T. More...
 
size_t localOffset (const Edge &E, const Vertex &V) const
 Returns the local offset of the vertex V with respect to the edge E. More...
 
size_t localOffset (const Edge &E) const
 Returns the local offset of the unknowns attached to the edge E. More...
 
size_t localOffset (const Cell &T, const Vertex &V) const
 Returns the local offset of the vertex V with respect to the cell T. More...
 
size_t localOffset (const Cell &T, const Edge &E) const
 Returns the local offset of the edge E with respect to the cell T. More...
 
size_t localOffset (const Cell &T) const
 Returns the local offset of the unknowns attached to the element T. More...
 

Protected Attributes

const Meshm_mesh
 
size_t m_n_local_vertex_dofs
 
size_t m_n_local_edge_dofs
 
size_t m_n_local_cell_dofs
 

Detailed Description

Base class for local DOF spaces: functions to access local DOFs (organised from the smallest dimension to the largest) associated with each geometric entity.

In a cell T, for example, the DOFs are presented in the order: DOFs of vertices of T, DOFs of edges of T, DOFs of T.


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