smesh/test/SMESH_mechanic.py

194 lines
6.0 KiB
Python
Raw Normal View History

2012-08-09 16:03:55 +06:00
# -*- coding: iso-8859-1 -*-
2024-01-20 19:16:41 +05:00
# Copyright (C) 2007-2024 CEA, EDF, OPEN CASCADE
2009-02-17 10:27:49 +05:00
#
2012-08-09 16:03:55 +06:00
# Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
# CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
2004-12-01 15:48:31 +05:00
#
2012-08-09 16:03:55 +06:00
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
2014-02-20 18:25:37 +06:00
# version 2.1 of the License, or (at your option) any later version.
2004-12-01 15:48:31 +05:00
#
2012-08-09 16:03:55 +06:00
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
2004-12-01 15:48:31 +05:00
#
2012-08-09 16:03:55 +06:00
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
2004-12-01 15:48:31 +05:00
#
2012-08-09 16:03:55 +06:00
# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
2003-07-10 19:41:56 +06:00
#
2012-08-09 16:03:55 +06:00
2003-07-10 19:41:56 +06:00
# File : SMESH_withHole.py
# Author : Lucien PIGNOLONI
# Module : SMESH
2003-05-19 20:07:00 +06:00
# $Header$
2004-12-01 15:48:31 +05:00
#-------------------------------------------------------------------------
2009-02-17 10:27:49 +05:00
#
2003-05-19 20:07:00 +06:00
import salome
salome.salome_init_without_session()
import GEOM
from salome.geom import geomBuilder
2017-06-13 15:01:10 +05:00
geompy = geomBuilder.New()
import SMESH, SALOMEDS
from salome.smesh import smeshBuilder
2017-06-13 15:01:10 +05:00
smesh = smeshBuilder.New()
2003-05-19 20:07:00 +06:00
from salome.StdMeshers import StdMeshersBuilder
2004-06-18 14:34:31 +06:00
# ---------------------------- GEOM --------------------------------------
2003-05-19 20:07:00 +06:00
# ---- define contiguous arcs and segment to define a closed wire
2004-12-01 15:48:31 +05:00
p1 = geompy.MakeVertex( 100.0, 0.0, 0.0 )
p2 = geompy.MakeVertex( 50.0, 50.0, 0.0 )
p3 = geompy.MakeVertex( 100.0, 100.0, 0.0 )
arc1 = geompy.MakeArc( p1, p2, p3 )
2003-05-19 20:07:00 +06:00
2004-12-01 15:48:31 +05:00
p4 = geompy.MakeVertex( 170.0, 100.0, 0.0 )
seg1 = geompy.MakeVector( p3, p4 )
2003-05-19 20:07:00 +06:00
2004-12-01 15:48:31 +05:00
p5 = geompy.MakeVertex( 200.0, 70.0, 0.0 )
p6 = geompy.MakeVertex( 170.0, 40.0, 0.0 )
arc2 = geompy.MakeArc( p4, p5, p6 )
2003-05-19 20:07:00 +06:00
2004-12-01 15:48:31 +05:00
p7 = geompy.MakeVertex( 120.0, 30.0, 0.0 )
arc3 = geompy.MakeArc( p6, p7, p1 )
2003-05-19 20:07:00 +06:00
# ---- define a closed wire with arcs and segment
List1 = []
List1.append( arc1 )
List1.append( seg1 )
List1.append( arc2 )
List1.append( arc3 )
2004-12-01 15:48:31 +05:00
wire1 = geompy.MakeWire( List1 )
Id_wire1 = geompy.addToStudy( wire1, "wire1" )
2003-05-19 20:07:00 +06:00
# ---- define a planar face with wire
WantPlanarFace = 1 #True
2004-12-01 15:48:31 +05:00
face1 = geompy.MakeFace( wire1, WantPlanarFace )
Id_face1 = geompy.addToStudy( face1, "face1" )
2003-05-19 20:07:00 +06:00
# ---- create a shape by extrusion
2004-12-01 15:48:31 +05:00
pO = geompy.MakeVertex( 0.0, 0.0, 0.0 )
pz = geompy.MakeVertex( 0.0, 0.0, 100.0 )
vz = geompy.MakeVector( pO, pz )
2003-05-19 20:07:00 +06:00
2004-12-01 15:48:31 +05:00
prism1 = geompy.MakePrismVecH( face1, vz, 100.0 )
Id_prism1 = geompy.addToStudy( prism1, "prism1" )
2003-05-19 20:07:00 +06:00
# ---- create two cylinders
2004-12-01 15:48:31 +05:00
pc1 = geompy.MakeVertex( 90.0, 50.0, -40.0 )
pc2 = geompy.MakeVertex( 170.0, 70.0, -40.0 )
2003-05-19 20:07:00 +06:00
radius = 20.0
height = 180.0
2004-12-01 15:48:31 +05:00
cyl1 = geompy.MakeCylinder( pc1, vz, radius, height )
cyl2 = geompy.MakeCylinder( pc2, vz, radius, height )
2003-05-19 20:07:00 +06:00
Id_Cyl1 = geompy.addToStudy( cyl1, "cyl1" )
Id_Cyl2 = geompy.addToStudy( cyl2, "cyl2" )
2004-12-01 15:48:31 +05:00
# ---- cut with cyl1
shape = geompy.MakeBoolean( prism1, cyl1, 2 )
2003-05-19 20:07:00 +06:00
2004-12-01 15:48:31 +05:00
# ---- fuse with cyl2 to obtain the final mechanic piece :)
mechanic = geompy.MakeBoolean( shape, cyl2, 3 )
Id_mechanic = geompy.addToStudy( mechanic, "mechanic" )
2003-05-19 20:07:00 +06:00
2004-12-01 15:48:31 +05:00
# ---- explode on faces
SubFaceL = geompy.SubShapeAllSorted(mechanic, geompy.ShapeType["FACE"])
2003-05-19 20:07:00 +06:00
2012-08-09 16:03:55 +06:00
# ---- add a face sub-shape in study to be meshed different
2004-12-01 15:48:31 +05:00
sub_face1 = SubFaceL[0]
name = geompy.SubShapeName( sub_face1, mechanic )
2003-05-19 20:07:00 +06:00
2004-12-01 15:48:31 +05:00
Id_SubFace1 = geompy.addToStudyInFather( mechanic, sub_face1, name )
2003-05-19 20:07:00 +06:00
2012-08-09 16:03:55 +06:00
# ---- add a face sub-shape in study to be meshed different
2004-12-01 15:48:31 +05:00
sub_face2 = SubFaceL[4]
name = geompy.SubShapeName( sub_face2, mechanic )
2003-05-19 20:07:00 +06:00
2004-12-01 15:48:31 +05:00
Id_SubFace2 = geompy.addToStudyInFather( mechanic, sub_face2, name )
2003-05-19 20:07:00 +06:00
2012-08-09 16:03:55 +06:00
# ---- add a face sub-shape in study to be meshed different
2004-12-01 15:48:31 +05:00
sub_face3 = SubFaceL[5]
name = geompy.SubShapeName( sub_face3, mechanic )
2003-05-19 20:07:00 +06:00
2004-12-01 15:48:31 +05:00
Id_SubFace3 = geompy.addToStudyInFather( mechanic, sub_face3, name )
2003-05-19 20:07:00 +06:00
2012-08-09 16:03:55 +06:00
# ---- add a face sub-shape in study to be meshed different
2004-12-01 15:48:31 +05:00
sub_face4 = SubFaceL[10]
name = geompy.SubShapeName( sub_face4, mechanic )
2003-05-19 20:07:00 +06:00
2004-12-01 15:48:31 +05:00
Id_SubFace4 = geompy.addToStudyInFather( mechanic, sub_face4, name )
2003-05-19 20:07:00 +06:00
2004-06-18 14:34:31 +06:00
# ---------------------------- SMESH --------------------------------------
2017-06-13 15:01:10 +05:00
smesh.UpdateStudy()
2003-05-19 20:07:00 +06:00
2004-12-01 15:48:31 +05:00
# -- Init --
shape_mesh = salome.IDToObject( Id_mechanic )
mesh = smesh.Mesh(shape_mesh, "Mesh_mechanic")
2003-05-19 20:07:00 +06:00
2017-03-20 17:27:30 +05:00
print("-------------------------- NumberOfSegments")
2003-05-19 20:07:00 +06:00
2004-12-01 15:48:31 +05:00
numberOfSegment = 10
algo = mesh.Segment()
hypNbSeg = algo.NumberOfSegments(numberOfSegment)
2017-03-20 17:27:30 +05:00
print(hypNbSeg.GetName())
print(hypNbSeg.GetId())
print(hypNbSeg.GetNumberOfSegments())
smesh.SetName(hypNbSeg, "NumberOfSegments_10")
2003-05-19 20:07:00 +06:00
2017-03-20 17:27:30 +05:00
print("-------------------------- MaxElementArea")
2003-05-19 20:07:00 +06:00
2004-12-01 15:48:31 +05:00
maxElementArea = 25
2003-05-19 20:07:00 +06:00
algo = mesh.Triangle()
hypArea25 = algo.MaxElementArea(maxElementArea)
2017-03-20 17:27:30 +05:00
print(hypArea25.GetName())
print(hypArea25.GetId())
print(hypArea25.GetMaxElementArea())
smesh.SetName(hypArea25, "MaxElementArea_25")
2004-12-01 15:48:31 +05:00
# Create submesh on sub_face1 - sub_face4
# ---------------------------------------
2003-05-19 20:07:00 +06:00
# Set 2D algorithm to submesh on sub_face1
algo = mesh.Quadrangle(sub_face1)
smesh.SetName(algo.GetSubMesh(), "SubMeshFace1")
2003-05-19 20:07:00 +06:00
# Set 2D algorithm to submesh on sub_face2
algo = mesh.Quadrangle(sub_face2)
smesh.SetName(algo.GetSubMesh(), "SubMeshFace2")
2003-05-19 20:07:00 +06:00
# Set 2D algorithm to submesh on sub_face3
algo = mesh.Quadrangle(sub_face3)
smesh.SetName(algo.GetSubMesh(), "SubMeshFace3")
2003-05-19 20:07:00 +06:00
# Set 2D algorithm to submesh on sub_face4
algo = mesh.Quadrangle(sub_face4)
smesh.SetName(algo.GetSubMesh(), "SubMeshFace4")
2003-05-19 20:07:00 +06:00
2017-03-20 17:27:30 +05:00
print("-------------------------- compute the mesh of the mechanic piece")
2003-05-19 20:07:00 +06:00
isDone = mesh.Compute()
if not isDone:
raise Exception("Error when computing Mesh")
2003-05-19 20:07:00 +06:00
2017-03-20 17:27:30 +05:00
print("Information about the Mesh_mechanic:")
print("Number of nodes : ", mesh.NbNodes())
print("Number of edges : ", mesh.NbEdges())
print("Number of faces : ", mesh.NbFaces())
print("Number of triangles : ", mesh.NbTriangles())
print("Number of quadrangles : ", mesh.NbQuadrangles())
print("Number of volumes : ", mesh.NbVolumes())
print("Number of tetrahedrons: ", mesh.NbTetras())
2004-12-01 15:48:31 +05:00
2017-06-13 15:01:10 +05:00
salome.sg.updateObjBrowser()