Salome HOME
Merge from V6_main 01/04/2013
[modules/smesh.git] / src / SMESH_SWIG / ex02_cube2primitive.py
1 #  -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2007-2013  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 #
26 from geompy import *
27
28 import smesh
29
30 # Geometry
31 # ========
32
33 # A small cube centered and put on a great cube build by primitive geometric functionalities
34
35 # Values
36 # ------
37
38 ox = 0
39 oy = 0
40 oz = 0
41
42 arete = 10
43
44 # Points
45 # ------
46
47 blockPoint111 = MakeVertex(ox      , oy, oz)
48 blockPoint211 = MakeVertex(ox+arete, oy, oz)
49 blockPoint112 = MakeVertex(ox      , oy, oz+arete)
50 blockPoint212 = MakeVertex(ox+arete, oy, oz+arete)
51
52 # Face and solid
53 # --------------
54
55 blockFace1 = MakeQuad4Vertices(blockPoint111, blockPoint211, blockPoint212, blockPoint112)
56
57 blockSolid11  = MakePrismVecH(blockFace1, MakeVectorDXDYDZ(0, 1, 0), arete)
58
59 # Translations
60 # ------------
61
62 blockSolid21  = MakeTranslation(blockSolid11, arete, 0, 0)
63 blockSolid31  = MakeTranslation(blockSolid21, arete, 0, 0)
64
65 blockSolid12  = MakeTranslation(blockSolid11, 0, 0, arete)
66 blockSolid22  = MakeTranslation(blockSolid12, arete, 0, 0)
67 blockSolid32  = MakeTranslation(blockSolid22, arete, 0, 0)
68
69 blockSolid13  = MakeTranslation(blockSolid12, 0, 0, arete)
70 blockSolid23  = MakeTranslation(blockSolid13, arete, 0, 0)
71 blockSolid33  = MakeTranslation(blockSolid23, arete, 0, 0)
72
73 blockSolid111 = MakeTranslation(blockSolid22, 0, arete, 0)
74
75 # Compound and glue
76 # -----------------
77
78 c_l = []
79 c_l.append(blockSolid11)
80 c_l.append(blockSolid21)
81 c_l.append(blockSolid31)
82 c_l.append(blockSolid12)
83 c_l.append(blockSolid22)
84 c_l.append(blockSolid32)
85 c_l.append(blockSolid13)
86 c_l.append(blockSolid23)
87 c_l.append(blockSolid33)
88 c_l.append(blockSolid111)
89
90 c_cpd = MakeCompound(c_l)
91
92 piece = MakeGlueFaces(c_cpd, 1.e-5)
93
94 # Add in study
95 # ------------
96
97 piece_id = addToStudy(piece, "ex02_cube2primitive")
98
99 # Meshing
100 # =======
101
102 smesh.SetCurrentStudy(salome.myStudy)
103
104 # Create hexahedrical mesh on piece
105 # ---------------------------------
106
107 hexa = smesh.Mesh(piece, "ex02_cube2primitive:hexa")
108
109 algo = hexa.Segment()
110 algo.LocalLength(1)
111
112 hexa.Quadrangle()
113
114 hexa.Hexahedron()
115
116 # Compute the mesh
117 # ----------------
118
119 hexa.Compute()