Salome HOME
Updated copyright comment
[modules/hexablock.git] / src / TEST_PY / test_unit / test_cross.py
1 # -*- coding: latin-1 -*-
2 # Copyright (C) 2009-2024  CEA, EDF
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, or (at your option) any later version.
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
26 #---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8
27
28
29 # ======================================================= test_pipes
30 def test_pipes () :
31
32     doc  = hexablock.addDocument ("default")
33
34     ori1 = doc.addVertex ( 0, 0, 0)
35     ori2 = doc.addVertex (-5, 0, 5)
36     vz   = doc.addVector ( 0, 0, 1)
37     vx   = doc.addVector ( 1 ,0, 0)
38
39     nr1 = 2
40     ni1 = 1
41     nl1 = 10
42     nr2 = 1
43     ni2 = 0.5
44     nl2 = 10
45
46     pipe1 = doc.addPipe   (ori1, vz, ni1, nr1, nl1)
47     pipe2 = doc.addPipe   (ori2, vx, ni2, nr2, nl2)
48     grid  = doc.makePipes (pipe1, pipe2)
49
50     doc.save    ("pipes")
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.8
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 doc = test_croix  ()
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