Salome HOME
Merge branch V7_3_1_BR
[modules/paravis.git] / test / VisuPrs / bugs / D5.py
1 # Copyright (C) 2010-2014  CEA/DEN, EDF R&D
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 from paravistest import tablesdir
21 from presentations import *
22 import paravis
23 import pvsimple
24
25 # Import table from file
26 print 'Import file with tables....',
27 file_path = tablesdir + "tables_test.xls"
28 table_reader = pvsimple.TableReader(FileName=file_path)
29
30 if table_reader is None:
31     print "FAILED"
32 else:
33     table_reader.UpdatePipeline()
34     print "OK"
35
36 # Display
37 table_to_3d = pvsimple.TableTo3D(table_reader)
38 prs = pvsimple.Show()
39 #prs.ColorArrayName = 'Table'
40
41 available_tables = table_reader.GetPropertyValue("AvailableTables")
42 tables_count = len(available_tables)
43 for table_nb in range(0, tables_count):
44     table_reader.TableNumber = table_nb
45
46     field_name = 'Table'
47     vector_mode = 'Magnitude'
48     nb_components = 1
49     
50     # Get lookup table
51     lookup_table = get_lookup_table(field_name, nb_components, vector_mode)
52     lookup_table.LockScalarRange = 0
53
54     # Set properties
55     prs.ColorAttributeType = EntityType.get_pvtype(EntityType.NODE)
56     prs.ColorArrayName = field_name
57     prs.LookupTable = lookup_table
58
59     # Add scalar bar
60     bar = add_scalar_bar(available_tables[table_nb], nb_components, vector_mode,
61                          lookup_table, "")
62  
63     reset_view()
64     pvsimple.Delete(bar)