1 # -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2007-2012 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.
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 # =======================================
33 # A twice holed cube build by points, edges, faces and solids
53 piecePoint1 = MakeVertex(ox , oy, oz)
54 piecePoint2 = MakeVertex(ox+longueur, oy, oz)
55 piecePoint3 = MakeVertex(ox+longueur, oy, oz+largeur)
56 piecePoint4 = MakeVertex(ox , oy, oz+largeur)
60 cylPoint1 = MakeVertex(ox+cylindre , oy, cz-rayon)
61 cylPoint2 = MakeVertex(ox+longueur-cylindre, oy, cz-rayon)
62 cylPoint3 = MakeVertex(ox+longueur-cylindre, oy, cz+rayon)
63 cylPoint4 = MakeVertex(ox+cylindre , oy, cz+rayon)
68 pieceEdge1 = MakeEdge(piecePoint1, piecePoint4)
69 pieceEdge2 = MakeEdge(piecePoint1, cylPoint1)
70 pieceEdge3 = MakeEdge(piecePoint4, cylPoint4)
72 pieceEdge4 = MakeEdge(piecePoint2, piecePoint3)
73 pieceEdge5 = MakeEdge(piecePoint2, cylPoint2)
74 pieceEdge6 = MakeEdge(piecePoint3, cylPoint3)
76 pieceEdge7 = MakeEdge(cylPoint1, cylPoint2)
77 pieceEdge8 = MakeEdge(cylPoint3, cylPoint4)
79 cylEdge1 = MakeArc(cylPoint1, MakeVertex(ox+cylindre-rayon , oy, cz), cylPoint4)
80 cylEdge2 = MakeArc(cylPoint1, MakeVertex(ox+cylindre+rayon , oy, cz), cylPoint4)
81 cylEdge3 = MakeArc(cylPoint2, MakeVertex(ox+longueur-cylindre-rayon, oy, cz), cylPoint3)
82 cylEdge4 = MakeArc(cylPoint2, MakeVertex(ox+longueur-cylindre+rayon, oy, cz), cylPoint3)
87 pieceFace1 = MakeQuad4Vertices(piecePoint1, piecePoint2, cylPoint2 , cylPoint1 )
88 pieceFace2 = MakeQuad (pieceEdge1 , pieceEdge2 , cylEdge1 , pieceEdge3)
89 pieceFace3 = MakeQuad4Vertices(piecePoint3, piecePoint4, cylPoint4 , cylPoint3 )
90 pieceFace4 = MakeQuad (pieceEdge4 , pieceEdge5 , cylEdge4 , pieceEdge6)
91 pieceFace5 = MakeQuad (pieceEdge7 , cylEdge3 , pieceEdge8, cylEdge2 )
96 pieceVector = MakeVectorDXDYDZ(0, 1, 0)
98 pieceSolid1 = MakePrismVecH(pieceFace1, pieceVector, hauteur)
99 pieceSolid2 = MakePrismVecH(pieceFace2, pieceVector, hauteur)
100 pieceSolid3 = MakePrismVecH(pieceFace3, pieceVector, hauteur)
101 pieceSolid4 = MakePrismVecH(pieceFace4, pieceVector, hauteur)
102 pieceSolid5 = MakePrismVecH(pieceFace5, pieceVector, hauteur)
107 c_cpd = MakeCompound([pieceSolid1, pieceSolid2, pieceSolid3, pieceSolid4, pieceSolid5])
109 piece = MakeGlueFaces(c_cpd, 1.e-5)
114 piece_id = addToStudy(piece, "ex08_hole2build")
119 smesh.SetCurrentStudy(salome.myStudy)
121 # Create a hexahedral mesh
122 # ------------------------
124 hexa = smesh.Mesh(piece, "ex08_hole2build:hexa")
126 algo = hexa.Segment()
127 algo.NumberOfSegments(7)