mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-12 00:29:17 +05:00
30 lines
631 B
Python
30 lines
631 B
Python
# Usage of Segments around Vertex algorithm
|
|
|
|
# for meshing a box with quadrangles with refinement near vertices
|
|
|
|
import salome
|
|
salome.salome_init()
|
|
from salome.geom import geomBuilder
|
|
geompy = geomBuilder.New()
|
|
from salome.smesh import smeshBuilder
|
|
smesh = smeshBuilder.New()
|
|
|
|
# create a box
|
|
box = geompy.MakeBoxDXDYDZ( 10, 10, 10 )
|
|
|
|
# make a mesh
|
|
mesh = smesh.Mesh( box )
|
|
|
|
# define quadrangle meshing
|
|
algo1d = mesh.Segment()
|
|
algo1d.LocalLength( 1. )
|
|
mesh.Quadrangle()
|
|
|
|
# add Hexahedron algo to assure that there are no triangles
|
|
mesh.Hexahedron()
|
|
|
|
# define refinement near vertices
|
|
algo1d.LengthNearVertex( 0.2 )
|
|
|
|
mesh.Compute()
|