10 #include <dolfinx/common/types.h>
47 const std::vector<std::vector<std::set<int>>>&
entity_dofs,
49 const std::vector<int>& parent_map,
50 const std::vector<std::shared_ptr<const ElementDofLayout>>& sub_dofmaps);
90 std::vector<int>
entity_dofs(
int entity_dim,
int cell_entity_index)
const;
97 int cell_entity_index)
const;
100 const std::vector<std::vector<std::set<int>>>&
entity_dofs_all()
const;
104 const std::vector<std::vector<std::set<int>>>&
111 std::shared_ptr<const ElementDofLayout>
112 sub_dofmap(
const std::vector<int>& component)
const;
117 std::vector<int>
sub_view(
const std::vector<int>& component)
const;
133 std::vector<int> _parent_map;
139 std::array<int, 4> _num_entity_dofs;
143 std::array<int, 4> _num_entity_closure_dofs;
147 std::vector<std::vector<std::set<int>>> _entity_dofs;
150 std::vector<std::vector<std::set<int>>> _entity_closure_dofs;
153 std::vector<std::shared_ptr<const ElementDofLayout>> _sub_dofmaps;
The class represents the degree-of-freedom (dofs) for an element. Dofs are associated with a mesh ent...
Definition: ElementDofLayout.h:34
ElementDofLayout & operator=(ElementDofLayout &&dofmap)=default
Move assignment.
int num_entity_dofs(int dim) const
Return the number of dofs for a given entity dimension.
Definition: ElementDofLayout.cpp:56
int num_dofs() const
Return the dimension of the local finite element function space on a cell (number of dofs on element)
Definition: ElementDofLayout.cpp:54
ElementDofLayout(int block_size, const std::vector< std::vector< std::set< int >>> &entity_dofs, const std::vector< std::vector< std::set< int >>> &entity_closure_dofs, const std::vector< int > &parent_map, const std::vector< std::shared_ptr< const ElementDofLayout >> &sub_dofmaps)
Constructor.
Definition: ElementDofLayout.cpp:19
std::vector< int > entity_closure_dofs(int entity_dim, int cell_entity_index) const
Local-local closure dofs on entity of cell.
Definition: ElementDofLayout.cpp:75
~ElementDofLayout()=default
Destructor.
std::vector< int > sub_view(const std::vector< int > &component) const
Get view for a sub dofmap, defined by the component list (as for sub_dofmap()), into this dofmap....
Definition: ElementDofLayout.cpp:114
ElementDofLayout & operator=(const ElementDofLayout &dofmap)=default
Copy assignment.
int num_entity_closure_dofs(int dim) const
Return the number of closure dofs for a given entity dimension.
Definition: ElementDofLayout.cpp:61
int block_size() const
Block size.
Definition: ElementDofLayout.cpp:139
int num_sub_dofmaps() const
Get number of sub-dofmaps.
Definition: ElementDofLayout.cpp:95
std::vector< int > entity_dofs(int entity_dim, int cell_entity_index) const
Local-local mapping of dofs on entity of cell.
Definition: ElementDofLayout.cpp:66
std::shared_ptr< const ElementDofLayout > sub_dofmap(const std::vector< int > &component) const
Get sub-dofmap given by list of components, one for each level.
Definition: ElementDofLayout.cpp:98
const std::vector< std::vector< std::set< int > > > & entity_closure_dofs_all() const
Direct access to all entity closure dofs (dof = _entity_dofs[dim][entity][i])
Definition: ElementDofLayout.cpp:90
ElementDofLayout(ElementDofLayout &&dofmap)=default
Move constructor.
ElementDofLayout copy() const
Copy the DOF layout, discarding any parent information.
Definition: ElementDofLayout.cpp:47
bool is_view() const
True iff dof map is a view into another map.
Definition: ElementDofLayout.cpp:141
const std::vector< std::vector< std::set< int > > > & entity_dofs_all() const
Direct access to all entity dofs (dof = _entity_dofs[dim][entity][i])
Definition: ElementDofLayout.cpp:84
ElementDofLayout(const ElementDofLayout &dofmap)=default
Copy constructor.
Finite element method functionality.
Definition: assemble_matrix_impl.h:23
Mesh data structures and algorithms on meshes.
Definition: DirichletBC.h:20
CellType
Cell type identifier.
Definition: cell_types.h:22