smesh/doc/examples/defining_hypotheses_ex09.py

52 lines
1.1 KiB
Python
Raw Normal View History

2013-02-12 20:37:44 +06:00
# Defining Meshing Algorithms
import salome
salome.salome_init_without_session()
2022-04-11 18:28:01 +05:00
from salome.geom import geomBuilder
from salome.smesh import smeshBuilder
2022-04-11 18:28:01 +05:00
geom_builder = geomBuilder.New()
smesh_builder = smeshBuilder.New()
2013-02-12 20:37:44 +06:00
# create a box
2022-04-11 18:28:01 +05:00
box = geom_builder.MakeBoxDXDYDZ(10., 10., 10.)
geom_builder.addToStudy(box, "Box")
2013-02-12 20:37:44 +06:00
# Create a hexahedral mesh on the box
2022-04-11 18:28:01 +05:00
hexa = smesh_builder.Mesh(box, "Box : hexahedrical mesh")
2013-02-12 20:37:44 +06:00
# create a Regular 1D algorithm for edges
algo1D = hexa.Segment()
# create a quadrangle 2D algorithm for faces
algo2D = hexa.Quadrangle()
# create a hexahedron 3D algorithm for solids
algo3D = hexa.Hexahedron()
# define hypotheses
algo1D.Arithmetic1D(1, 4)
# compute the mesh
hexa.Compute()
# 2. Create a tetrahedral mesh on the box
2022-04-11 18:28:01 +05:00
tetra = smesh_builder.Mesh(box, "Box : tetrahedrical mesh")
2013-02-12 20:37:44 +06:00
# create a Regular 1D algorithm for edges
algo1D = tetra.Segment()
# create a Mefisto 2D algorithm for faces
algo2D = tetra.Triangle()
# create a 3D algorithm for solids
algo3D = tetra.Tetrahedron()
# define hypotheses
algo1D.Arithmetic1D(1, 4)
algo2D.LengthFromEdges()
# compute the mesh
tetra.Compute()