Salome HOME
Merge remote branch 'origin/V8_5_asterstudy'
[modules/smesh.git] / src / SMESH_SWIG / ex03_cube2partition.py
1 #  -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2007-2016  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, or (at your option) any later version.
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 #
26 import salome
27 salome.salome_init()
28 import GEOM
29 from salome.geom import geomBuilder
30 geompy = geomBuilder.New()
31
32 import SMESH, SALOMEDS
33 from salome.smesh import smeshBuilder
34 smesh =  smeshBuilder.New()
35
36 # Geometry
37 # ========
38
39 # A small cube centered and put on a great cube build with partition
40
41 # Values
42 # ------
43
44 g_ox = 0
45 g_oy = 0
46 g_oz = 0
47
48 g_arete = 10
49
50 g_trim = 1000
51
52 # Points
53 # ------
54
55 v_arete2 = g_arete*2
56 v_arete3 = g_arete*3
57
58 v_1 = geompy.MakeVertex(g_ox         , g_oy         , g_oz         )
59 v_2 = geompy.MakeVertex(g_ox+v_arete3, g_oy+g_arete , g_oz+v_arete3)
60
61 v_3 = geompy.MakeVertex(g_ox+g_arete , g_oy+g_arete , g_oz+g_arete )
62 v_4 = geompy.MakeVertex(g_ox+v_arete2, g_oy+v_arete2, g_oz+v_arete2)
63
64 # Solids
65 # ------
66
67 s_base = geompy.MakeBoxTwoPnt(v_1, v_2)
68 s_haut = geompy.MakeBoxTwoPnt(v_3, v_4)
69
70 # Partition
71 # ---------
72
73 p_dir1 = geompy.MakeVectorDXDYDZ(1, 0, 0)
74 p_dir2 = geompy.MakeVectorDXDYDZ(0, 0, 1)
75 p_dir3 = geompy.MakeVectorDXDYDZ(0, 1, 0)
76
77 p_tools = []
78
79 p_tools.append(geompy.MakePlane(v_3, p_dir1, g_trim))
80 p_tools.append(geompy.MakePlane(v_4, p_dir1, g_trim))
81 p_tools.append(geompy.MakePlane(v_3, p_dir2, g_trim))
82 p_tools.append(geompy.MakePlane(v_4, p_dir2, g_trim))
83 p_tools.append(geompy.MakePlane(v_3, p_dir3, g_trim))
84
85 piece = geompy.MakePartition([s_base, s_haut], p_tools, [], [], geompy.ShapeType["SOLID"])
86
87 # Study
88 # -----
89
90 piece_id = geompy.addToStudy(piece, "ex03_cube2partition")
91
92 # Meshing
93 # =======
94
95 # Create hexahedrical mesh on piece
96 # ---------------------------------
97
98 hexa = smesh.Mesh(piece, "ex03_cube2partition:hexa")
99
100 algo = hexa.Segment()
101 algo.NumberOfSegments(5)
102
103 hexa.Quadrangle()
104
105 hexa.Hexahedron()
106
107 # Compute the mesh
108 # ----------------
109
110 hexa.Compute()
111
112 # Update object browser
113 # ---------------------
114
115 salome.sg.updateObjBrowser()