Salome HOME
Update copyright information
[modules/smesh.git] / src / SMESH_SWIG / ex10_grid4geometry.py
1 #  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 #
3 #  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 #
6 #  This library is free software; you can redistribute it and/or
7 #  modify it under the terms of the GNU Lesser General Public
8 #  License as published by the Free Software Foundation; either
9 #  version 2.1 of the License.
10 #
11 #  This library is distributed in the hope that it will be useful,
12 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 #  Lesser General Public License for more details.
15 #
16 #  You should have received a copy of the GNU Lesser General Public
17 #  License along with this library; if not, write to the Free Software
18 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 #
20 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 #
22 # =======================================
23 #
24 from geompy import *
25
26 import smesh
27
28 # Geometry
29 # ========
30
31 # Element of a grid compound by a square with a cylinder on each vertex build by using partition
32
33 # Values
34 # ------
35
36 ox = 0
37 oy = 0
38 oz = 0
39
40 arete   =  50
41 hauteur = 100
42 rayon   =  10
43
44 g_trim = 1000
45
46 # Box
47 # ---
48
49 piecePoint = MakeVertex(ox, oy, oz)
50
51 pieceBox = MakeBoxTwoPnt(piecePoint, MakeVertex(ox+arete, oy+hauteur, oz+arete))
52
53 # Cut by cylinders
54 # ----------------
55
56 dirUp = MakeVectorDXDYDZ(0, 1, 0)
57
58 pieceCut1 = MakeCut(pieceBox , MakeCylinder(piecePoint                        , dirUp, rayon, hauteur))
59 pieceCut2 = MakeCut(pieceCut1, MakeCylinder(MakeVertex(ox+arete, oy, oz      ), dirUp, rayon, hauteur))
60 pieceCut3 = MakeCut(pieceCut2, MakeCylinder(MakeVertex(ox      , oy, oz+arete), dirUp, rayon, hauteur))
61 pieceCut4 = MakeCut(pieceCut3, MakeCylinder(MakeVertex(ox+arete, oy, oz+arete), dirUp, rayon, hauteur))
62
63 # Compound by make a partition of a solid
64 # ---------------------------------------
65
66 dir = MakeVectorDXDYDZ(-1, 0, 1)
67
68 tools = []
69 tools.append(MakePlane(MakeVertex(ox+rayon, oy, oz      ), dir, g_trim))
70 tools.append(MakePlane(MakeVertex(ox      , oy, oz+rayon), dir, g_trim))
71
72 piece = MakePartition([pieceCut4], tools, [], [], ShapeType["SOLID"])
73
74 # Add in study
75 # ------------
76
77 piece_id = addToStudy(piece, "ex10_grid4geometry")
78
79 # Meshing
80 # =======
81
82 # Create a hexahedral mesh
83 # ------------------------
84
85 hexa = smesh.Mesh(piece, "ex10_grid4geometry:hexa")
86
87 algo = hexa.Segment()
88 algo.NumberOfSegments(10)
89
90 hexa.Quadrangle()
91
92 hexa.Hexahedron()
93
94 # Mesh calculus
95 # -------------
96
97 hexa.Compute()