Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[modules/smesh.git] / src / SMESH_SWIG / SMESH_box.py
1 #  Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 #
4 #  This library is free software; you can redistribute it and/or
5 #  modify it under the terms of the GNU Lesser General Public
6 #  License as published by the Free Software Foundation; either
7 #  version 2.1 of the License.
8 #
9 #  This library is distributed in the hope that it will be useful,
10 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 #  Lesser General Public License for more details.
13 #
14 #  You should have received a copy of the GNU Lesser General Public
15 #  License along with this library; if not, write to the Free Software
16 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 #
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #
20 #==============================================================================
21 #  Info.
22 #  Bug (from script, bug)   : box.py, PAL5223
23 #  Modified                 : 25/11/2004
24 #  Author                   : Kovaltchuk Alexey
25 #  Project                  : PAL/SALOME
26 #==============================================================================
27 #
28 # Salome geometry and meshing for a box
29 #
30 import salome
31 from salome import sg
32 import geompy
33 import smesh
34
35
36 # ---- launch GEOM
37
38 geom          = salome.lcc.FindOrLoadComponent("FactoryServer", "GEOM")
39
40 ###geom.GetCurrentStudy(salome.myStudy._get_StudyId())
41
42 # Plate
43
44 box    = geompy.MakeBox(0.,0.,0.,1.,1.,1.)
45 boxId  = geompy.addToStudy(box,"box")
46
47 # ---- SMESH
48
49 # ---- init a Mesh
50
51 box_mesh=smesh.Mesh(box, "box_mesh")
52
53 # set Hypothesis and Algorithm
54
55 alg1D = box_mesh.Segment()
56 alg1D.SetName("algo1D")
57 hypL1 = alg1D.LocalLength(0.25)
58 smesh.SetName(hypL1, "LocalLength")
59     
60 alg2D = box_mesh.Quadrangle()
61 alg2D.SetName("algo2D")
62
63 alg3D = box_mesh.Hexahedron()
64 alg3D.SetName("algo3D")
65
66 # compute mesh
67
68 box_mesh.Compute()
69
70 sg.updateObjBrowser(1)