Salome HOME
correct previous integration (Porting to Python 2.6)
[modules/visu.git] / src / VISU_SWIG / visu_big_table.py
1 #  -*- coding: iso-8859-1 -*-
2 #  Copyright (C) 2007-2008  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.
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 #  VISU VISU_SWIG : binding of C++ implementation and Python
24 #  File   : visu_big_table.py
25 #  Author : Vadim SANDLER
26 #  Module : VISU
27 #  $Header$
28 #
29 import salome
30 import math
31 import SALOMEDS
32 import VISU
33
34 # >>> Getting study builder ==================================================
35 myStudy = salome.myStudy
36 myBuilder = myStudy.NewBuilder()
37
38 # >>> Getting (loading) VISU component =======================================
39 myVisu = salome.lcc.FindOrLoadComponent("FactoryServer", "VISU")
40 myComponent = myStudy.FindComponent("VISU")
41 myVisu.SetCurrentStudy(myStudy)
42 if not myComponent:
43    myComponent = myBuilder.NewComponent("VISU")
44    aName = myBuilder.FindOrCreateAttribute(myComponent, "AttributeName")
45    #aName.SetValue("Visu")
46    aName.SetValue( salome.sg.getComponentUserName("VISU") )
47    
48    A2 = myBuilder.FindOrCreateAttribute(myComponent, "AttributePixMap");
49    aPixmap = A2._narrow(SALOMEDS.AttributePixMap);
50    aPixmap.SetPixMap( "ICON_OBJBROWSER_Visu" );
51    
52    myBuilder.DefineComponentInstance(myComponent,myVisu)
53
54 # >>> Creating object with Table of real[ 200 * 20 ] ========================
55 myTRealObject = myBuilder.NewObject(myComponent)
56 AName = myBuilder.FindOrCreateAttribute(myTRealObject, "AttributeName")
57 AName.SetValue("Table Of Real")
58 ARealTable = myBuilder.FindOrCreateAttribute(myTRealObject, "AttributeTableOfReal")
59 myHorNb = 10
60 myVerNb = 200
61
62 k={}
63 for j in range(0,myHorNb):
64    k[j] = j*10+1
65 ARealTable.AddRow(k.values())
66 ARealTable.SetRowTitle(1, "Frequency")
67 ARealTable.SetRowUnit(1, "Hz")
68
69 for i in range(1,myVerNb+1):
70    for j in range(0,myHorNb):
71       if j % 2 == 1:
72          k[j] = math.log10(j*30*math.pi/180) * 20 + i * 15 + j*5
73       else:
74          k[j] = math.sin(j*30*math.pi/180) * 20 + i * 15 + j*5 
75    ARealTable.AddRow(k.values())
76    ARealTable.SetRowTitle(i+1, "Power " + str(i))
77    ARealTable.SetRowUnit(i+1, "Wt")
78 ARealTable.SetTitle("Very useful data")
79
80 # >>> Create Visu table
81 myVisuTableReal = myVisu.CreateTable( myTRealObject.GetID() )
82
83 # >>> Create container and insert curves
84 myContainer = myVisu.CreateContainer()
85
86 # >>> Create curves
87 for i in range(1,myVerNb+1):
88    myCurve = myVisu.CreateCurve( myVisuTableReal, 1, i+1 )
89    myContainer.AddCurve(myCurve)
90
91 # >>> Updating Object Browser ================================================
92 salome.sg.updateObjBrowser(1)
93
94 # ============================================================================