Salome HOME
Updated copyright comment
[modules/hexablock.git] / doc / test_doc / quadRevolution / revolution_quad.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 #### Quad Revolution Test #####
22
23 import hexablock
24
25
26 doc = hexablock.addDocument("Quad Revolution Test")
27
28 center = doc.addVertex(0, 0, 0)
29 vz     = doc.addVector(0, 0, 1)
30
31 v1     = doc.addVertex (10, 0, 0)
32 v2     = doc.addVertex (11, 0, 0)
33 v3     = doc.addVertex (11, 0, 2)
34 v4     = doc.addVertex (10, 0, 2)
35 quad   = doc.addQuadVertices (v1, v2, v3, v4)
36 doc.saveVtk("revolution1.vtk")
37
38 angle = 180
39 nbLayers = 8
40 grid0 = doc.revolutionQuadUni  (quad, center, vz, angle, nbLayers)
41 doc.saveVtk ("revolution2.vtk")
42
43 nr = 1
44 na = 6
45 nl = 1
46
47 grid = doc.makeCylinderTop (nr,na,nl)
48
49 liste = []
50 for nx in range(nr):
51     for ny in range(na):
52         cell = grid.getQuadIJ (nx, ny, nl)
53         liste.append(cell)
54
55 center = doc.addVertex(0, -10, 0)
56 axis = doc.addVector (1, 0, 0)
57 angle = 180
58 nbLayers = 9
59 grid1 = doc.revolutionQuadsUni  (liste, center, axis, angle, nbLayers)
60 if grid1.isValid():
61     doc.saveVtk ("revolution3.vtk")