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