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