Generate the meshΒΆ

Use the SMESH component of SALOME:

import smesh
m = hexablock.mesh(name, doc)

Export to a MED file:

m.ExportMED("/tmp/mesh.med")

Get some informations about the mesh:

print "Number of hexahedra: ", m.NbHexas()
print "Number of quadrangles: ", m.NbQuadrangles()
print "Number of segments: ", m.NbEdges()
print "Number of nodes: ", m.NbNodes()

GUI command: Generate the mesh

Previous topic

Discretization defined on the model of blocks

Next topic

Example generated from Hexablock

This Page