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