Salome HOME
cc0dca77770436961fcec256114fa76cbaba368b
[modules/hexablock.git] / src / TEST_PY / test_unit / test_sphere.py
1 # -*- coding: latin-1 -*-
2 # Copyright (C) 2009-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 # Hexa : Creation d'hexaedres 
22
23 import hexablock
24 import os
25
26 #---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8
27
28
29 # ======================================================= test_sphere
30 def test_sphere () :
31
32     doc  = hexablock.addDocument ("rind")
33
34     center   = doc.addVertex (0,0,0)
35     radius   = 1
36     ncouches = 1
37     k        = 1
38
39     doc.makeSpherical (center, radius, ncouches, k)
40     doc.saveVtk ("Sphere.vtk")
41     return doc
42
43 # ================================================================= Begin
44
45 doc = test_sphere  ()
46
47 law = doc.addLaw("Uniform", 4)
48
49 for j in range(doc.countPropagation()):
50     propa = doc.getPropagation(j)
51     propa.setLaw(law) 
52
53 mesh_hexas = hexablock.mesh(doc)
54
55