Salome HOME
updated copyright message
[plugins/blsurfplugin.git] / tests / sphere.py
1 # -*- coding: utf-8 -*-
2 # Copyright (C) 2014-2023  CEA, EDF
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, or (at your option) any later version.
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 import sys
22 import salome
23
24 salome.salome_init()
25
26 ###
27 ### GEOM component
28 ###
29
30 import GEOM
31 from salome.geom import geomBuilder
32 geompy = geomBuilder.New()
33
34
35 geompy.init_geom()
36
37 sphere = geompy.MakeSphereR(10)
38 geompy.addToStudy( sphere, 'sphere' )
39
40 ###
41 ### SMESH component
42 ###
43
44 import SMESH
45 from salome.smesh import smeshBuilder
46 smesh = smeshBuilder.New()
47
48
49 Mesh_1 = smesh.Mesh(sphere)
50
51 BLSURF_1 = Mesh_1.Triangle(algo=smeshBuilder.MG_CADSurf)
52 BLSURF_Parameters = BLSURF_1.Parameters()
53 BLSURF_Parameters.SetPhySize( 5 )
54 BLSURF_Parameters.SetGeometricMesh( 1 )
55 BLSURF_Parameters.SetAngleMesh( 8 )
56
57 ok = Mesh_1.Compute()
58
59 if not ok:
60     raise Exception("Error when computing surface mesh")
61
62 try:
63     Mesh_1.Tetrahedron(algo=smeshBuilder.MG_Tetra)
64
65     ok = Mesh_1.Compute()
66
67     if not ok:
68         raise Exception("Error when computing volume mesh")
69 except AttributeError:
70     print("Warning: Cannot build volume mesh: MG-Tetra plugin seems to be unavailable")
71
72 if salome.sg.hasDesktop():
73   salome.sg.updateObjBrowser()