Salome HOME
Merge from BR_V5_DEV 16Feb09
[modules/smesh.git] / src / SMESH_SWIG / ex03_cube2partition.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 # A small cube centered and put on a great cube build with partition
32
33 # Values
34 # ------
35
36 g_ox = 0
37 g_oy = 0
38 g_oz = 0
39
40 g_arete = 10
41
42 g_trim = 1000
43
44 # Points
45 # ------
46
47 v_arete2 = g_arete*2
48 v_arete3 = g_arete*3
49
50 v_1 = MakeVertex(g_ox         , g_oy         , g_oz         )
51 v_2 = MakeVertex(g_ox+v_arete3, g_oy+g_arete , g_oz+v_arete3)
52
53 v_3 = MakeVertex(g_ox+g_arete , g_oy+g_arete , g_oz+g_arete )
54 v_4 = MakeVertex(g_ox+v_arete2, g_oy+v_arete2, g_oz+v_arete2)
55
56 # Solids
57 # ------
58
59 s_base = MakeBoxTwoPnt(v_1, v_2)
60 s_haut = MakeBoxTwoPnt(v_3, v_4)
61
62 # Partition
63 # ---------
64
65 p_dir1 = MakeVectorDXDYDZ(1, 0, 0)
66 p_dir2 = MakeVectorDXDYDZ(0, 0, 1)
67 p_dir3 = MakeVectorDXDYDZ(0, 1, 0)
68
69 p_tools = []
70
71 p_tools.append(MakePlane(v_3, p_dir1, g_trim))
72 p_tools.append(MakePlane(v_4, p_dir1, g_trim))
73 p_tools.append(MakePlane(v_3, p_dir2, g_trim))
74 p_tools.append(MakePlane(v_4, p_dir2, g_trim))
75 p_tools.append(MakePlane(v_3, p_dir3, g_trim))
76
77 piece = MakePartition([s_base, s_haut], p_tools, [], [], ShapeType["SOLID"])
78
79 # Study
80 # -----
81
82 piece_id = addToStudy(piece, "ex03_cube2partition")
83
84 # Meshing
85 # =======
86
87 # Create hexahedrical mesh on piece
88 # ---------------------------------
89
90 hexa = smesh.Mesh(piece, "ex03_cube2partition:hexa")
91
92 algo = hexa.Segment()
93 algo.NumberOfSegments(5)
94
95 hexa.Quadrangle()
96
97 hexa.Hexahedron()
98
99 # Compute the mesh
100 # ----------------
101
102 hexa.Compute()