Salome HOME
Further porting: ImportFile is now replaced by OpenDataFile
[modules/paravis.git] / test / VisuPrs / StreamLines / G0.py
1
2 # Copyright (C) 2010-2014  CEA/DEN, EDF R&D
3 #
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
8 #
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 # Lesser General Public License for more details.
13 #
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 #
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #
20
21 # This case corresponds to: /visu/StreamLines/G0 case
22 # StreamTracer filter properties
23
24 from paravistest import datadir
25 from presentations import *
26 import pvserver as paravis
27 import pvsimple
28
29 my_paravis = paravis.myParavis
30
31 # 1. Import MED file
32 file_path = datadir + "new_case.rmed"
33 OpenDataFile(file_path)
34 med_reader = pvsimple.GetActiveSource()
35 if med_reader is None:
36     raise RuntimeError, "new_case.rmed was not imported!!!"
37
38 # 2. Creation of a set of "StreamLines" presentations, based on time stamps of "RESU_DEPL" field
39 streamlines = StreamLinesOnField(med_reader, EntityType.NODE, 'RESU_DEPL', 1)
40 if streamlines is None: 
41     raise RuntimeError, "Presentation is None!!!"
42
43 import time
44 time.sleep(10000)
45