Salome HOME
18d4900ffb7f9521ff35d404681743a7a7531e45
[modules/smesh.git] / src / SMESH_SWIG / ex04_cube5tetraHexa.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 # 5 box with a hexahedral mesh and with 2 box in tetrahedral mesh
32
33 # Values
34 # ------
35
36 arete = 100
37
38 arete0 = 0
39 arete1 = arete
40 arete2 = arete*2
41 arete3 = arete*3
42
43 # Solids
44 # ------
45
46 box_tetra1 = MakeBox(arete0, arete0, 0,  arete1, arete1, arete)
47
48 box_ijk1   = MakeBox(arete1, arete0, 0,  arete2, arete1, arete)
49
50 box_hexa   = MakeBox(arete1, arete1, 0,  arete2, arete2, arete)
51
52 box_ijk2   = MakeBox(arete2, arete1, 0,  arete3, arete2, arete)
53
54 box_tetra2 = MakeBox(arete2, arete2, 0,  arete3 ,arete3, arete)
55
56 # Piece
57 # -----
58
59 piece_cpd = MakeCompound([box_tetra1, box_ijk1, box_hexa, box_ijk2, box_tetra2])
60
61 piece = MakeGlueFaces(piece_cpd, 1e-4)
62
63 piece_id = addToStudy(piece, "ex04_cube5tetraHexa")
64
65 # Meshing
66 # =======
67
68 # Create a hexahedral mesh
69 # ------------------------
70
71 mixed = smesh.Mesh(piece, "ex04_cube5tetraHexa:mixed")
72
73 algo = mixed.Segment()
74
75 algo.StartEndLength(3, 25)
76
77 mixed.Quadrangle()
78
79 mixed.Hexahedron()
80
81 # Tetrahedral local mesh
82 # ----------------------
83
84 def localMesh(b, hyp):
85     box   = GetInPlace(piece, b)
86     faces = SubShapeAll(box, ShapeType["FACE"])
87
88     i = 0
89     n = len(faces)
90     while i<n:
91         algo = mixed.Triangle(faces[i])
92         if hyp:
93             algo.MaxElementArea(80)
94         else:
95             algo.LengthFromEdges()
96         i = i + 1
97
98     algo = mixed.Tetrahedron(smesh.NETGEN, box)
99     algo.MaxElementVolume(400)
100
101 localMesh(box_tetra1, 1)
102 localMesh(box_tetra2, 0)
103
104 # Mesh calculus
105 # -------------
106
107 mixed.Compute()