Salome HOME
Implementation of PipeWithShellSections.
[modules/geom.git] / src / GEOM_SWIG / GEOM_TestAll.py
1 #  GEOM GEOM_SWIG : binding of C++ omplementaion with Python
2 #
3 #  Copyright (C) 2003  CEA
4 #
5 #  This library is free software; you can redistribute it and/or
6 #  modify it under the terms of the GNU Lesser General Public
7 #  License as published by the Free Software Foundation; either
8 #  version 2.1 of the License.
9 #
10 #  This library is distributed in the hope that it will be useful,
11 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 #  Lesser General Public License for more details.
14 #
15 #  You should have received a copy of the GNU Lesser General Public
16 #  License along with this library; if not, write to the Free Software
17 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
18 #
19 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #
21 #
22 #  File   : GEOM_usinggeom.py
23 #  Author : Damien COQUERET, Open CASCADE
24 #  Module : GEOM
25 #  $Header$
26
27 def TestAll (geompy, math):
28
29   #Create base Variables
30   nbtimes1  = 5      #Short
31   nbtimes2  = 5
32   mindeg = 2
33   maxdeg = 5
34   nbiter = 5
35   ShapeTypeFace = geompy.ShapeType["FACE"]
36   ShapeTypeEdge = geompy.ShapeType["EDGE"]
37   WantPlanarFace = 1 #True
38
39   radius  = 10.  #Double
40   radius1 = 100.
41   radius2 = 200.
42   height  = 200.
43   d1      = 10.
44   d2      = 10.
45   step1   = 250.
46   step2   = 250.
47   angle   = 45.
48   angle1  = angle * math.pi / 180
49   angle2  = 2 * angle1
50   factor  = 2.
51   tol3d   = 0.0001
52   tol2d   = 0.0001
53   weight  = 1000000.
54   waterdensity = 1.
55   meshingdeflection = 0.01
56   trimsize  = 1000.
57   precision = 0.00001
58
59   #Create base points
60   p0   = geompy.MakeVertex(0.  , 0.  , 0.  ) #(3 Doubles)->GEOM_Object_ptr
61   px   = geompy.MakeVertex(100., 0.  , 0.  )
62   py   = geompy.MakeVertex(0.  , 100., 0.  )
63   pz   = geompy.MakeVertex(0.  , 0.  , 100.)
64   pxyz = geompy.MakeVertex(100., 100., 100.)
65
66   p200 = geompy.MakeVertexWithRef(pxyz, 100., 100., 100.) #(GEOM_Object_ptr, 3 Doubles)->GEOM_Object_ptr
67
68   #Create base directions
69   vx   = geompy.MakeVector(p0, px) #(GEOM_Object_ptr, GEOM_Object_ptr)->GEOM_Object_ptr
70   vy   = geompy.MakeVector(p0, py)
71   vz   = geompy.MakeVector(p0, pz)
72   vxy  = geompy.MakeVector(px, py)
73
74   vxyz = geompy.MakeVectorDXDYDZ(100., 100., 100.) #(3 Doubles)->GEOM_Object_ptr
75
76   #Create local coordinate systems
77   cs1 = geompy.MakeMarker(50,50,50, 1,0,0, 0,1,0)
78   cs2 = geompy.MakeMarker(70,80,10, 1,0,1, 1,1,0)
79
80   #Create base geometry 2D
81   Line   = geompy.MakeLineTwoPnt(p0, pxyz)                  #(2 GEOM_Object_ptr)->GEOM_Object_ptr
82   Line1  = geompy.MakeLine(pz, vxy)                         #(2 GEOM_Object_ptr)->GEOM_Object_ptr
83   Plane  = geompy.MakePlane(pz, vxyz, trimsize)             #(2 GEOM_Object_ptr, Double)->GEOM_Object_ptr
84   Plane1 = geompy.MakePlaneThreePnt(px, pz, p200, trimsize) #(4 Doubles)->GEOM_Object_ptr
85
86   Arc      = geompy.MakeArc(py, pz, px)                   #(3 GEOM_Object_ptr)->GEOM_Object_ptr
87   Arc2     = geompy.MakeArcCenter(py, pz, px,0)           #(3 GEOM_Object_ptr,Boolean)->GEOM_Object_ptr
88   Circle   = geompy.MakeCircle(p0, vz, radius1)           #(2 GEOM_Object_ptr, Double)->GEOM_Object_ptr
89   Circle1  = geompy.MakeCircleThreePnt(p0, pxyz, px)      #(3 GEOM_Object_ptr)->GEOM_Object_ptr
90   Ellipse  = geompy.MakeEllipse(p0, vy, radius2, radius1) #(2 GEOM_Object_ptr, 2 Doubles)->GEOM_Object_ptr
91   Polyline = geompy.MakePolyline([p0, pz, py, p200])      #(List of GEOM_Object_ptr)->GEOM_Object_ptr
92   Bezier   = geompy.MakeBezier([p0, pz, p200, px])        #(List of GEOM_Object_ptr)->GEOM_Object_ptr
93   Interpol = geompy.MakeInterpol([px, py, p200, pxyz])    #(List of GEOM_Object_ptr)->GEOM_Object_ptr
94   Sketcher = geompy.MakeSketcher("Sketcher:F -100 -100:TT 250 -100:R 0:C 100 150:R 0:L 300:WW",
95                                  [100,0,0, 1,1,1, -1,1,0]) #(String, List of Doubles)->GEOM_Object_ptr
96
97   #Test point on curve creation
98   p_on_arc = geompy.MakeVertexOnCurve(Arc, 0.25) #(GEOM_Object_ptr, Double)->GEOM_Object_ptr
99
100   #Create base geometry 3D
101   Box      = geompy.MakeBoxTwoPnt(p0, p200)                   #(2 GEOM_Object_ptr)->GEOM_Object_ptr
102   Box1     = geompy.MakeBoxDXDYDZ(10, 20, 30)                 #(3 Doubles)->GEOM_Object_ptr
103   Box2     = geompy.MakeBox(10,20,30, 15,25,35)               #(6 Doubles)->GEOM_Object_ptr
104   Cylinder = geompy.MakeCylinder(p0, vz, radius1, height)     #(2 GEOM_Object_ptr, 2 Doubles)->GEOM_Object_ptr
105   Cyl1     = geompy.MakeCylinderRH(radius2, height)           #(2 Doubles)->GEOM_Object_ptr
106   Sphere   = geompy.MakeSpherePntR(p0, radius1)               #(GEOM_Object_ptr, Double)->GEOM_Object_ptr
107   Sphere1  = geompy.MakeSphereR(radius)                       #(Double)->GEOM_Object_ptr
108   Sphere2  = geompy.MakeSphere(50, 70, 30, radius)            #(4 Doubles)->GEOM_Object_ptr
109   Cone     = geompy.MakeCone(p0, vz, radius2, radius, height) #(2 GEOM_Object_ptr, 3 Doubles)->GEOM_Object_ptr
110   Cone1    = geompy.MakeConeR1R2H(radius1, radius, height)    #(3 Doubles)->GEOM_Object_ptr
111   Torus    = geompy.MakeTorus(p0, vz, radius2, radius)        #(2 GEOM_Object_ptr, 2 Doubles)->GEOM_Object_ptr
112   Torus1   = geompy.MakeTorusRR(radius2, radius1)             #(2 Doubles)->GEOM_Object_ptr
113
114   #Boolean (Common, Cut, Fuse, Section)
115   Common  = geompy.MakeBoolean(Box, Sphere, 1) #(2 GEOM_Object_ptr, Short)->GEOM_Object_ptr
116   Cut     = geompy.MakeBoolean(Box, Sphere, 2)
117   Fuse    = geompy.MakeBoolean(Box, Sphere, 3)
118   Section = geompy.MakeBoolean(Box, Sphere, 4)
119
120   #Create base objects
121   Edge     = geompy.MakeEdge(p0, pxyz)               #(2 GEOM_Object_ptr)->GEOM_Object_ptr
122   Wire     = geompy.MakeWire([vxy, Arc])             #(List Of GEOM_Object_ptr)->GEOM_Object_ptr
123   Face     = geompy.MakeFace(Wire, WantPlanarFace)   #(GEOM_Object_ptr, Boolean)->GEOM_Object_ptr
124   Face1    = geompy.MakeFaceWires([Wire, Sketcher],
125                                   WantPlanarFace)    #(List of GEOM_Object_ptr, Boolean)->GEOM_Object_ptr
126   Face2    = geompy.MakeFace(Sketcher, WantPlanarFace)
127   Shell    = geompy.MakeShell([Face, Face1])         #(List of GEOM_Object_ptr)->GEOM_Object_ptr
128
129   Prism1   = geompy.MakePrism(Face2, p0, pxyz)       #(3 GEOM_Object_ptr)->GEOM_Object_ptr
130   prism1_faces = geompy.SubShapeAllSorted(Prism1, ShapeTypeFace)
131   Shell1   = geompy.MakeShell([prism1_faces[0], prism1_faces[1],
132                                prism1_faces[3], prism1_faces[4],
133                                prism1_faces[5], prism1_faces[2]])
134   Solid    = geompy.MakeSolid([Shell1])              #(List of GEOM_Object_ptr)->GEOM_Object_ptr
135
136   ShapeListCompound = []
137   i = 0
138   while i <= 3 :
139         S = geompy.MakeTranslation(Arc, i * 100., i * 100., i * 100.)
140         ShapeListCompound.append(S)
141         i = i + 1
142   Compound = geompy.MakeCompound(ShapeListCompound)  #(List of GEOM_Object_ptr)->GEOM_Object_ptr
143
144   # Test plane from existing face creation
145   Plane2 = geompy.MakePlaneFace(Face, trimsize)      #(GEOM_Object_ptr, Double)->GEOM_Object_ptr
146
147   #ShapeList for Sewing
148   S = geompy.MakeRotation(Face, vxy, angle1)
149
150   #Create advanced objects
151   Copy       = geompy.MakeCopy(Box)                      #(GEOM_Object_ptr)->GEOM_Object_ptr
152   Prism      = geompy.MakePrismVecH(Face, vz, 100.0)     #(2 GEOM_Object_ptr, Double)->GEOM_Object_ptr
153   Revolution = geompy.MakeRevolution(Face, vz, angle2)   #
154   Filling    = geompy.MakeFilling(Compound, mindeg, maxdeg,
155                                   tol2d, tol3d, nbiter)  #(GEOM_Object_ptr, 4 Doubles, Short)->GEOM_Object_ptr
156   Pipe       = geompy.MakePipe(Wire, Edge)               #(2 GEOM_Object_ptr)->GEOM_Object_ptr
157   Sewing     = geompy.MakeSewing([Face, S], precision)   #(List Of GEOM_Object_ptr, Double)->GEOM_Object_ptr
158
159   #Transform objects
160   Translation = geompy.MakeTranslationTwoPoints(Box, px, pz)    #(3 GEOM_Object_ptr)->GEOM_Object_ptr
161   TranslVect  = geompy.MakeTranslationVector(Box, vxyz)         #(2 GEOM_Object_ptr)->GEOM_Object_ptr
162   Rotation    = geompy.MakeRotation(Box, vz, angle1)            #(2 GEOM_Object_ptr, Double)->GEOM_Object_ptr
163   RotatPnt    = geompy.MakeRotationThreePoints(Box, px, py, pz) #(4 GEOM_Object_ptr)->GEOM_Object_ptr
164   Scale       = geompy.MakeScaleTransform(Box, p0, factor)      #
165   Mirror      = geompy.MakeMirrorByPlane(Box, Plane)            #(2 GEOM_Object_ptr)->GEOM_Object_ptr
166   MirrorAxis  = geompy.MakeMirrorByAxis(Box, Line1)             #
167   MirrorPnt   = geompy.MakeMirrorByPoint(Box, p200)             #
168   Position    = geompy.MakePosition(Box, cs1, cs2)              #(3 GEOM_Object_ptr)->GEOM_Object_ptr
169   Offset      = geompy.MakeOffset(Box, 10.)                     #(GEOM_Object_ptr, Double)->GEOM_Object_ptr
170   Orientation = geompy.ChangeOrientation(Box)
171
172   #IDList for Fillet/Chamfer
173   prism_edges = geompy.SubShapeAllSorted(Prism, ShapeTypeEdge)
174
175   for anEdge in prism_edges:
176     eid = geompy.GetSubShapeID(Prism, anEdge)
177     sse = geompy.GetSubShape(Prism, [eid])
178
179     sse_id = geompy.GetSubShapeID(Prism, sse)
180     if sse_id != eid:
181       print "Error: GetSubShape() or GetSubShapeID() has failed!"
182
183   IDlist_e = []
184   IDlist_e.append(geompy.GetSubShapeID(Prism, prism_edges[0]))
185   IDlist_e.append(geompy.GetSubShapeID(Prism, prism_edges[1]))
186   IDlist_e.append(geompy.GetSubShapeID(Prism, prism_edges[2]))
187
188   prism_faces = geompy.SubShapeAllSorted(Prism, ShapeTypeFace)
189
190   f_ind_1 = geompy.GetSubShapeID(Prism, prism_faces[0])
191   f_ind_2 = geompy.GetSubShapeID(Prism, prism_faces[1])
192
193   IDlist_f = [f_ind_1, f_ind_2]
194
195   #Local operations
196   Fillet   = geompy.MakeFillet (Prism, radius, ShapeTypeEdge,
197                                 IDlist_e) #(GEOM_Object_ptr, Double, Short, ListOfLong)->GEOM_Object_ptr
198   Chamfer  = geompy.MakeChamferEdge(Prism, d1, d2,
199                                     f_ind_1, f_ind_2) #(GEOM_Object_ptr, 2 Doubles, 2 Long)->GEOM_Object_ptr
200   Chamfer2 = geompy.MakeChamferFaces(Prism, d1, d2,
201                                      IDlist_f) #(GEOM_Object_ptr, 2 Doubles, ListOfLong)->GEOM_Object_ptr
202
203   #Create Patterns
204   MultiTrans1D = geompy.MakeMultiTranslation1D(Fillet, vz, step1, nbtimes1)
205   MultiTrans2D = geompy.MakeMultiTranslation2D(Fillet, vz, step1, nbtimes1, vy, step2, nbtimes2)
206   #!!!!Angle In Degree!!!!
207   MultiRot1D   = geompy.MultiRotate1D(Chamfer, vx, nbtimes1)
208   MultiRot2D   = geompy.MultiRotate2D(Chamfer, vx, angle, nbtimes1, step1, nbtimes2)
209
210   #Create Informations objects
211   CDG        = geompy.MakeCDG(Prism)               #(GEOM_Object_ptr)->GEOM_Object_ptr
212   Archimede  = geompy.Archimede(Box, weight, waterdensity,
213                                 meshingdeflection) #(GEOM_Object_ptr, 3 Doubles)->GEOM_Object_ptr
214   CheckShape = geompy.CheckShape(Prism)            #(GEOM_Object_ptr)->Boolean
215   print "CheckShape(Prism) = ", CheckShape
216
217   #Partition objects
218   Partition  = geompy.MakePartition([Box], [Plane]) #(2 Lists Of GEOM_Object_ptr)->GEOM_Object_ptr
219   Partition1 = geompy.MakeHalfPartition(Box, Plane) #(2 GEOM_Object_ptr)->GEOM_Object_ptr
220
221   #Add In Study
222
223   id_p0   = geompy.addToStudy(p0,   "Vertex 0")
224   id_px   = geompy.addToStudy(px,   "Vertex X")
225   id_py   = geompy.addToStudy(py,   "Vertex Y")
226   id_pz   = geompy.addToStudy(pz,   "Vertex Z")
227   id_pxyz = geompy.addToStudy(pxyz, "Vertex XYZ")
228   id_p200 = geompy.addToStudy(p200, "Vertex 200")
229
230   id_vx   = geompy.addToStudy(vx,   "Vector X")
231   id_vy   = geompy.addToStudy(vy,   "Vector Y")
232   id_vz   = geompy.addToStudy(vz,   "Vector Z")
233   id_vxy  = geompy.addToStudy(vxy,  "Vector XY")
234   id_vxyz = geompy.addToStudy(vxyz, "Vector XYZ")
235
236   id_cs1 = geompy.addToStudy(cs1, "CS 50,50,50, 1,0,0, 0,1,0")
237   id_cs2 = geompy.addToStudy(cs2, "CS 70,80,10, 1,0,1, 1,1,0")
238
239   id_Line   = geompy.addToStudy(Line,   "Line")
240   id_Line1  = geompy.addToStudy(Line1,  "Line by point and vector")
241   id_Plane  = geompy.addToStudy(Plane,  "Plane")
242   id_Plane1 = geompy.addToStudy(Plane1,  "Plane by 3 points")
243
244   id_Arc      = geompy.addToStudy(Arc,      "Arc")
245   id_Circle   = geompy.addToStudy(Circle,   "Circle")
246   id_Circle1  = geompy.addToStudy(Circle1,  "Circle by 3 points")
247   id_Ellipse  = geompy.addToStudy(Ellipse,  "Ellipse")
248   id_Polyline = geompy.addToStudy(Polyline, "Polyline")
249   id_Bezier   = geompy.addToStudy(Bezier,   "Bezier")
250   id_Interpol = geompy.addToStudy(Interpol, "Interpol")
251   id_Sketcher = geompy.addToStudy(Sketcher, "Sketcher")
252
253   id_p_on_arc = geompy.addToStudy(p_on_arc, "Vertex on Arc")
254
255   id_Box      = geompy.addToStudy(Box,      "Box")
256   id_Box1     = geompy.addToStudy(Box1,     "Box 10x20x30")
257   id_Box2     = geompy.addToStudy(Box2,     "Box (10,20,30)-(15,25,35)")
258   id_Cylinder = geompy.addToStudy(Cylinder, "Cylinder")
259   id_Cyl1     = geompy.addToStudy(Cyl1,     "Cylinder RH")
260   id_Sphere   = geompy.addToStudy(Sphere,   "Sphere Pnt R")
261   id_Sphere1  = geompy.addToStudy(Sphere1,  "Sphere R")
262   id_Sphere2  = geompy.addToStudy(Sphere2,  "Sphere")
263   id_Cone     = geompy.addToStudy(Cone,     "Cone")
264   id_Cone1    = geompy.addToStudy(Cone1,    "Cone R1R2H")
265   id_Torus    = geompy.addToStudy(Torus,    "Torus")
266   id_Torus1   = geompy.addToStudy(Torus1,   "Torus RR")
267
268   id_Common  = geompy.addToStudy(Common,  "Common")
269   id_Cut     = geompy.addToStudy(Cut,     "Cut")
270   id_Fuse    = geompy.addToStudy(Fuse,    "Fuse")
271   id_Section = geompy.addToStudy(Section, "Section")
272
273   id_Edge     = geompy.addToStudy(Edge,     "Edge")
274   id_Wire     = geompy.addToStudy(Wire,     "Wire")
275   id_Face     = geompy.addToStudy(Face,     "Face")
276   id_Face1    = geompy.addToStudy(Face1,    "Face from two wires")
277   id_Face2    = geompy.addToStudy(Face2,    "Face from Sketcher")
278   id_Shell    = geompy.addToStudy(Shell,    "Shell")
279
280   id_Prism1   = geompy.addToStudy(Prism1,     "Prism by Two Pnt")
281   id_Shell1   = geompy.addToStudy(Shell1,   "Shell from Prism1 faces")
282   id_Solid    = geompy.addToStudy(Solid,    "Solid")
283   id_Compound = geompy.addToStudy(Compound, "Compound")
284
285   id_Plane2   = geompy.addToStudy(Plane2,   "Plane on Face")
286
287   id_Copy       = geompy.addToStudy(Copy,       "Copy")
288   id_Prism      = geompy.addToStudy(Prism,      "Prism")
289   id_Revolution = geompy.addToStudy(Revolution, "Revolution")
290   id_Filling    = geompy.addToStudy(Filling,    "Filling")
291   id_Pipe       = geompy.addToStudy(Pipe,       "Pipe")
292   id_Sewing     = geompy.addToStudy(Sewing,     "Sewing")
293
294   id_Translation = geompy.addToStudy(Translation, "Translation")
295   id_TranslVect  = geompy.addToStudy(TranslVect , "Translation along vector")
296   id_Rotation    = geompy.addToStudy(Rotation,    "Rotation")
297   id_RotatPnt    = geompy.addToStudy(RotatPnt,    "Rotation by three points")
298   id_Scale       = geompy.addToStudy(Scale,       "Scale")
299   id_Mirror      = geompy.addToStudy(Mirror,      "Mirror by Plane")
300   id_MirrorAxis  = geompy.addToStudy(MirrorAxis,  "Mirror by Axis")
301   id_MirrorPnt   = geompy.addToStudy(MirrorPnt,   "Mirror by Point")
302   id_Position    = geompy.addToStudy(Position,    "Positioned box")
303   id_Offset      = geompy.addToStudy(Offset,      "Offset")
304   id_Orientation = geompy.addToStudy(Orientation, "Orientation")
305
306   id_Fillet   = geompy.addToStudy(Fillet,   "Fillet")
307   id_Chamfer  = geompy.addToStudy(Chamfer,  "Chamfer on Edge")
308   id_Chamfer2 = geompy.addToStudy(Chamfer2, "Chamfer on Faces")
309
310   id_MultiTrans1D = geompy.addToStudy(MultiTrans1D, "MultiTrans1D")
311   id_MultiTrans2D = geompy.addToStudy(MultiTrans2D, "MultiTrans2D")
312   id_MultiRot1D   = geompy.addToStudy(MultiRot1D,   "MultiRot1D")
313   id_MultiRot2D   = geompy.addToStudy(MultiRot2D,   "MultiRot2D")
314
315   id_CDG       = geompy.addToStudy(CDG,       "CDG")
316   id_Archimede = geompy.addToStudy(Archimede, "Archimede")
317
318   id_Partition  = geompy.addToStudy(Partition, "Partition")
319   id_Partition1 = geompy.addToStudy(Partition1, "Half Partition")
320
321   #Decompose objects
322   SubFace    = geompy.SubShape(Box, geompy.ShapeType["FACE"], [2])
323   name       = geompy.SubShapeName(SubFace, Box)
324   id_SubFace = geompy.addToStudyInFather(Box, SubFace, name)
325
326   SubFaceS   = geompy.SubShapeSorted(Box, geompy.ShapeType["FACE"], [5])
327   nameS      = geompy.SubShapeName(SubFaceS, Box)
328   id_SubFace = geompy.addToStudyInFather(Box, SubFaceS, nameS)
329
330   SubEdgeList = geompy.SubShapeAll(SubFace, geompy.ShapeType["EDGE"])
331   i=0
332   for SubEdge in SubEdgeList :
333     name = geompy.SubShapeName(SubEdge, SubFace)
334     id_SubEdge = geompy.addToStudyInFather(SubFace, SubEdge, name)
335
336   #-------------------
337
338   print "DONE"