LehrFEM++ 1.0.0
A simple Finite Element Library for teaching
|
Represents a mesh volume/surface/line/point. More...
#include <lf/io/gmsh_file_v2.h>
Public Attributes | |
size_type | Number = 0 |
ElementType | Type = ElementType::POINT |
The element type. | |
int | PhysicalEntityNr = 0 |
The Number of the Physical Entity to which this element belongs (this is the first tag written in the .msh file) | |
int | ElementaryEntityNr = 0 |
The number of the elementary entity to which this element belongs (second element tag in .msh file) | |
std::vector< int > | MeshPartitions |
The id's of the partition to which this element belongs. | |
std::vector< size_type > | NodeNumbers |
Contains the node numbers that make up this element (depends on the element type to) | |
Represents a mesh volume/surface/line/point.
Definition at line 151 of file gmsh_file_v2.h.
int lf::io::GMshFileV2::Element::ElementaryEntityNr = 0 |
The number of the elementary entity to which this element belongs (second element tag in .msh file)
An elementary entity is an entity that was specifically set by the user to define the geometry that should be meshed. This is the number that was given by the user to the point/line/surface/volume.
Definition at line 171 of file gmsh_file_v2.h.
std::vector<int> lf::io::GMshFileV2::Element::MeshPartitions |
The id's of the partition to which this element belongs.
Definition at line 179 of file gmsh_file_v2.h.
std::vector<size_type> lf::io::GMshFileV2::Element::NodeNumbers |
Contains the node numbers that make up this element (depends on the element type to)
Nodes.first
. Definition at line 186 of file gmsh_file_v2.h.
size_type lf::io::GMshFileV2::Element::Number = 0 |
The number of this element in the mesh. They are not necessarily dense or ordered in sequence.
Definition at line 154 of file gmsh_file_v2.h.
int lf::io::GMshFileV2::Element::PhysicalEntityNr = 0 |
The Number of the Physical Entity to which this element belongs (this is the first tag written in the .msh file)
Definition at line 162 of file gmsh_file_v2.h.
ElementType lf::io::GMshFileV2::Element::Type = ElementType::POINT |
The element type.
Definition at line 156 of file gmsh_file_v2.h.