1 # -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE
4 # Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
5 # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
7 # This library is free software; you can redistribute it and/or
8 # modify it under the terms of the GNU Lesser General Public
9 # License as published by the Free Software Foundation; either
10 # version 2.1 of the License, or (at your option) any later version.
12 # This library is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 # Lesser General Public License for more details.
17 # You should have received a copy of the GNU Lesser General Public
18 # License along with this library; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
24 # GEOM GEOM_SWIG : binding of C++ omplementaion with Python
25 # File : GEOM_Partition5.py
27 # import gallery_01_GEOM
28 # reload(gallery_01_GEOM)
29 # -- Import geompy pour piloter GEOM par script
34 from salome.geom import geomBuilder
35 geompy = geomBuilder.New(salome.myStudy)
37 # -- Dimensions de la boite enti
\88re
39 LX, LY, LZ = 300.0, 150.0, 150.0
40 p0 = geompy.MakeVertex(0.,0.,0.)
41 vy = geompy.MakeVectorDXDYDZ(0.,1.,0.)
43 # -- D
\89finition du plan de sym
\89trie (O,Ox,Oz)
45 symPlane = geompy.MakePlane(p0, vy, 10.0)
49 bo = geompy.MakeBoxDXDYDZ(LX, LY, LZ)
50 bo = geompy.MakeTranslation(bo, 0.0, -LY/2, -LZ/2)
52 # -- Galerie principale
56 gal_x = LX-20.0-gal_diam/2
58 gal = geompy.MakeCylinder(p0, vy, gal_diam/2, gal_lony)
59 gal = geompy.MakeTranslation(gal, gal_x, -gal_lony/2, 0.0)
61 # -- Galerie perpendiculaire
62 # -- Dimensions de la galerie perpendiculaire
63 # -- La longueur est compt
\89e
\80 partir du centre
64 # -- de la galerie principale
66 gpe_long, gpe_diam = 200.0, 60.0
68 gpe = geompy.MakeCylinder(
70 geompy.MakeVectorDXDYDZ(-1.,0.,0.),
72 gpe = geompy.MakeTranslation(gpe, gpe_x, 0, 0)
74 # -- Dimensions d'une alveole
75 # -- Construction d'une alv
\89ole
77 alv_long, alv_diam = 60.0, 18.0
78 alv01 = geompy.MakeCylinder(p0, vy, alv_diam/2, alv_long)
79 alv02 = geompy.MakeMirrorByPlane(alv01, symPlane)
80 alv0 = geompy.MakeCompound([alv01, alv02])
82 # -- Construction des alv
\89oles
84 alv_del, alv_sep = 40.0, 35.0
85 alv1 = geompy.MakeTranslation(alv0, gal_x-gal_diam/2-alv_sep, 0.0, 0.0)
86 alv2 = geompy.MakeTranslation(alv1, -alv_del, 0.0, 0.0 )
87 alv3 = geompy.MakeTranslation(alv2, -alv_del, 0.0, 0.0 )
88 alv = geompy.MakeCompound([alv1, alv2, alv3])
90 # -- Remplissage de la BO
92 gallery = geompy.MakePartition([alv, bo], [], [], [gal, gpe])
94 subshapes = geompy.SubShapeAll(gallery, geompy.ShapeType["SHAPE"])
97 alvGOs.append(subshapes[0])
98 alvGOs.append(subshapes[1])
99 alvGOs.append(subshapes[2])
100 alvGOs.append(subshapes[3])
101 alvGOs.append(subshapes[4])
102 alvGOs.append(subshapes[5])
103 alvcomp = geompy.MakeCompound(alvGOs)
109 gallery = geompy.MakeCompound([boGO, alvcomp, gpeGO, galGO])
111 geompy.addToStudy(gallery,"Gallery 2")