1 # -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2007-2022 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++ implementation with Python
25 # File : GEOM_Partition4.py
27 # import couplex2_01_GEOM
28 # reload(couplex2_01_GEOM)
29 # Dimensions de alveolus
30 # Parall�pip�de rectangle de taille alDx, alDy, alDz
37 # Dimensions de backfill
38 # Parall�pip�de rectangle de taille baDx, baDy, baDz
44 # Dimensions de geological medium
55 from salome.geom import geomBuilder
56 geompy = geomBuilder.New()
58 # -- Construction de backfill
60 backA = geompy.MakeBox(0.0, 0.0, 0.0, baDx, baDy, baDz)
61 back = geompy.MakeTranslation(backA, -baDx/2, -baDy/2, -baDz/2)
63 # -- Construction de alveolus
67 alveA = geompy.MakeBox(0.0, 0.0, 0.0, alDx, alDy, alDz)
68 alveB = geompy.MakeTranslation(alveA, -alDx/2, baDy/2, -alDz/2)
69 axis = geompy.MakeVectorDXDYDZ(1.0, 0.0, 0.0)
70 alve1 = geompy.MakeRotation(alveB, axis, math.pi)
71 alve2 = geompy.MakeTranslation(alveB, +alSepx/2, 0.0, 0.0)
72 alve3 = geompy.MakeTranslation(alveB, -alSepx/2, 0.0, 0.0)
77 alve = geompy.MakeCompound(GOlist)
79 # -- Construction de geological medium
81 geolA = geompy.MakeBox(0.0, 0.0, 0.0, gmDx, gmDy, gmDz)
82 geol = geompy.MakeTranslation(geolA, -gmDx/2, -gmDy/2, -gmDz/2)
84 geol = geompy.MakePartition([alve, geol, back])
86 subshapes = geompy.SubShapeAll(geol, geompy.ShapeType["SHAPE"])
89 GOlist.append(subshapes[0])
90 GOlist.append(subshapes[1])
91 GOlist.append(subshapes[2])
92 alve = geompy.MakeCompound(GOlist)
99 geol = geompy.MakeCompound([geol, back, alve])
101 geompy.addToStudy(geol, "couplex2 2")