Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/smesh.git] / src / SMESH_SWIG / PAL_MESH_041_mesh.py
1 #  -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2007-2012  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 import salome
25 import geompy
26 import smesh
27
28
29 #-----------------------------GEOM----------------------------------------
30
31 #----------Vertexes------------
32 p1 = geompy.MakeVertex(20.0,30.0,40.0)
33 p2 = geompy.MakeVertex(90.0,80.0,0.0)
34 p3 = geompy.MakeVertex(30.0,80.0,200.0)
35
36 #----------Edges---------------
37 e1 = geompy.MakeEdge(p1,p2)
38 e2 = geompy.MakeEdge(p2,p3)
39 e3 = geompy.MakeEdge(p3,p1)
40
41 #----------Wire----------------
42 ListOfEdges = []
43 ListOfEdges.append(e3)
44 ListOfEdges.append(e2)
45 ListOfEdges.append(e1)
46 wire1 = geompy.MakeWire(ListOfEdges)
47
48
49 #----------Face----------------
50 WantPlanarFace = 1
51 face1 = geompy.MakeFace(wire1,WantPlanarFace)
52
53 Id_face1 = geompy.addToStudy(face1,"Face1")
54
55
56
57 #-----------------------------SMESH-------------------------------------------
58 smesh.SetCurrentStudy(salome.myStudy)
59
60 # -- Init mesh --
61 plane_mesh = salome.IDToObject( Id_face1)
62
63 mesh = smesh.Mesh(plane_mesh, "Mesh_1")
64
65 print"---------------------Hypothesis and Algorithms"
66
67 #---------------- NumberOfSegments
68
69 numberOfSegment = 9
70
71 algoWireDes = mesh.Segment()
72 listHyp = algoWireDes.GetCompatibleHypothesis()
73 print algoWireDes.GetName()
74 algoWireDes.SetName("Ware descritisation")
75
76 hypNbSeg = algoWireDes.NumberOfSegments(numberOfSegment)
77 print hypNbSeg.GetName()
78 print hypNbSeg.GetNumberOfSegments()
79 smesh.SetName(hypNbSeg, "Nb. Segments")
80
81
82 #--------------------------Max. Element Area
83 maxElementArea = 200
84
85 algoMef = mesh.Triangle()
86 listHyp = algoMef.GetCompatibleHypothesis()
87 print algoMef.GetName()
88 algoMef.SetName("Triangle (Mefisto)")
89
90 hypArea200 = algoMef.MaxElementArea(maxElementArea)
91 print hypArea200.GetName()
92 print hypArea200.GetMaxElementArea()
93 smesh.SetName(hypArea200, "Max. Element Area")
94
95
96 print "---------------------Compute the mesh"
97
98 ret = mesh.Compute()
99 print ret
100
101 salome.sg.updateObjBrowser(1)
102