LehrFEM++ 1.0.0
A simple Finite Element Library for teaching
|
#include <lf/io/gmsh_file_v4.h>
Public Attributes | |
std::size_t | num_partitions = 0 |
total number of mesh partitions | |
std::vector< GhostEntity > | ghost_entities |
Ghost entities of this mesh. | |
std::tuple< std::vector< PartitionedPointEntity >, std::vector< PartitionedEntity >, std::vector< PartitionedEntity >, std::vector< PartitionedEntity > > | partitioned_entities |
a list of partitioned entities in this mesh. | |
Definition at line 226 of file gmsh_file_v4.h.
std::vector<GhostEntity> lf::io::GMshFileV4::PartitionedEntities::ghost_entities |
Ghost entities of this mesh.
Every ghost entity consists of a number of ghost elements (see ghost_elements) and defines for which partition these elements are ghost elements.
Definition at line 240 of file gmsh_file_v4.h.
std::size_t lf::io::GMshFileV4::PartitionedEntities::num_partitions = 0 |
total number of mesh partitions
Definition at line 231 of file gmsh_file_v4.h.
Referenced by lf::io::GmshReader::InitGmshFile().
std::tuple<std::vector<PartitionedPointEntity>, std::vector<PartitionedEntity>, std::vector<PartitionedEntity>, std::vector<PartitionedEntity> > lf::io::GMshFileV4::PartitionedEntities::partitioned_entities |
a list of partitioned entities in this mesh.
These entities are only present if the mesh creator has chosen to partition the mesh. In such a case, the entities entities that make up the mesh are formally partitioned into smaller entities which are listed here. The elements then refer to partitioned entities.
std::get<0>(partitioned_entities)
are pointsstd::get<1>(partitioned_entities)
are curvesstd::get<2>(partitioned_entities)
are surfacesstd::get<3>(partitioned_entities)
are volumes Definition at line 258 of file gmsh_file_v4.h.
Referenced by lf::io::GmshReader::InitGmshFile().