![]() |
LehrFEM++ 1.0.0
A simple Finite Element Library for teaching
|
Represents number of mesh elements (such as triangles/quadrilaterals/points/lines) that share the same properties. More...
#include <lf/io/gmsh_file_v4.h>
Public Attributes | |
int | dimension = -1 |
Dimension of the elements in this block. | |
int | entity_tag = -1 |
Tag of the entity to which elements in this block belong. If the mesh is not partitioned, this references a entities.tag . Otherwise it references a partitioned entity partitioned_entities.tag . | |
ElementType | element_type = ElementType::EDGE2 |
type of the elements in this block | |
std::vector< std::pair< std::size_t, std::vector< std::size_t > > > | elements |
The elements in this block. | |
Represents number of mesh elements (such as triangles/quadrilaterals/points/lines) that share the same properties.
Definition at line 394 of file gmsh_file_v4.h.
int lf::io::GMshFileV4::ElementBlock::dimension = -1 |
Dimension of the elements in this block.
Definition at line 396 of file gmsh_file_v4.h.
ElementType lf::io::GMshFileV4::ElementBlock::element_type = ElementType::EDGE2 |
type of the elements in this block
Definition at line 406 of file gmsh_file_v4.h.
std::vector<std::pair<std::size_t, std::vector<std::size_t> > > lf::io::GMshFileV4::ElementBlock::elements |
The elements in this block.
std::get<0>(elements[i])
is the unique tag of this elementstd::get<1>(elements[i])
lists the node tags that make up this element. Definition at line 415 of file gmsh_file_v4.h.
int lf::io::GMshFileV4::ElementBlock::entity_tag = -1 |
Tag of the entity to which elements in this block belong. If the mesh is not partitioned, this references a entities.tag
. Otherwise it references a partitioned entity partitioned_entities.tag
.
Definition at line 403 of file gmsh_file_v4.h.