2013-02-12 20:37:44 +06:00
|
|
|
# 3d mesh generation
|
|
|
|
|
2013-04-04 13:08:19 +06:00
|
|
|
import salome
|
|
|
|
salome.salome_init()
|
|
|
|
import GEOM
|
|
|
|
from salome.geom import geomBuilder
|
|
|
|
geompy = geomBuilder.New(salome.myStudy)
|
|
|
|
|
|
|
|
import SMESH, SALOMEDS
|
|
|
|
from salome.smesh import smeshBuilder
|
|
|
|
smesh = smeshBuilder.New(salome.myStudy)
|
2013-02-12 20:37:44 +06:00
|
|
|
|
|
|
|
###
|
|
|
|
# Geometry: an assembly of a box, a cylinder and a truncated cone
|
|
|
|
# meshed with tetrahedral
|
|
|
|
###
|
|
|
|
|
|
|
|
# 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
|
2013-04-04 13:08:19 +06:00
|
|
|
group = geompy.CreateGroup(piece, geompy.ShapeType["FACE"])
|
2013-02-12 20:37:44 +06:00
|
|
|
group_name = name + "_grp"
|
2013-04-04 13:08:19 +06:00
|
|
|
geompy.addToStudy(group, group_name)
|
2013-02-12 20:37:44 +06:00
|
|
|
group.SetName(group_name)
|
|
|
|
|
|
|
|
# Add faces to the group
|
2013-04-04 13:08:19 +06:00
|
|
|
faces = geompy.SubShapeAllIDs(piece, geompy.ShapeType["FACE"])
|
|
|
|
geompy.UnionIDs(group, faces)
|
2013-02-12 20:37:44 +06:00
|
|
|
|
|
|
|
###
|
|
|
|
# Create a mesh
|
|
|
|
###
|
|
|
|
|
|
|
|
# Define a mesh on a geometry
|
|
|
|
tetra = smesh.Mesh(piece, name)
|
|
|
|
|
|
|
|
# Define 1D hypothesis
|
|
|
|
algo1d = tetra.Segment()
|
|
|
|
algo1d.LocalLength(10)
|
|
|
|
|
|
|
|
# Define 2D hypothesis
|
|
|
|
algo2d = tetra.Triangle()
|
|
|
|
algo2d.LengthFromEdges()
|
|
|
|
|
|
|
|
# Define 3D hypothesis
|
|
|
|
algo3d = tetra.Tetrahedron()
|
|
|
|
algo3d.MaxElementVolume(100)
|
|
|
|
|
|
|
|
# Compute the mesh
|
|
|
|
tetra.Compute()
|
|
|
|
|
|
|
|
# Create a groupe of faces
|
|
|
|
tetra.Group(group)
|