Salome HOME
correct previous integration (Porting to Python 2.6)
[modules/smesh.git] / src / SMESH_SWIG / ex03_cube2partition.py
1 #  -*- coding: iso-8859-1 -*-
2 #  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
3 #
4 #  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
5 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 #
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.
11 #
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.
16 #
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
20 #
21 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 #
23 # =======================================
24 #
25 from geompy import *
26
27 import smesh
28
29 # Geometry
30 # ========
31
32 # A small cube centered and put on a great cube build with partition
33
34 # Values
35 # ------
36
37 g_ox = 0
38 g_oy = 0
39 g_oz = 0
40
41 g_arete = 10
42
43 g_trim = 1000
44
45 # Points
46 # ------
47
48 v_arete2 = g_arete*2
49 v_arete3 = g_arete*3
50
51 v_1 = MakeVertex(g_ox         , g_oy         , g_oz         )
52 v_2 = MakeVertex(g_ox+v_arete3, g_oy+g_arete , g_oz+v_arete3)
53
54 v_3 = MakeVertex(g_ox+g_arete , g_oy+g_arete , g_oz+g_arete )
55 v_4 = MakeVertex(g_ox+v_arete2, g_oy+v_arete2, g_oz+v_arete2)
56
57 # Solids
58 # ------
59
60 s_base = MakeBoxTwoPnt(v_1, v_2)
61 s_haut = MakeBoxTwoPnt(v_3, v_4)
62
63 # Partition
64 # ---------
65
66 p_dir1 = MakeVectorDXDYDZ(1, 0, 0)
67 p_dir2 = MakeVectorDXDYDZ(0, 0, 1)
68 p_dir3 = MakeVectorDXDYDZ(0, 1, 0)
69
70 p_tools = []
71
72 p_tools.append(MakePlane(v_3, p_dir1, g_trim))
73 p_tools.append(MakePlane(v_4, p_dir1, g_trim))
74 p_tools.append(MakePlane(v_3, p_dir2, g_trim))
75 p_tools.append(MakePlane(v_4, p_dir2, g_trim))
76 p_tools.append(MakePlane(v_3, p_dir3, g_trim))
77
78 piece = MakePartition([s_base, s_haut], p_tools, [], [], ShapeType["SOLID"])
79
80 # Study
81 # -----
82
83 piece_id = addToStudy(piece, "ex03_cube2partition")
84
85 # Meshing
86 # =======
87
88 # Create hexahedrical mesh on piece
89 # ---------------------------------
90
91 hexa = smesh.Mesh(piece, "ex03_cube2partition:hexa")
92
93 algo = hexa.Segment()
94 algo.NumberOfSegments(5)
95
96 hexa.Quadrangle()
97
98 hexa.Hexahedron()
99
100 # Compute the mesh
101 # ----------------
102
103 hexa.Compute()