Salome HOME
Merge from V6_main_20120808 08Aug12
[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.saveVtk ("pipes.vtk")
52     return doc
53
54
55 # ======================================================= test_croix
56 def test_croix () :
57
58     doc  = hexablock.addDocument ("default")
59
60     ori1 = doc.addVertex ( 0, 0, 0)
61     ori2 = doc.addVertex (-5, 0, 5)
62     vz   = doc.addVector ( 0, 0, 1)
63     vx   = doc.addVector ( 1 ,0, 0)
64
65     nr1 = 2
66     nl1 = 10
67     nr2 = 1
68     nl2 = 10
69
70     cyl1 = doc.addCylinder (ori1, vz, nr1, nl1)
71     cyl2 = doc.addCylinder (ori2, vx, nr2, nl2)
72     grid = doc.makeCylinders (cyl1, cyl2)
73     ###  grid = doc.makePipes (cyl1, cyl2)
74
75     doc.saveVtk ("croix.vtk")
76     return doc
77
78 # ================================================================= Begin
79
80 doc = test_pipes  ()
81
82 law = doc.addLaw("Uniform", 4)
83
84 for j in range(doc.countPropagation()):
85     propa = doc.getPropagation(j)
86     propa.setLaw(law) 
87
88 mesh_hexas = hexablock.mesh(doc, "maillage:hexas")
89