1 # -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE
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, or (at your option) any later version.
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.
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
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 # ====================================================================
28 from salome.geom import geomBuilder
29 geompy = geomBuilder.New()
31 import SMESH, SALOMEDS
32 from salome.smesh import smeshBuilder
33 smesh = smeshBuilder.New()
46 base = geompy.MakeVertex(0, 0, 0)
47 direction = geompy.MakeVectorDXDYDZ(0, 0, 1)
49 cylinder = geompy.MakeCylinder(base, direction, radius, height)
51 geompy.addToStudy(cylinder, "Cylinder")
53 # Define a mesh on a geometry
54 # ---------------------------
58 m = smesh.Mesh(cylinder)
63 algo2d = m.Triangle(smeshBuilder.BLSURF)
65 algo2d.SetPhysicalMesh(1)
68 algo2d.SetGeometricMesh(0)
73 algo3d = m.Tetrahedron(smeshBuilder.GHS3DPRL)
75 algo3d.SetMEDName(results)
77 algo3d.SetBackground(False)
78 algo3d.SetKeepFiles(False)
88 if os.access(results+".xml", os.F_OK):
93 # Update object browser
94 # ---------------------
96 salome.sg.updateObjBrowser()