1 # Copyright (C) 2010-2016 CEA/DEN, EDF R&D
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.
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.
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
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 # This case corresponds to: /visu/dump_study/A5 case
22 from paravistest import datadir, delete_with_inputs
23 from presentations import *
24 from pvsimple import *
26 settings = {"Offset": [0.0001, 0.0002, 0], "ScalarMode": ("Component", 2), "Position": [0.1, 0.2], "Size": [0.15, 0.25], "Discretize": 1, "NbColors": 44, "NbLabels": 22, "Title": "My presentation", "UseLogScale": 1, "Orientation": 'Horizontal', "ScaleFactor": 0.25, "NbContours": 4}
28 # 1. TimeStamps.med import
29 file_path = datadir + "fra.med"
30 OpenDataFile(file_path)
31 med_reader = GetActiveSource()
32 if med_reader is None :
33 raise RuntimeError, "TimeStamps.med wasn't imported..."
38 plot3d = Plot3DOnField(med_reader, EntityType.NODE, med_field, 1, is_contour=True)
41 plot3d.Position = settings["Offset"]
42 plot3d.LookupTable.VectorMode = settings["ScalarMode"][0]
43 plot3d.LookupTable.VectorComponent = settings["ScalarMode"][1]
44 plot3d.LookupTable.Discretize = settings["Discretize"]
45 plot3d.LookupTable.NumberOfTableValues = settings["NbColors"]
46 plot3d.LookupTable.UseLogScale = settings["UseLogScale"]
48 slice_filter = plot3d.Input.Input.Input.Input
49 normal = get_normal_by_orientation(Orientation.ZX, radians(22), radians(33))
50 bounds = get_bounds(med_reader)
51 pos = get_positions(1, normal, bounds, 0.11)
52 slice_filter.SliceType.Normal = normal
53 slice_filter.SliceOffsetValues = pos
55 plot3d.Input.Input.ScaleFactor = settings["ScaleFactor"]
57 contour_filter = plot3d.Input
58 rgb_points = plot3d.LookupTable.RGBPoints
59 scalar_range = [rgb_points[0], rgb_points[4]]
60 surfaces = get_contours(scalar_range, settings["NbContours"])
61 contour_filter.Isosurfaces = surfaces
64 bar.Position = settings["Position"]
65 bar.Position2 = settings["Size"]
66 bar.NumberOfLabels = settings["NbLabels"]
67 bar.Title = settings["Title"]
68 bar.Orientation = settings["Orientation"]
71 path_to_save = os.path.join(os.getenv("HOME"), "Plot3D.py")
72 SaveTrace( path_to_save )
74 # 4. Delete the created objects, recreate the view
75 delete_with_inputs(plot3d)
76 Delete(GetActiveView())
77 view = CreateRenderView()
79 # 5. Execution of the created script
80 execfile(path_to_save)
82 # 6. Checking of the settings done before dump
83 recreated_bar = view.Representations[0]
84 recreated_plot3d = view.Representations[1]
90 offset = recreated_plot3d.Position
91 for i in range(len(settings["Offset"])):
92 if abs(offset[i] - settings["Offset"][i]) > tolerance:
93 print "ERROR!!! Offset value with ", i, " index is incorrect: ", offset[i], " instead of ", settings["Offset"][i]
97 vector_mode = recreated_plot3d.LookupTable.VectorMode
98 vector_component = recreated_plot3d.LookupTable.VectorComponent
100 if vector_mode != settings["ScalarMode"][0]:
101 print "ERROR!!! Vector mode value is incorrect: ", vector_mode, " instead of ", settings["ScalarMode"][0]
103 if vector_component != settings["ScalarMode"][1]:
104 print "ERROR!!! Vector component value is incorrect: ", vector_component, " instead of ", settings["ScalarMode"][1]
107 # Position of scalar bar
108 pos_x = recreated_bar.Position[0]
109 pos_y = recreated_bar.Position[1]
111 if abs(pos_x - settings["Position"][0]) > tolerance:
112 print "ERROR!!! X coordinate of position of scalar bar is incorrect: ", pos_x, " instead of ", settings["Position"][0]
114 if abs(pos_y - settings["Position"][1]) > tolerance:
115 print "ERROR!!! Y coordinate of position of scalar bar is incorrect: ", pos_y, " instead of ", settings["Position"][1]
119 width = recreated_bar.Position2[0]
120 height = recreated_bar.Position2[1]
122 if abs(width - settings["Size"][0]) > tolerance:
123 print "ERROR!!! Width of scalar bar is incorrect: ", width, " instead of ", settings["Size"][0]
125 if abs(height - settings["Size"][1]) > tolerance:
126 print "ERROR!!! Height of scalar bar is incorrect: ", height, " instead of ", settings["Size"][1]
130 discretize = recreated_plot3d.LookupTable.Discretize
131 if discretize != settings["Discretize"]:
132 print "ERROR!!! Discretize property is incorrect: ", discretize, " instead of ", settings["Discretize"]
136 nb_colors = recreated_plot3d.LookupTable.NumberOfTableValues
137 if nb_colors != settings["NbColors"]:
138 print "ERROR!!! Number of colors of scalar bar is incorrect: ", nb_colors, " instead of ", settings["NbColors"]
142 nb_labels = recreated_bar.NumberOfLabels
143 if nb_labels != settings["NbLabels"]:
144 print "ERROR!!! Number of labels of scalar bar is incorrect: ", nb_labels, " instead of ", settings["NbLabels"]
148 title = recreated_bar.Title
149 if title != settings["Title"]:
150 print "ERROR!!! Title of presentation is incorrect: ", title, " instead of ", settings["Title"]
154 use_log_scale = recreated_plot3d.LookupTable.UseLogScale
155 if use_log_scale != settings["UseLogScale"]:
156 print "ERROR!!! Scaling of presentation is incorrect: ", use_log_scale, " instead of ", settings["UseLogScale"]
160 orientation = recreated_bar.Orientation
161 if orientation != settings["Orientation"]:
162 print "ERROR!!! Orientation of scalar bar is incorrect: ", orientation, " instead of ", settings["Orientation"]
166 scale_factor = recreated_plot3d.Input.Input.ScaleFactor
167 if abs(scale_factor - settings["ScaleFactor"]) > tolerance:
168 print "ERROR!!! Scale factor of presentation is incorrect: ", scale_factor, " instead of ", settings["ScaleFactor"]
172 cur_slice_filter = recreated_plot3d.Input.Input.Input.Input
174 cur_normal = list(cur_slice_filter.SliceType.Normal)
175 if cur_normal != normal:
176 print "ERROR!!! Normal of the cutting plane is incorrect: ", cur_normal, " instead of ", normal
179 cur_pos = list(cur_slice_filter.SliceOffsetValues)
181 print "ERROR!!! Position of the cuttting plane is incorrect: ", cur_pos, " instead of ", pos
185 cur_surfaces = list(recreated_plot3d.Input.Isosurfaces)
186 if cur_surfaces != surfaces:
187 print "ERROR!!! Contours is incorrect: ", cur_surfaces, " instead of ", surfaces
191 raise RuntimeError, "There is(are) some error(s) was(were) found... For more info see ERRORs above..."