Salome HOME
IPAL21363 Compute hangs up on Hypothesis Distribution of Layers.
[modules/smesh.git] / src / SMESH_SWIG / ex29_refine.py
1 #! /usr/bin/python
2 #  -*- coding: iso-8859-1 -*-
3 #  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
4 #
5 #  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
6 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
7 #
8 #  This library is free software; you can redistribute it and/or
9 #  modify it under the terms of the GNU Lesser General Public
10 #  License as published by the Free Software Foundation; either
11 #  version 2.1 of the License.
12 #
13 #  This library is distributed in the hope that it will be useful,
14 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 #  Lesser General Public License for more details.
17 #
18 #  You should have received a copy of the GNU Lesser General Public
19 #  License along with this library; if not, write to the Free Software
20 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
21 #
22 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 #
24 # =======================================
25 # Procedure that take a triangulation and split all triangles in 4 others triangles
26 #
27 import geompy
28 import smesh
29
30 import os
31
32 # Values
33 # ------
34
35 # Path for ".med" files
36 path = "/tmp/ex29_%s_" % os.getenv('USER','unknown')
37
38 # Name of the shape and the mesh
39 name = "Carre"
40
41 # Add a node and needed edges
42 # ---------------------------
43
44 def node(m, f, n1, n2, lnv):
45     x1, y1, z1 = m.GetNodeXYZ(n1)
46     x2, y2, z2 = m.GetNodeXYZ(n2)
47
48     x = (x1 + x2) / 2.0
49     y = (y1 + y2) / 2.0
50     z = (z1 + z2) / 2.0
51
52     i = m.AddNode(x, y, z)
53
54     in1 = m.GetShapeID(n1)
55     in2 = m.GetShapeID(n2)
56
57     if (in1==f) or (in2==f):
58         m.SetNodeOnFace(i, f, 0, 0)
59
60     else:
61         e1 = m.AddEdge([ n1, i  ])
62         e2 = m.AddEdge([ i , n2 ])
63
64         if n1 in lnv:
65             e = in2
66         else:
67             e = in1
68
69         m.SetMeshElementOnShape(e1, e)
70         m.SetMeshElementOnShape(e2, e)
71         m.SetNodeOnEdge(i, e, 0)
72
73     return i
74
75 # Add a triangle and associate to the CAD face
76 # --------------------------------------------
77
78 def triangle(m, f, n1, n2, n3):
79     i = m.AddFace([ n1, n2, n3 ])
80     m.SetMeshElementOnShape(i, f)
81
82 # Split all triangles in 4 triangles
83 # ----------------------------------
84
85 def SplitTrianglesIn4(m):
86     # Get all triangles
87     triangles = m.GetElementsByType(smesh.FACE)
88
89     # Remove all edges
90     m.RemoveElements(m.GetElementsByType(smesh.EDGE))
91
92     # Get the list of nodes (ids) associated with the CAD vertices
93     shape = m.GetShape()
94     lnv = []
95     for v in geompy.SubShapeAll(shape, geompy.ShapeType["VERTEX"]):
96         lnv = lnv + m.GetSubMeshNodesId(v, True)
97
98     # Split every triangle
99     for t in triangles:
100         noeud_1, noeud_2, noeud_3 = m.GetElemNodes(t)
101
102         face = m.GetShapeIDForElem(t)
103
104         noeud_12 = node(m, face, noeud_1, noeud_2, lnv)
105         noeud_23 = node(m, face, noeud_2, noeud_3, lnv)
106         noeud_13 = node(m, face, noeud_1, noeud_3, lnv)
107
108         triangle(m, face, noeud_1 , noeud_12, noeud_13)
109         triangle(m, face, noeud_2 , noeud_23, noeud_12)
110         triangle(m, face, noeud_3 , noeud_13, noeud_23)
111         triangle(m, face, noeud_12, noeud_23, noeud_13)
112
113     # Remove all initial triangles
114     m.RemoveElements(triangles)
115
116     # Merge all identical nodes
117     m.MergeNodes(m.FindCoincidentNodes(0.0001))
118
119 # Build a CAD square
120 # ------------------
121
122 x0 = 0.0 ; y0 = 0.0 ; z0 = 0.0
123 x1 = 1.0 ; y1 = 0.0 ; z1 = 0.0
124 x2 = 1.0 ; y2 = 1.0 ; z2 = 0.0
125 x3 = 0.0 ; y3 = 1.0 ; z3 = 0.0
126
127 P0 = geompy.MakeVertex(x0, y0, z0)
128 P1 = geompy.MakeVertex(x1, y1, z1)
129 P2 = geompy.MakeVertex(x2, y2, z2)
130 P3 = geompy.MakeVertex(x3, y3, z3)
131
132 square = geompy.MakeQuad4Vertices(P0, P1, P2, P3)
133 geompy.addToStudy(square, name)
134
135 # Refine edges and create group of mesh
136 # -------------------------------------
137
138 def refine(m, p1, p2, n, k, name):
139     s = m.GetShape()
140
141     g = geompy.CreateGroup(s, geompy.ShapeType["EDGE"])
142     e = geompy.GetEdge(s, p1, p2)
143     i = geompy.GetSubShapeID(s, e)
144     geompy.AddObject(g, i)
145     m.Group(g, name)
146
147     a = m.Segment(e)
148     a.NumberOfSegments(n, k)
149
150 # Mesh the square
151 # ---------------
152
153 MyMesh = smesh.Mesh(square)
154
155 refine(MyMesh, P1, P2,  8,  7, "Droite")
156 refine(MyMesh, P3, P0,  9, 10, "Gauche")
157 refine(MyMesh, P0, P1,  7,  9, "Bas"   )
158 refine(MyMesh, P2, P3, 12, 14, "Haut"  )
159
160 algo2D = MyMesh.Triangle()
161 algo2D.MaxElementArea(0.07)
162
163 MyMesh.Compute()
164
165 MyMesh.ExportMED(path+"110_triangles.med", 0)
166
167 # Disturb the mesh
168 # ----------------
169
170 MyMesh.MoveNode( 37, 0.05    , 0.368967 , 0 )
171 MyMesh.MoveNode( 38, 0.34    , 0.0762294, 0 )
172 MyMesh.MoveNode( 40, 0.8     , 0.42     , 0 )
173 MyMesh.MoveNode( 42, 0.702662, 0.74     , 0 )
174 MyMesh.MoveNode( 46, 0.4     , 0.374656 , 0 )
175 MyMesh.MoveNode( 47, 0.13    , 0.63     , 0 )
176 MyMesh.MoveNode( 49, 0.222187, 0.3      , 0 )
177 MyMesh.MoveNode( 54, 0.557791, 0.05     , 0 )
178 MyMesh.MoveNode( 55, 0.7     , 0.2      , 0 )
179 MyMesh.MoveNode( 56, 0.73    , 0.52     , 0 )
180 MyMesh.MoveNode( 58, 0.313071, 0.31     , 0 )
181 MyMesh.MoveNode( 59, 0.8     , 0.56     , 0 )
182 MyMesh.MoveNode( 62, 0.592703, 0.95     , 0 )
183 MyMesh.MoveNode( 63, 0.28    , 0.5      , 0 )
184 MyMesh.MoveNode( 65, 0.49    , 0.93     , 0 )
185 MyMesh.MoveNode( 68, 0.501038, 0.65     , 0 )
186 MyMesh.MoveNode( 69, 0.37    , 0.63     , 0 )
187 MyMesh.MoveNode( 70, 0.597025, 0.52     , 0 )
188 MyMesh.MoveNode( 72, 0.899   , 0.878589 , 0 )
189 MyMesh.MoveNode( 73, 0.92    , 0.85     , 0 )
190 MyMesh.MoveNode( 74, 0.820851, 0.75     , 0 )
191
192 NbCells1 = 110
193 MyMesh.ExportMED(path+"110_triangles_2.med", 0)
194
195 # First mesh refining
196 # -------------------
197
198 SplitTrianglesIn4(MyMesh)
199
200 NbCells2 = NbCells1*4
201 print("Mesh with "+str(NbCells2)+" cells computed.")
202
203 MyMesh.ExportMED(path+str(NbCells2)+"_triangles.med", 0)
204
205 # Second mesh refining
206 # --------------------
207
208 SplitTrianglesIn4(MyMesh)
209
210 NbCells3 = NbCells2*4
211 print("Mesh with "+str(NbCells3)+" cells computed.")
212
213 MyMesh.ExportMED(path+str(NbCells3)+"_triangles.med",0)
214
215 # Third mesh refining
216 # -------------------
217
218 SplitTrianglesIn4(MyMesh)
219
220 NbCells4 = NbCells3*4
221 print("Mesh with "+str(NbCells4)+" cells computed.")
222
223 MyMesh.ExportMED(path+str(NbCells4)+"_triangles.med", 0)
224
225 # Update the object browser
226 # -------------------------
227
228 geompy.salome.sg.updateObjBrowser(1)