mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-12 00:29:17 +05:00
40 lines
1.4 KiB
Python
40 lines
1.4 KiB
Python
# Radial Quadrangle 1D-2D example
|
|
|
|
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)
|
|
|
|
# Create face from the wire and add to study
|
|
Face = geompy.MakeSketcher("Sketcher:F 0 0:TT 20 0:R 90:C 20 90:WF", [0, 0, 0, 1, 0, 0, 0, 0, 1])
|
|
geompy.addToStudy(Face,"Face")
|
|
circle, radius1, radius2 = geompy.SubShapeAllSorted(Face, geompy.ShapeType["EDGE"])
|
|
geompy.addToStudyInFather(Face, radius1,"radius1")
|
|
geompy.addToStudyInFather(Face, radius2,"radius2")
|
|
geompy.addToStudyInFather(Face, circle,"circle")
|
|
|
|
|
|
# Define geometry for mesh, and Radial Quadrange algorithm
|
|
mesh = smesh.Mesh(Face)
|
|
radial_Quad_algo = mesh.Quadrangle(algo=smeshBuilder.RADIAL_QUAD)
|
|
|
|
# The Radial Quadrange algorithm can work without any hypothesis
|
|
# In this case it uses "Default Nb of Segments" preferences parameter to discretize edges
|
|
mesh.Compute()
|
|
|
|
# The Radial Quadrange uses global or local 1d hypotheses if it does
|
|
# not have its own hypotheses.
|
|
# Define global hypotheses to discretize radial edges and a local one for circular edge
|
|
global_Nb_Segments = mesh.Segment().NumberOfSegments(5)
|
|
local_Nb_Segments = mesh.Segment(circle).NumberOfSegments(10)
|
|
mesh.Compute()
|
|
|
|
# Define own parameters of Radial Quadrange algorithm
|
|
radial_Quad_algo.NumberOfLayers( 4 )
|
|
mesh.Compute()
|