Salome HOME
22806: EDF SMESH: Regression: Prism_3D error
[modules/smesh.git] / src / SMESH_SWIG / SMESH_Nut.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 #Created                :17/02/2005
26 #Auhtor                 :MASLOV Eugeny, KOVALTCHUK Alexey 
27 #####################################################################
28 #
29 import salome
30 salome.salome_init()
31 import GEOM
32 from salome.geom import geomBuilder
33 geompy = geomBuilder.New(salome.myStudy)
34
35 import SMESH, SALOMEDS
36 from salome.smesh import smeshBuilder
37 smesh =  smeshBuilder.New(salome.myStudy)
38
39 import os
40 import math
41
42 #Sketcher_1 creation
43 print "Sketcher creation..."
44 Sketcher_1 = geompy.MakeSketcher("Sketcher:F 100 -57.7:TT 100 57.7:TT 0 115.47:TT -100 57.7:TT -100 -57.7:TT 0 -115.47:WW") 
45 geompy.addToStudy(Sketcher_1, "Sketcher_1")
46 Face_1 = geompy.MakeFace(Sketcher_1, 1)
47 geompy.addToStudy(Face_1, "Face_1")
48
49 #Line creation
50 print "Line  creation..."
51 Line_1 = geompy.MakeLineTwoPnt(geompy.MakeVertex(0,0,0), geompy.MakeVertex(0,0,100))
52 geompy.addToStudy(Line_1, "Line_1")
53
54 #Prism creation
55 print "Prism creation..."
56 Prism_1 = geompy.MakePrismVecH(Face_1, Line_1, 100)
57 geompy.addToStudy(Prism_1, "Prism_1")
58
59 #Sketcher_2 creation
60 print "Sketcher creation..."
61 Sketcher_2 = geompy.MakeSketcher("Sketcher:F 50 0:TT 80 0:TT 112 13:TT 112 48:TT 80 63:TT 80 90:TT 50 90:WW", [0,0,0, 1,0,0, 0,1,0]) 
62 geompy.addToStudy(Sketcher_2, "Sketcher_2")
63 Face_2 = geompy.MakeFace(Sketcher_2, 1)
64 geompy.addToStudy(Face_2, "Face_2")
65
66 #Revolution creation
67 print "Revolution creation..."
68 Revolution_1 = geompy.MakeRevolution(Face_2, Line_1, 2*math.pi)
69 geompy.addToStudy(Revolution_1, "Revolution_1")
70
71 #Common applying
72 print "Common of Revolution and Prism..."
73 Common_1 = geompy.MakeBoolean(Revolution_1, Prism_1, 1)
74 geompy.addToStudy(Common_1, "Common_1")
75
76 #Explode Common_1 on edges
77 CommonExplodedListEdges = geompy.SubShapeAll(Common_1, geompy.ShapeType["EDGE"])
78 for i in range(0, len(CommonExplodedListEdges)):
79     name = "Edge_"+str(i+1)
80     geompy.addToStudyInFather(Common_1, CommonExplodedListEdges[i], name)
81
82 #Fillet applying
83 print "Fillet creation..."
84 Fillet_1 = geompy.MakeFillet(Common_1, 10, geompy.ShapeType["EDGE"], [5])
85 geompy.addToStudy(Fillet_1, "Fillet_1")
86
87 #Chamfer applying
88 print "Chamfer creation..."
89 Chamfer_1 = geompy.MakeChamferEdge(Fillet_1, 10, 10, 16, 50 )
90 geompy.addToStudy(Chamfer_1, "Chamfer_1")
91 Chamfer_2 = geompy.MakeChamferEdge(Chamfer_1, 10, 10, 21, 31 )
92 geompy.addToStudy(Chamfer_2, "Chamfer_2")
93
94 #Import of the shape from "slots.brep"
95 print "Import multi-rotation from the DATA_DIR/Shapes/Brep/slots.brep"
96 thePath = os.getenv("DATA_DIR")
97 theFileName = os.path.join( thePath,"Shapes","Brep","slots.brep")
98 theShapeForCut = geompy.ImportBREP(theFileName)
99 geompy.addToStudy(theShapeForCut, "slot.brep_1")
100
101 #Cut applying
102 print "Cut..."
103 Cut_1 = geompy.MakeBoolean(Chamfer_2, theShapeForCut, 2)
104 Cut_1_ID = geompy.addToStudy(Cut_1, "Cut_1")
105
106 #Mesh creation
107
108 # -- Init --
109 shape_mesh = salome.IDToObject( Cut_1_ID )
110
111 mesh = smesh.Mesh(shape_mesh, "Nut")
112
113 #HYPOTHESIS CREATION
114 print "-------------------------- Average length"
115 theAverageLength = 5
116 algoReg1D = mesh.Segment()
117 hAvLength = algoReg1D.LocalLength(theAverageLength)
118 print hAvLength.GetName()
119 print hAvLength.GetId()
120 print hAvLength.GetLength()
121 smesh.SetName(hAvLength, "AverageLength_"+str(theAverageLength))
122
123 print "-------------------------- MaxElementArea"
124 theMaxElementArea = 20
125 algoMef = mesh.Triangle(smeshBuilder.MEFISTO)
126 hArea = algoMef.MaxElementArea( theMaxElementArea )
127 print hArea.GetName()
128 print hArea.GetId()
129 print hArea.GetMaxElementArea()
130 smesh.SetName(hArea, "MaxElementArea_"+str(theMaxElementArea))
131
132 print "-------------------------- MaxElementVolume"
133 theMaxElementVolume = 150
134 algoNg = mesh.Tetrahedron(smeshBuilder.NETGEN)
135 hVolume = algoNg.MaxElementVolume( theMaxElementVolume )
136 print hVolume.GetName()
137 print hVolume.GetId()
138 print hVolume.GetMaxElementVolume()
139 smesh.SetName(hVolume, "MaxElementVolume_"+str(theMaxElementVolume))
140
141
142 print "-------------------------- compute the mesh of the mechanic piece"
143 mesh.Compute()
144
145 print "Information about the Nut:"
146 print "Number of nodes       : ", mesh.NbNodes()
147 print "Number of edges       : ", mesh.NbEdges()
148 print "Number of faces       : ", mesh.NbFaces()
149 print "Number of triangles   : ", mesh.NbTriangles()
150 print "Number of quadrangles : ", mesh.NbQuadrangles()
151 print "Number of volumes     : ", mesh.NbVolumes()
152 print "Number of tetrahedrons: ", mesh.NbTetras()
153
154 salome.sg.updateObjBrowser(1)