2016-05-26 19:38:08 +05:00
|
|
|
# 3d mesh generation and mesh exploration
|
2013-02-12 20:37:44 +06:00
|
|
|
|
2013-04-04 13:08:19 +06:00
|
|
|
import salome
|
|
|
|
salome.salome_init()
|
|
|
|
from salome.geom import geomBuilder
|
2017-06-13 15:01:10 +05:00
|
|
|
geompy = geomBuilder.New()
|
2013-04-04 13:08:19 +06:00
|
|
|
|
2016-03-11 18:32:07 +05:00
|
|
|
import SMESH
|
2013-04-04 13:08:19 +06:00
|
|
|
from salome.smesh import smeshBuilder
|
2017-06-13 15:01:10 +05:00
|
|
|
smesh = smeshBuilder.New()
|
2013-02-12 20:37:44 +06:00
|
|
|
|
|
|
|
###
|
|
|
|
# Geometry: an assembly of a box, a cylinder and a truncated cone
|
2016-03-11 18:32:07 +05:00
|
|
|
# to be meshed with tetrahedra
|
2013-02-12 20:37:44 +06:00
|
|
|
###
|
|
|
|
|
|
|
|
# Define values
|
|
|
|
name = "ex21_lamp"
|
|
|
|
cote = 60
|
|
|
|
section = 20
|
|
|
|
size = 200
|
|
|
|
radius_1 = 80
|
|
|
|
radius_2 = 40
|
|
|
|
height = 100
|
|
|
|
|
|
|
|
# Build a box
|
2013-04-04 13:08:19 +06:00
|
|
|
box = geompy.MakeBox(-cote, -cote, -cote, +cote, +cote, +cote)
|
2013-02-12 20:37:44 +06:00
|
|
|
|
|
|
|
# Build a cylinder
|
2013-04-04 13:08:19 +06:00
|
|
|
pt1 = geompy.MakeVertex(0, 0, cote/3)
|
|
|
|
di1 = geompy.MakeVectorDXDYDZ(0, 0, 1)
|
|
|
|
cyl = geompy.MakeCylinder(pt1, di1, section, size)
|
2013-02-12 20:37:44 +06:00
|
|
|
|
|
|
|
# Build a truncated cone
|
2013-04-04 13:08:19 +06:00
|
|
|
pt2 = geompy.MakeVertex(0, 0, size)
|
|
|
|
cone = geompy.MakeCone(pt2, di1, radius_1, radius_2, height)
|
2013-02-12 20:37:44 +06:00
|
|
|
|
|
|
|
# Fuse
|
2013-04-04 13:08:19 +06:00
|
|
|
box_cyl = geompy.MakeFuse(box, cyl)
|
|
|
|
piece = geompy.MakeFuse(box_cyl, cone)
|
2013-02-12 20:37:44 +06:00
|
|
|
|
|
|
|
# Add to the study
|
2013-04-04 13:08:19 +06:00
|
|
|
geompy.addToStudy(piece, name)
|
2013-02-12 20:37:44 +06:00
|
|
|
|
|
|
|
# Create a group of faces
|
2016-03-11 18:32:07 +05:00
|
|
|
faces_group = geompy.CreateGroup(piece, geompy.ShapeType["FACE"])
|
2013-02-12 20:37:44 +06:00
|
|
|
group_name = name + "_grp"
|
2016-03-11 18:32:07 +05:00
|
|
|
geompy.addToStudy(faces_group, group_name)
|
|
|
|
faces_group.SetName(group_name)
|
2013-02-12 20:37:44 +06:00
|
|
|
|
|
|
|
# Add faces to the group
|
2013-04-04 13:08:19 +06:00
|
|
|
faces = geompy.SubShapeAllIDs(piece, geompy.ShapeType["FACE"])
|
2016-03-11 18:32:07 +05:00
|
|
|
geompy.UnionIDs(faces_group, faces)
|
2013-02-12 20:37:44 +06:00
|
|
|
|
|
|
|
###
|
|
|
|
# Create a mesh
|
|
|
|
###
|
|
|
|
|
|
|
|
# Define a mesh on a geometry
|
|
|
|
tetra = smesh.Mesh(piece, name)
|
|
|
|
|
2016-03-11 18:32:07 +05:00
|
|
|
# Define 1D algorithm and hypothesis
|
2013-02-12 20:37:44 +06:00
|
|
|
algo1d = tetra.Segment()
|
|
|
|
algo1d.LocalLength(10)
|
|
|
|
|
2016-03-11 18:32:07 +05:00
|
|
|
# Define 2D algorithm and hypothesis
|
2013-02-12 20:37:44 +06:00
|
|
|
algo2d = tetra.Triangle()
|
|
|
|
algo2d.LengthFromEdges()
|
|
|
|
|
2016-03-11 18:32:07 +05:00
|
|
|
# Define 3D algorithm and hypothesis
|
2013-02-12 20:37:44 +06:00
|
|
|
algo3d = tetra.Tetrahedron()
|
|
|
|
algo3d.MaxElementVolume(100)
|
|
|
|
|
|
|
|
# Compute the mesh
|
|
|
|
tetra.Compute()
|
|
|
|
|
2016-03-11 18:32:07 +05:00
|
|
|
# Create a mesh group of all triangles generated on geom faces present in faces_group
|
|
|
|
group = tetra.Group(faces_group)
|
2016-05-26 19:38:08 +05:00
|
|
|
|
|
|
|
###
|
|
|
|
# Explore the mesh
|
|
|
|
###
|
|
|
|
|
|
|
|
# Retrieve coordinates of nodes
|
|
|
|
coordStr = ""
|
|
|
|
for node in tetra.GetNodesId():
|
|
|
|
x,y,z = tetra.GetNodeXYZ( node )
|
|
|
|
coordStr += "%s (%s, %s, %s) " % ( node, x,y,z )
|
|
|
|
pass
|
|
|
|
|
|
|
|
# Retrieve nodal connectivity of triangles
|
|
|
|
triaStr = ""
|
|
|
|
for tria in tetra.GetElementsByType( SMESH.FACE ):
|
|
|
|
nodes = tetra.GetElemNodes( tria )
|
|
|
|
triaStr += "%s (%s, %s, %s) " % ( tria, nodes[0], nodes[1], nodes[2] )
|
2016-06-14 14:42:49 +05:00
|
|
|
|
|
|
|
# Retrieve group contents
|
|
|
|
groupStr = ""
|
|
|
|
for group in tetra.GetGroups():
|
|
|
|
ids = group.GetIDs()
|
|
|
|
name = group.GetName()
|
|
|
|
eType = group.GetType()
|
|
|
|
groupStr += "'%s' %s: %s \n" % ( name, eType, ids )
|
|
|
|
|