Skip to content
Snippets Groups Projects
Commit 53b1d3de authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

new python demos

parent 27605b39
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python
from gmsh import *
import sys
if len(sys.argv) < 2:
print "Usage: basic.py file.geo [options]"
exit(0)
gmshInitialize()
gmshOptionSetNumber("General.Terminal", 1)
gmshOpen(sys.argv[1])
gmshModelMesh(3)
# get all elementary entities in the model
entities = PairVector()
gmshModelGetEntities(entities)
for e in entities:
# get the mesh vertices for each elementary entity
vertexTags = IntVector()
vertexCoords = DoubleVector()
gmshModelGetMeshVertices(e[0], e[1], vertexTags, vertexCoords)
# get the mesh elements for each elementary entity
elemTypes = IntVector()
elemTags = IntVectorVector(); elemVertexTags = IntVectorVector()
gmshModelGetMeshElements(e[0], e[1], elemTypes, elemTags, elemVertexTags)
# report some statistics
numElem = sum(len(i) for i in elemTags)
print str(vertexTags.size()) + " mesh vertices " + str(numElem),\
"mesh elements on entity " + str(e)
gmshFinalize()
...@@ -59,7 +59,7 @@ gmshModelGeoAddPlaneSurface(11, [10]) ...@@ -59,7 +59,7 @@ gmshModelGeoAddPlaneSurface(11, [10])
gmshModelGeoCopy([(2, 1), (2, 11)], ov) gmshModelGeoCopy([(2, 1), (2, 11)], ov)
gmshModelGeoTranslate(ov, 0.12, 0, 0) gmshModelGeoTranslate(ov, 0.12, 0, 0)
print "New surfaces '%d' and '%d'\n", ov[0][1], ov[1][1] print "New surfaces " + str(ov[0][1]) + " and " + str(ov[1][1])
gmshModelGeoAddPoint(100, 0., 0.3, 0.13, lc) gmshModelGeoAddPoint(100, 0., 0.3, 0.13, lc)
gmshModelGeoAddPoint(101, 0.08, 0.3, 0.1, lc) gmshModelGeoAddPoint(101, 0.08, 0.3, 0.1, lc)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment