Salome HOME
Updated copyright comment
[modules/hexablock.git] / doc / test_doc / pipe / pipe.py
1 # -*- coding: utf-8 -*-
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 ####### Make Pipe Test ########## 
22
23 import hexablock
24         
25 doc  = hexablock.addDocument ("Make Pipe Test")
26
27 # Simple Pipe -----
28
29 nbR = 8
30 nbA = 10
31 nbH = 8
32
33 pipe0 = doc.makePipeTop (nbR, nbA, nbH)
34 pipe0.saveVtk ("makePipeTop.vtk")
35
36 # Uniform Pipe -----
37
38 orig = doc.addVertex (0, 0, 0)
39 vx   = doc.addVector (1, 0, 0)
40 vz   = doc.addVector (0, 0, 1)
41 rint = 1
42 rext = 3
43 angle = 360
44 hauteur = 2
45
46 pipe1 = doc.makePipeUni (orig, vx, vz, rint, rext, angle, hauteur, nbR, nbA, nbH)
47 pipe1.saveVtk ("makePipeUni.vtk");
48    
49
50 # Custom Pipe -----
51
52 origin = doc.addVertex (0, 5, 0)
53 tr = [10, 20, 30, 40]
54 ta = [45, 90, 135, 180, 225]
55 th = [5, 30, 40, 60]
56
57 pipe2 = doc.makePipe(origin, vx, vz, tr, ta, th)
58 pipe2.saveVtk("makePipe.vtk")