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