Salome HOME
Merge Python 3 porting.
[modules/gui.git] / src / SALOME_SWIG / test_big_table.py
1 #  -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
3 #
4 # Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
5 # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 #
7 # This library is free software; you can redistribute it and/or
8 # modify it under the terms of the GNU Lesser General Public
9 # License as published by the Free Software Foundation; either
10 # version 2.1 of the License, or (at your option) any later version.
11 #
12 # This library is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 # Lesser General Public License for more details.
16 #
17 # You should have received a copy of the GNU Lesser General Public
18 # License along with this library; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
20 #
21 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 #
23
24 # File   : test_big_table.py
25 # Author : Vadim SANDLER, Open CASCADE S.A.S. (vadim.sandler@opencascade.com)
26 #
27 import salome
28 import math
29 import SALOMEDS
30
31 # >>> Getting study builder ==================================================
32 myStudy = salome.myStudy
33 myBuilder = myStudy.NewBuilder()
34
35 # >>> Creating virtual component =============================================
36 myComponent = myStudy.FindComponent("VirtualComponent")
37 if not myComponent:
38    myComponent = myBuilder.NewComponent("VirtualComponent")
39    aName = myBuilder.FindOrCreateAttribute(myComponent, "AttributeName")
40    aName.SetValue("VirtualComponent")
41
42 # >>> Creating object with Table of real[ 200 * 20 ] ========================
43 myTRealObject = myBuilder.NewObject(myComponent)
44 AName = myBuilder.FindOrCreateAttribute(myTRealObject, "AttributeName")
45 AName.SetValue("Table Of Real")
46 ARealTable = myBuilder.FindOrCreateAttribute(myTRealObject, "AttributeTableOfReal")
47 myHorNb = 10
48 myVerNb = 200
49
50 k={}
51 for j in range(0,myHorNb):
52    k[j] = j*10+1
53 ARealTable.AddRow(list(k.values()))
54 ARealTable.SetRowTitle(1, "Frequency")
55 ARealTable.SetRowUnit(1, "Hz")
56
57 for i in range(1,myVerNb+1):
58    for j in range(0,myHorNb):
59       if j % 2 == 1:
60          k[j] = math.log10(j*30*math.pi/180) * 20 + i * 15 + j*5
61       else:
62          k[j] = math.sin(j*30*math.pi/180) * 20 + i * 15 + j*5 
63    ARealTable.AddRow(list(k.values()))
64    ARealTable.SetRowTitle(i+1, "Power " + str(i))
65    ARealTable.SetRowUnit(i+1, "Wt")
66 ARealTable.SetTitle("Very useful data")
67
68 # >>> Updating Object Browser ================================================
69 salome.sg.updateObjBrowser()
70
71 # ============================================================================