Salome HOME
Merge from V6_main 01/04/2013
[modules/smesh.git] / src / SMESH_SWIG / ex19_sphereINcube.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 import geompy
30
31 # Geometrie
32 # =========
33
34 # Mailler en hexahedre une sphere dans un cube.
35
36 # Donnees
37 # -------
38
39 sphere_rayon = 100
40
41 cube_cote = 200
42
43 plan_trim = 1000
44
45 # Sphere
46 # ------
47
48 sphere_centre = MakeVertex(0, 0, 0)
49
50 sphere_pleine = MakeSpherePntR(sphere_centre, sphere_rayon)
51
52 # Cube interieur
53 # --------------
54
55 boite_cote = sphere_rayon / 2
56
57 boite = MakeBox(-boite_cote, -boite_cote, -boite_cote,  +boite_cote, +boite_cote, +boite_cote)
58
59 blocs = [boite]
60
61 # Decoupage sphere
62 # ----------------
63
64 sphere_troue = MakeCut(sphere_pleine, boite)
65
66 #sphere_outils = []
67 #sphere_outils.append(MakePlane(sphere_centre, MakeVectorDXDYDZ( 1, 0,  1), plan_trim))
68 #sphere_outils.append(MakePlane(sphere_centre, MakeVectorDXDYDZ( 1, 0, -1), plan_trim))
69 #sphere_outils.append(MakePlane(sphere_centre, MakeVectorDXDYDZ( 1, 1,  0), plan_trim))
70 #sphere_outils.append(MakePlane(sphere_centre, MakeVectorDXDYDZ(-1, 1,  0), plan_trim))
71
72 f1 = MakePlane(sphere_centre, MakeVectorDXDYDZ( 1, 0,  1), plan_trim)
73 f2 = MakePlane(sphere_centre, MakeVectorDXDYDZ(-1, 1,  0), plan_trim)
74 f3 = MakePlane(sphere_centre, MakeVectorDXDYDZ( 1, 1,  0), plan_trim)
75 f4 = MakePlane(sphere_centre, MakeVectorDXDYDZ( 1, 0, -1), plan_trim)
76
77
78 #sphere_decoupee = MakePartition(solids, sphere_outils, [], [], ShapeType["SOLID"])
79
80 sphere_decoupee = MakePartition([sphere_troue],    [f1], [], [], ShapeType["SOLID"])
81 sphere_decoupee = MakePartition([sphere_decoupee], [f2], [], [], ShapeType["SOLID"])
82 sphere_decoupee = MakePartition([sphere_decoupee], [f3], [], [], ShapeType["SOLID"])
83 sphere_decoupee = MakePartition([sphere_decoupee], [f4], [], [], ShapeType["SOLID"])
84
85 sphere_partie = geompy.MakeCompound([sphere_decoupee])
86
87 sphere_partie   = GetBlockNearPoint(sphere_decoupee, MakeVertex(-sphere_rayon, 0, 0))
88 sphere_bloc     = RemoveExtraEdges(sphere_partie)
89
90 blocs.append(sphere_bloc)
91
92 pi2 = 3.141592653/2
93
94 sphere_dir1 = MakeVectorDXDYDZ(0, 1,  0)
95 sphere_dir2 = MakeVectorDXDYDZ(0, 0,  1)
96
97 blocs.append(MakeRotation(sphere_bloc, sphere_dir1, +pi2))
98 blocs.append(MakeRotation(sphere_bloc, sphere_dir1, -pi2))
99
100 blocs.append(MakeRotation(sphere_bloc, sphere_dir2, +pi2))
101 blocs.append(MakeRotation(sphere_bloc, sphere_dir2, -pi2))
102
103 blocs.append(MakeMirrorByPoint(sphere_bloc, sphere_centre))
104
105 # Cube exterieur
106 # --------------
107
108 cube_plein   = MakeBox(-cube_cote, -cube_cote, -cube_cote,  +cube_cote, +cube_cote, +cube_cote)
109 cube_trou    = MakeCut(cube_plein, sphere_pleine)
110 #cube_decoupe = MakePartition([cube_trou], sphere_outils, [], [], ShapeType["SOLID"])
111
112 cube_decoupe = MakePartition([cube_trou],    [f1], [], [], ShapeType["SOLID"])
113 cube_decoupe = MakePartition([cube_decoupe], [f2], [], [], ShapeType["SOLID"])
114 cube_decoupe = MakePartition([cube_decoupe], [f3], [], [], ShapeType["SOLID"])
115 cube_decoupe = MakePartition([cube_decoupe], [f4], [], [], ShapeType["SOLID"])
116
117 cube_decoupe = geompy.MakeCompound([cube_decoupe])
118
119
120 cube_partie  = GetBlockNearPoint(cube_decoupe, MakeVertex(-cube_cote, 0, 0))
121 cube_bloc    = RemoveExtraEdges(cube_partie)
122
123 blocs.append(cube_bloc)
124
125 blocs.append(MakeRotation(cube_bloc, sphere_dir1, +pi2))
126 blocs.append(MakeRotation(cube_bloc, sphere_dir1, -pi2))
127
128 blocs.append(MakeRotation(cube_bloc, sphere_dir2, +pi2))
129 blocs.append(MakeRotation(cube_bloc, sphere_dir2, -pi2))
130
131 blocs.append(MakeMirrorByPoint(cube_bloc, sphere_centre))
132
133 # Piece
134 # -----
135
136 piece_cpd = MakeCompound(blocs)
137 piece = MakeGlueFaces(piece_cpd, 1.e-3)
138
139 piece_id = addToStudy(piece, "ex19_sphereINcube")
140
141 # Groupe geometrique
142 # ==================
143
144 # Definition du groupe
145 # --------------------
146
147 groupe = CreateGroup(piece, ShapeType["SOLID"])
148
149 groupe_nom = "ex19_sphereINcube_interieur"
150 addToStudy(groupe, groupe_nom)
151 groupe.SetName(groupe_nom)
152
153 # Contenu du groupe
154 # -----------------
155
156 groupe_sphere = GetShapesOnSphere(piece, ShapeType["SOLID"], sphere_centre, sphere_rayon, GEOM.ST_ONIN)
157
158 UnionList(groupe, groupe_sphere)
159
160 # Meshing
161 # =======
162
163 smesh.SetCurrentStudy(salome.myStudy)
164
165 # Create a hexahedral mesh
166 # ------------------------
167
168 hexa = smesh.Mesh(piece, "ex19_sphereINcube:hexa")
169
170 algo = hexa.Segment()
171 algo.NumberOfSegments(10)
172
173 hexa.Quadrangle()
174
175 hexa.Hexahedron()
176
177 # Mesh calculus
178 # -------------
179
180 hexa.Compute()
181
182 # Le groupe de mailles
183 # --------------------
184
185 hexa_groupe = hexa.Group(groupe)