Salome HOME
Porting to Python 2.6 - add coding page specification for Python scripts
[modules/smesh.git] / src / SMESH_SWIG / SMESH_mechanic_editor.py
1 #! /usr/bin/python
2 #  -*- coding: iso-8859-1 -*-
3 #  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
4 #
5 #  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
6 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
7 #
8 #  This library is free software; you can redistribute it and/or
9 #  modify it under the terms of the GNU Lesser General Public
10 #  License as published by the Free Software Foundation; either
11 #  version 2.1 of the License.
12 #
13 #  This library is distributed in the hope that it will be useful,
14 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 #  Lesser General Public License for more details.
17 #
18 #  You should have received a copy of the GNU Lesser General Public
19 #  License along with this library; if not, write to the Free Software
20 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
21 #
22 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 #
24 #  File   : SMESH_withHole.py
25 #  Author : Lucien PIGNOLONI
26 #  Module : SMESH
27 #  $Header$
28 #-------------------------------------------------------------------------
29 #
30 import salome
31 import geompy
32 import smesh
33
34 # ---------------------------- GEOM --------------------------------------
35
36 # ---- define contigous arcs and segment to define a closed wire
37 p1   = geompy.MakeVertex( 100.0,   0.0,  0.0 )
38 p2   = geompy.MakeVertex(  50.0,  50.0,  0.0 )
39 p3   = geompy.MakeVertex( 100.0, 100.0,  0.0 )
40 arc1 = geompy.MakeArc( p1, p2, p3 )
41
42 p4   = geompy.MakeVertex( 170.0, 100.0, 0.0 )
43 seg1 = geompy.MakeVector( p3, p4 )
44
45 p5   = geompy.MakeVertex( 200.0, 70.0, 0.0 )
46 p6   = geompy.MakeVertex( 170.0, 40.0, 0.0 )
47 arc2 = geompy.MakeArc( p4, p5, p6 )
48
49 p7   = geompy.MakeVertex( 120.0, 30.0, 0.0 )
50 arc3 = geompy.MakeArc( p6, p7, p1 )
51
52 # ---- define a closed wire with arcs and segment
53 List1 = []
54 List1.append( arc1 )
55 List1.append( seg1 )
56 List1.append( arc2 )
57 List1.append( arc3 )
58
59 wire1 = geompy.MakeWire( List1 )
60 Id_wire1 = geompy.addToStudy( wire1, "wire1" )
61
62 # ---- define a planar face with wire
63 WantPlanarFace = 1 #True
64 face1 = geompy.MakeFace( wire1, WantPlanarFace )
65 Id_face1 = geompy.addToStudy( face1, "face1" )
66
67 # ---- create a shape by extrusion
68 pO = geompy.MakeVertex( 0.0, 0.0,   0.0 )
69 pz = geompy.MakeVertex( 0.0, 0.0, 100.0 )
70 vz = geompy.MakeVector( pO, pz )
71
72 prism1 = geompy.MakePrismVecH( face1, vz, 100.0 )
73 Id_prism1 = geompy.addToStudy( prism1, "prism1" )
74
75 # ---- create two cylinders
76 pc1 = geompy.MakeVertex(  90.0, 50.0, -40.0 )
77 pc2 = geompy.MakeVertex( 170.0, 70.0, -40.0 )
78
79 radius = 20.0
80 height = 180.0
81 cyl1 = geompy.MakeCylinder( pc1, vz, radius, height )
82 cyl2 = geompy.MakeCylinder( pc2, vz, radius, height )
83
84 Id_Cyl1 = geompy.addToStudy( cyl1, "cyl1" )
85 Id_Cyl2 = geompy.addToStudy( cyl2, "cyl2" )
86
87 # ---- cut with cyl1
88 shape = geompy.MakeBoolean( prism1, cyl1, 2 )
89
90 # ---- fuse with cyl2 to obtain the final mechanic piece :)
91 mechanic = geompy.MakeBoolean( shape, cyl2, 3 )
92 Id_mechanic = geompy.addToStudy( mechanic, "mechanic" )
93
94 # ---- explode on faces
95 SubFaceL = geompy.SubShapeAllSorted(mechanic, geompy.ShapeType["FACE"])
96
97 # ---- add a face sub shape in study to be meshed different
98 sub_face1 = SubFaceL[0]
99 name      = geompy.SubShapeName( sub_face1, mechanic )
100
101 Id_SubFace1 = geompy.addToStudyInFather( mechanic, sub_face1, name )
102
103 # ---- add a face sub shape in study to be meshed different
104 sub_face2 = SubFaceL[4]
105 name      = geompy.SubShapeName( sub_face2, mechanic )
106
107 Id_SubFace2 = geompy.addToStudyInFather( mechanic, sub_face2, name )
108
109 # ---- add a face sub shape in study to be meshed different
110 sub_face3 = SubFaceL[5]
111 name      = geompy.SubShapeName( sub_face3, mechanic )
112
113 Id_SubFace3 = geompy.addToStudyInFather( mechanic, sub_face3, name )
114
115 # ---- add a face sub shape in study to be meshed different
116 sub_face4 = SubFaceL[10]
117 name      = geompy.SubShapeName( sub_face4, mechanic )
118
119 Id_SubFace4 = geompy.addToStudyInFather( mechanic, sub_face4, name )
120
121 # ---------------------------- SMESH --------------------------------------
122
123 # -- Init --
124 shape_mesh = salome.IDToObject( Id_mechanic )
125
126 mesh = smesh.Mesh(shape_mesh, "Mesh_mechanic")
127
128 print "-------------------------- NumberOfSegments"
129
130 numberOfSegment = 10
131
132 algo = mesh.Segment()
133 hypNbSeg = algo.NumberOfSegments(numberOfSegment)
134 print hypNbSeg.GetName()
135 print hypNbSeg.GetId()
136 print hypNbSeg.GetNumberOfSegments()
137 smesh.SetName(hypNbSeg, "NumberOfSegments_" + str(numberOfSegment))
138
139
140 print "-------------------------- MaxElementArea"
141
142 maxElementArea = 25
143
144 algo = mesh.Triangle()
145 hypArea25 = algo.MaxElementArea(maxElementArea)
146 print hypArea25.GetName()
147 print hypArea25.GetId()
148 print hypArea25.GetMaxElementArea()
149 smesh.SetName(hypArea25, "MaxElementArea_" + str(maxElementArea))
150
151
152 # Create submesh on sub_face1 - sub_face4
153 # ---------------------------------------
154
155 # Set 2D algorithm to submesh on sub_face1
156 algo = mesh.Quadrangle(sub_face1)
157 smesh.SetName(algo.GetSubMesh(), "SubMeshFace1")
158 submesh1 = algo.GetSubMesh()
159
160 # Set 2D algorithm to submesh on sub_face2
161 algo = mesh.Quadrangle(sub_face2)
162 smesh.SetName(algo.GetSubMesh(), "SubMeshFace2")
163 submesh2 = algo.GetSubMesh()
164
165 # Set 2D algorithm to submesh on sub_face3
166 algo = mesh.Quadrangle(sub_face3)
167 smesh.SetName(algo.GetSubMesh(), "SubMeshFace3")
168 submesh3 = algo.GetSubMesh()
169
170 # Set 2D algorithm to submesh on sub_face4
171 algo = mesh.Quadrangle(sub_face4)
172 smesh.SetName(algo.GetSubMesh(), "SubMeshFace4")
173 submesh4 = algo.GetSubMesh()
174
175
176 print "-------------------------- compute the mesh of the mechanic piece"
177
178 mesh.Compute()
179
180 print "Information about the Mesh_mechanic:"
181 print "Number of nodes       : ", mesh.NbNodes()
182 print "Number of edges       : ", mesh.NbEdges()
183 print "Number of faces       : ", mesh.NbFaces()
184 print "Number of triangles   : ", mesh.NbTriangles()
185 print "Number of quadrangles : ", mesh.NbQuadrangles()
186 print "Number of volumes     : ", mesh.NbVolumes()
187 print "Number of tetrahedrons: ", mesh.NbTetras()
188
189
190 #1 cutting of quadrangles of the 'SubMeshFace2' submesh
191 mesh.SplitQuadObject(submesh2, 1)
192
193 #2 cutting of triangles of the group
194 FacesTriToQuad = [2381, 2382, 2383, 2384, 2385, 2386, 2387, 2388, 2389, 2390, 2391, 2392, 2393, 2394, 2395, 2396, 2397, 2398, 2399, 2400, 2401, 2402, 2403, 2404, 2405, 2406, 2407, 2408, 2409, 2410, 2411, 2412, 2413, 2414, 2415, 2416, 2417, 2418, 2419, 2420, 2421, 2422]
195 GroupTriToQuad = mesh.MakeGroupByIds("Group of faces (quad)", smesh.FACE, FacesTriToQuad)
196 mesh.TriToQuadObject(GroupTriToQuad, None , 1.57)
197
198 #3 extrusion of the group
199 point = smesh.PointStruct(0, 0, 5)
200 vector = smesh.DirStruct(point) 
201 mesh.ExtrusionSweepObject(GroupTriToQuad, vector, 5)
202
203 #4 mirror object
204 mesh.Mirror([], smesh.AxisStruct(0, 0, 0, 0, 0, 0), smesh.POINT, 0) 
205
206 #5 mesh translation
207 point = smesh.PointStruct(10, 10, 10)
208 vector = smesh.DirStruct(point) 
209 mesh.Translate([], vector, 0)
210
211 #6 mesh rotation
212 axisXYZ = smesh.AxisStruct(0, 0, 0, 10, 10, 10)
213 angle180 =  180*3.141/180
214 mesh.Rotate([], axisXYZ, angle180, 0)
215
216 #7 group smoothing
217 FacesSmooth = [864, 933, 941, 950, 1005, 1013]
218 GroupSmooth = mesh.MakeGroupByIds("Group of faces (smooth)", smesh.FACE, FacesSmooth)
219 mesh.SmoothObject(GroupSmooth, [], 20, 2, smesh.CENTROIDAL_SMOOTH)
220
221 #8 rotation sweep object
222 FacesRotate = [492, 493, 502, 503]
223 GroupRotate = mesh.MakeGroupByIds("Group of faces (rotate)", smesh.FACE, FacesRotate)
224 angle45 =  45*3.141/180
225 axisXYZ = smesh.AxisStruct(-38.3128, -73.3658, -133.321, -13.3402, -13.3265, 6.66632)
226 mesh.RotationSweepObject(GroupRotate, axisXYZ, angle45, 4, 1e-5)
227
228 #9 reorientation of the submesh1
229 mesh.ReorientObject(submesh1)
230
231 salome.sg.updateObjBrowser(1)