smesh/doc/salome/examples/defining_hypotheses_len_near_vertex.py

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()