Salome HOME
Update ParaVis non-regression test base in the following ways:
[modules/paravis.git] / test / VisuPrs / bugs / D3.py
1 # Copyright (C) 2010-2015  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/bugs3/D3 case
21
22 from paravistest import datadir
23 from presentations import *
24 import pvsimple
25
26 # 1. Import of the "LinearStaticsSTA9.resu.med" file
27 med_file_path = datadir + "LinearStaticsSTA9.resu.med"
28 pvsimple.OpenDataFile(med_file_path)
29 med_reader = pvsimple.GetActiveSource()
30 if med_reader is None:
31     raise RuntimeError, "LinearStaticsSTA9.resu.med was not imported!!!"
32
33 view = pvsimple.GetRenderView()
34
35 # Creation of colored "DeformedShape" presentations, based on time stamps of "RESU_DEPL" field
36 presentation = DeformedShapeOnField(med_reader, EntityType.NODE, 'RESU____DEPL____________________', 1, is_colored=True)
37 if presentation is None :
38     raise RuntimeError, "DeformedShapeOnField Presentation is None!!!"
39
40 display_only(presentation, view)
41 reset_view(view)
42
43 # Creation of colored "Vectors" presentations, based on time stamps of "RESU_DEPL" field
44 presentation = VectorsOnField(med_reader, EntityType.NODE, 'RESU____DEPL____________________', 1, is_colored=True)
45 if presentation is None :
46     raise RuntimeError, "Vectors Presentation is None!!!"
47
48 display_only(presentation, view)
49 reset_view(view)
50
51 # Creation of colored "DeformedShapeAndScalarMap" presentations, based on time stamps of "RESU_DEPL" field
52 presentation = DeformedShapeAndScalarMapOnField(med_reader, EntityType.NODE, 'RESU____DEPL____________________', 1)
53 if presentation is None :
54     raise RuntimeError, "DeformedShapeAndScalarMap Presentation is None!!!"
55
56 display_only(presentation, view)
57 reset_view(view)
58
59 # Creation of colored "CutPlanes" presentations, based on time stamps of "RESU_DEPL" field
60 presentation = CutPlanesOnField(med_reader, EntityType.NODE, 'RESU____DEPL____________________', 1)
61 if presentation is None :
62     raise RuntimeError, "CutPlanes Presentation is None!!!"
63
64 display_only(presentation, view)
65 reset_view(view)
66
67