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