Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/hexablock.git] / src / TEST_PY / test_unit / test_cylinders.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_cylindricals
31 def test_cylindricals () :
32
33     doc  = hexablock.addDocument ("rind:hexas")
34
35     orig = doc.addVertex (0, 0, 0)
36     vz   = doc.addVector (0, 0, 1)
37     vx   = doc.addVector (1 ,0, 0)
38
39
40     tdr = [ 1, 2, 0.5 ]
41     tda = [ 30, 30, 30, 10, 10, 10,  10, 10, 10,  10, 10, 10, 
42             30, 30, 30, 10, 10, 10,  10, 10, 10,  10, 10, 10 ]
43     tdl = [ 1, 2, 3  ]
44
45     tdr = [ 1, 1, 1, 1 ]
46     tda = [ 45, 45,  45, 45,  45, 45,  45, 45 ]
47     tdl = [ 1, 1, 1  ]
48
49
50     c1 = doc.makeCylindricals (orig, vx,vz, tdr, tda, tdl, False)
51     ## c1 = doc.makeCylindrical (orig, vx,vz, 1.0, 360.0, 1.0, 3, 8, 3, False)
52
53
54     doc.saveVtk ("cylindricals.vtk")
55     return doc
56
57 # ================================================================= Begin
58
59 doc = test_cylindricals  ()
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
69