Salome HOME
Merge from V6_main 13/12/2012
[modules/hexablock.git] / src / TEST_PY / test_unit / test_cross.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_pipes
31 def test_pipes () :
32
33     doc  = hexablock.addDocument ("default")
34
35     ori1 = doc.addVertex ( 0, 0, 0)
36     ori2 = doc.addVertex (-5, 0, 5)
37     vz   = doc.addVector ( 0, 0, 1)
38     vx   = doc.addVector ( 1 ,0, 0)
39
40     nr1 = 2
41     ni1 = 1
42     nl1 = 10
43     nr2 = 1
44     ni2 = 0.5
45     nl2 = 10
46
47     pipe1 = doc.addPipe   (ori1, vz, ni1, nr1, nl1)
48     pipe2 = doc.addPipe   (ori2, vx, ni2, nr2, nl2)
49     grid  = doc.makePipes (pipe1, pipe2)
50
51     doc.save    ("pipes")
52     doc.saveVtk ("pipes.vtk")
53     return doc
54
55
56 # ======================================================= test_croix
57 def test_croix () :
58
59     doc  = hexablock.addDocument ("default")
60
61     ori1 = doc.addVertex ( 0, 0, 0)
62     ori2 = doc.addVertex (-5, 0, 5)
63     vz   = doc.addVector ( 0, 0, 1)
64     vx   = doc.addVector ( 1 ,0, 0)
65
66     nr1 = 2
67     nl1 = 10
68     nr2 = 1
69     nl2 = 10
70
71     cyl1 = doc.addCylinder (ori1, vz, nr1, nl1)
72     cyl2 = doc.addCylinder (ori2, vx, nr2, nl2)
73     grid = doc.makeCylinders (cyl1, cyl2)
74     ###  grid = doc.makePipes (cyl1, cyl2)
75
76     doc.saveVtk ("croix.vtk")
77     return doc
78
79 # ================================================================= Begin
80
81 doc = test_pipes  ()
82 doc.setLevel (747)
83
84 law = doc.addLaw("Uniform", 4)
85
86 for j in range(doc.countPropagation()):
87     propa = doc.getPropagation(j)
88     propa.setLaw(law) 
89
90 mesh_hexas = hexablock.mesh (doc, "maillage:hexas")
91