Salome HOME
Refactor ex18_dome2 smesh test. Remove extra edges of individual semisphere instead...
[modules/smesh.git] / test / ex18_dome2.py
1 #  -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2007-2024  CEA, EDF, 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 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 c_calotte_haut = geompy.RemoveExtraEdges(c_calotte_haut) 
88
89 c_plan = geompy.MakePlane(geompy.MakeVertex(g_ox, g_oy, g_oz), geompy.MakeVectorDXDYDZ(0, 0, 1), g_trim)
90 c_calotte_bas = geompy.MakeMirrorByPlane(c_calotte_haut, c_plan)
91 c_calotte_bas = geompy.RemoveExtraEdges(c_calotte_bas)
92
93 # Fusionner
94 # ---------
95
96 f_piece1 = geompy.MakeFuse(c_cylindre, c_calotte_haut)
97 f_piece  = geompy.MakeFuse(f_piece1, c_calotte_bas)
98
99 # Trouer
100 # ------
101
102 t_hauteur = g_sphere_rayon
103 t_point   = geompy.MakeVertex(g_ox-g_trou_centre, g_oy, g_oz-t_hauteur)
104 t_trou    = geompy.MakeCylinder(t_point, c_dir, g_trou_rayon, 2*t_hauteur)
105
106 t_piece   = geompy.MakeCut(f_piece, t_trou)
107
108 # Decouper
109 # --------
110
111 h_outils = []
112 h_outils.append(geompy.MakePlane(t_point, geompy.MakeVectorDXDYDZ(1, 0, 0), g_trim))
113 h_outils.append(geompy.MakePlane(t_point, geompy.MakeVectorDXDYDZ(0, 1, 0), g_trim))
114
115 piece = geompy.MakePartition([t_piece], h_outils, [], [], geompy.ShapeType["SOLID"])
116
117 # Reparer
118 # -------
119
120 #Remove extraedges remove the seam edge from calottes. for salome+occt78 we move this call to the calotte sections.
121 #piece = geompy.RemoveExtraEdges(h_piece)
122
123 # Ajouter la piece dans l'etude
124 # -----------------------------
125
126 piece_id = geompy.addToStudy(piece, "ex18_dome2")
127
128 # Maillage
129 # ========
130
131 # Maillage hexahedrique
132 # ---------------------
133
134 hexa = smesh.Mesh(piece, "ex18_dome2:hexa")
135
136 algo = hexa.Segment()
137 algo.NumberOfSegments(2)
138
139 hexa.Quadrangle()
140
141 hexa.Hexahedron()
142
143 # Calcul du maillage
144 # ------------------
145
146 isDone = hexa.Compute()
147 if not isDone:
148     raise Exception("Error when computing Mesh")
149
150 # Update object browser
151 # ---------------------
152
153 salome.sg.updateObjBrowser()