Salome HOME
Merge branch V7_3_1_BR
[modules/smesh.git] / src / SMESH_SWIG / ex18_dome2.py
1 #  -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2007-2014  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(salome.myStudy)
31
32 import SMESH, SALOMEDS
33 from salome.smesh import smeshBuilder
34 smesh =  smeshBuilder.New(salome.myStudy)
35
36 import math
37
38 # Geometrie
39 # =========
40
41 # Creer un cylindre ayant a chaque bout un morceau de sphere et le tout troue par un petit cylindrique excentre.
42 # Decouper en hexahedre et mailler.
43
44 # Donnees
45 # -------
46
47 # unite: millimetre
48
49 g_ox = 0
50 g_oy = 0
51 g_oz = 0
52
53 g_cyl_rayon       = 1000
54 g_cyl_demiHauteur = 3000
55
56 g_trou_rayon       =   5
57 g_trou_centre      = 300
58
59 g_sphere_rayon = 3500
60
61 g_trim = 15000
62
63 # Cylindre
64 # --------
65
66 c_point    = geompy.MakeVertex(g_ox, g_oy, g_oz-g_cyl_demiHauteur)
67 c_dir      = geompy.MakeVectorDXDYDZ(0, 0, 1)
68 c_hauteur  = 2*g_cyl_demiHauteur
69
70 c_cylindre = geompy.MakeCylinder(c_point, c_dir, g_cyl_rayon, c_hauteur)
71
72 # Sphere
73 # ------
74
75 s_hauteur = math.sqrt(g_sphere_rayon*g_sphere_rayon - g_cyl_rayon*g_cyl_rayon) - g_cyl_demiHauteur
76
77 s_sphere  = geompy.MakeSphere(g_ox, g_oy, g_oz-s_hauteur, g_sphere_rayon)
78
79 # Calottes
80 # --------
81
82 c_outils = []
83 c_outils.append(geompy.MakePlane(geompy.MakeVertex(g_ox, g_oy, g_oz+g_cyl_demiHauteur), geompy.MakeVectorDXDYDZ(0, 0, 1), g_trim))
84
85 c_cpd = geompy.MakePartition([s_sphere], c_outils, [], [], geompy.ShapeType["SOLID"])
86 c_calotte_haut, c_reste = geompy.SubShapeAllSorted(c_cpd, geompy.ShapeType["SOLID"])
87
88 c_plan = geompy.MakePlane(geompy.MakeVertex(g_ox, g_oy, g_oz), geompy.MakeVectorDXDYDZ(0, 0, 1), g_trim)
89 c_calotte_bas = geompy.MakeMirrorByPlane(c_calotte_haut, c_plan)
90
91 # Fusionner
92 # ---------
93
94 f_piece1 = geompy.MakeFuse(c_cylindre, c_calotte_haut)
95 f_piece  = geompy.MakeFuse(f_piece1, c_calotte_bas)
96
97 # Trouer
98 # ------
99
100 t_hauteur = g_sphere_rayon
101 t_point   = geompy.MakeVertex(g_ox-g_trou_centre, g_oy, g_oz-t_hauteur)
102 t_trou    = geompy.MakeCylinder(t_point, c_dir, g_trou_rayon, 2*t_hauteur)
103
104 t_piece   = geompy.MakeCut(f_piece, t_trou)
105
106 # Decouper
107 # --------
108
109 h_outils = []
110 h_outils.append(geompy.MakePlane(t_point, geompy.MakeVectorDXDYDZ(1, 0, 0), g_trim))
111 h_outils.append(geompy.MakePlane(t_point, geompy.MakeVectorDXDYDZ(0, 1, 0), g_trim))
112
113 h_piece = geompy.MakePartition([t_piece], h_outils, [], [], geompy.ShapeType["SOLID"])
114
115 # Reparer
116 # -------
117
118 piece = geompy.RemoveExtraEdges(h_piece)
119
120 # Ajouter la piece dans l'etude
121 # -----------------------------
122
123 piece_id = geompy.addToStudy(piece, "ex18_dome2")
124
125 # Maillage
126 # ========
127
128 # Maillage hexahedrique
129 # ---------------------
130
131 hexa = smesh.Mesh(piece, "ex18_dome2:hexa")
132
133 algo = hexa.Segment()
134 algo.NumberOfSegments(2)
135
136 hexa.Quadrangle()
137
138 hexa.Hexahedron()
139
140 # Calcul du maillage
141 # ------------------
142
143 hexa.Compute()