Salome HOME
Merge from V6_main 13/12/2012
[modules/hexablock.git] / src / TEST_PY / test_unit / test_carre.py
1 # -*- coding: latin-1 -*-
2 # Copyright (C) 2009-2012  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_croix
31 def test_croix () :
32
33     nom  = "test_croix"
34     doc  = hexablock.addDocument(nom)
35     doc.setLevel (1)
36     nvtk = 0
37
38     ori = doc.addVertex ( 0, 0, 0)
39     vz  = doc.addVector ( 0, 0, 1)
40     vx  = doc.addVector ( 1 ,0, 0)
41
42     dr    = 1.0
43     angle = 360.0
44     dl    = 1.0
45
46     nr = 1
47     na = 4
48     nl = 5
49     fill = True
50
51     grid = doc.makeCylindrical (ori, vx, vz, dr, angle, dl, nr, na, nl, fill)
52
53     doc.saveVtk ("carre.vtk")
54     return doc
55
56 # ================================================================= Begin
57
58 doc = test_croix  ()
59 ###  doc = test_pipes  ()
60
61 law = doc.addLaw("Uniform", 4)
62
63 for j in range(doc.countPropagation()):
64     propa = doc.getPropagation(j)
65     propa.setLaw(law) 
66
67 mesh_hexas = hexablock.mesh(doc)
68 muv, mue, muq, muh = hexablock.dump(doc, mesh_hexas)