Salome HOME
Merge from agy/feedbackads140304
[modules/paravis.git] / test / VisuPrs / StreamLines / F9.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 # This case corresponds to: /visu/StreamLines/F9 case
21
22 import sys
23
24 from paravistest import datadir, pictureext, get_picture_dir
25 from presentations import StreamLinesOnField, EntityType, \
26      reset_view, process_prs_for_test
27 import paravis
28 import pvsimple
29
30
31 my_paravis = paravis.myParavis
32
33 # Directory for saving snapshots
34 picturedir = get_picture_dir("StreamLines/F9")
35
36 # Import of the "Bug829_resu_mode.med" file
37 file_path = datadir + "Bug829_resu_mode.med"
38
39 my_paravis.ImportFile(file_path)
40 med_reader = pvsimple.GetActiveSource()
41
42 if med_reader is None:
43     raise RuntimeError("Bug829_resu_mode.med was not imported!!!")
44
45 # Get view
46 view = pvsimple.GetRenderView()
47
48 # Create a set of Stream Lines, based on time stamps of "MODES_DEPL" field
49 print "BREAKPOINT_1"
50
51 for i in range(1, 11):
52     prs = StreamLinesOnField(med_reader, EntityType.NODE, "MODES_DEPL", i)
53     if prs is None:
54         raise RuntimeError("Presentation on timestamp {0} is None!!!".
55                            format(i))
56
57     picture_path = picturedir + "/" + "time_stamp_" + str(i) + "." + pictureext
58     process_prs_for_test(prs, view, picture_path)
59
60 print "BREAKPOINT_2"