1 # Copyright (C) 2005 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License.
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 # Lesser General Public License for more details.
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 # GEOM GEOM_SWIG : binding of C++ omplementaion with Python
22 # File : GEOM_Partition1.py
25 #%Make geometry (like CEA script (A1)) using Partition algorithm%
27 # import alveole_3D_01_GEOM
28 # reload(alveole_3D_01_GEOM)
30 # -- Rayon de la bariere
33 barier_radius = 5.6 / 2 # Rayon de la bariere
34 colis_radius = 1.0 / 2 # Rayon du colis
35 colis_step = 2.0 # Distance s
\89parant deux colis
36 cc_width = 0.11 # Epaisseur du complement de colisage
40 cc_radius = colis_radius + cc_width
42 colis_center = sqrt(2.0)*colis_step/2
56 pnt0 = geompy.MakeVertex(0.,0.,0.)
57 vecz = geompy.MakeVectorDXDYDZ(0.,0.,1.)
59 barier = geompy.MakeCylinder(
67 colis = geompy.MakeCylinder(pnt0, vecz, colis_radius, barier_height)
69 cc = geompy.MakeCylinder(pnt0, vecz, cc_radius, barier_height)
71 colis_cc = geompy.MakeCompound([colis, cc])
73 colis_cc = geompy.MakeTranslation(colis_cc, colis_center, 0.0, 0.0)
75 colis_cc_multi = geompy.MultiRotate1D(colis_cc, vecz, 4)
79 Compound1 = geompy.MakeCompound([colis_cc_multi, barier])
80 SubShape_theShape = geompy.SubShapeAll(Compound1,geompy.ShapeType["SOLID"])
81 alveole = geompy.MakePartition(SubShape_theShape)
82 #alveole = geompy.MakePartition([colis_cc_multi, barier])
84 geompy.addToStudy(alveole, "alveole before explode")
86 subshapes = geompy.SubShapeAll(alveole, geompy.ShapeType["SHAPE"])
88 ## there are 9 subshapes
90 comp1 = geompy.MakeCompound([subshapes[0], subshapes[1]]);
91 comp2 = geompy.MakeCompound([subshapes[2], subshapes[3]]);
92 comp3 = geompy.MakeCompound([subshapes[4], subshapes[5]]);
93 comp4 = geompy.MakeCompound([subshapes[6], subshapes[7]]);
96 compGOs.append(comp1);
97 compGOs.append(comp2);
98 compGOs.append(comp3);
99 compGOs.append(comp4);
100 comp = geompy.MakeCompound(compGOs);
102 alveole = geompy.MakeCompound([comp, subshapes[8]]);
104 geompy.addToStudy(alveole, "alveole")