-
Notifications
You must be signed in to change notification settings - Fork 7
Gmsh SDK
tgregov edited this page Feb 16, 2019
·
6 revisions
See the Gmsh doc for more complete information
-
eleTypes
: type of an element, e.g. for a T3eleTypes
equals2
-
name
: name of an element, e.g. for a T3name
equalsTriangle 3
-
dim
: dimension of an element, e.g. for a T3dim
equals2
-
order
: order of an element, e.g. for a T3order
equals1
-
tag
: tag of an element; tags are used to distinguish elements that have the same dimensiondim
.tag
goes from0
,1
, ... -
numNodes
: numbers of nodes of an element, e.g. for a T3,numNodes
equals3
-
paramCoord
: vector that contains the concatenation of the coordinates of the elements in the reference space; for a T3, we get{0, 0, 1, 0, 0, 1}
, that is, (0, 0), (1, 0) and (0, 1), i.e. the three coordinates of the vertices of the triangle
gmsh::model::getEntities
gmsh::model::mesh::getElementTypes
gmsh::model::mesh::getElementProperties
gmsh::model::mesh::getElementEdgeNodes
gmsh::model::mesh::setElementsByType
gmsh::model::mesh::getBasisFunctions
gmsh::model::mesh::getJacobians
- Organization
- Documentation
- Reminders