]> SALOME platform Git repositories - modules/hexablock.git/blob - doc/test_doc/grid/irregular_cylindrical.py
Salome HOME
Merge from V6_main 01/04/2013
[modules/hexablock.git] / doc / test_doc / grid / irregular_cylindrical.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 ####### Make Irregular Cylindrical Test ########## 
22
23 import hexablock
24
25     
26 doc  = hexablock.addDocument ("cyl:hexas")
27
28 orig = doc.addVertex (0, 0, 0)
29 vz   = doc.addVector (0, 0, 1)
30 vx   = doc.addVector (1 ,0, 0)
31
32
33 tdr = [ 1, 1, 1, 1 ]
34 tda = [ 45, 45,  45, 45,  45, 45,  45, 45 ]
35 tdl = [ 1, 1, 1  ]
36
37 tdr = [ 1, 2, 0.5 ]
38 tda = [ 30, 30, 30, 10, 10, 10,  10, 10, 10,  10, 10, 10,
39         30, 30, 30, 10, 10, 10,  10, 10, 10,  10, 10, 10 ]
40 tdl = [ 1, 2, 3  ]
41
42
43 c1 = doc.makeCylindricals (orig, vx,vz, tdr, tda, tdl, False)
44
45 #####  doc.saveVtk ("cylindricals.vtk")