]> SALOME platform Git repositories - modules/paravis.git/blob - test/VisuPrs/Plot3D/G2.py
Salome HOME
Porting to python3
[modules/paravis.git] / test / VisuPrs / Plot3D / G2.py
1 # Copyright (C) 2010-2016  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/Plot3D/G2 case
21 # Create Plot 3D for field of the the given MED file for 10 timestamps%
22
23 import sys
24 from paravistest import datadir, pictureext, get_picture_dir
25 from presentations import *
26 from pvsimple import *
27
28 picturedir = get_picture_dir("Plot3D/G2")
29
30 theFileName = datadir +  "Bug829_resu_mode.med"
31 print(" --------------------------------- ")
32 print("file ", theFileName)
33 print(" --------------------------------- ")
34
35
36 #print "Import %s..." % theFileName.split('/')[-1],
37 result = OpenDataFile(theFileName)
38 aProxy = GetActiveSource()
39 if aProxy is None:
40         raise RuntimeError("Error: can't import file.")
41 else: print("OK")
42 # Get viewScalarMap
43 aView = GetRenderView()
44
45 aFieldEntity = EntityType.NODE
46 aFieldName = "MODES___DEPL____________________"
47
48 #create Plot 3D presentations for 10 timestamps
49 for i in range(1,11):
50     hide_all(aView, True)
51     aPrs = Plot3DOnField(aProxy, aFieldEntity,aFieldName , i)
52     if aPrs is None:
53         raise RuntimeError("Presentation is None!!!")
54     #display only current scalar map
55     aPrs.Visibility=1
56     reset_view(aView)
57     Render(aView)
58
59     # Add path separator to the end of picture path if necessery
60     if not picturedir.endswith(os.sep):
61             picturedir += os.sep
62     prs_type = PrsTypeEnum.PLOT3D
63
64     # Get name of presentation type
65     prs_name = PrsTypeEnum.get_name(prs_type)
66     f_prs_type = prs_name.replace(' ', '').upper()
67     # Construct image file name
68     pic_name = picturedir + aFieldName + "_" + str(i) + "_" + f_prs_type + "." + pictureext
69
70     # Show and record the presentation
71     process_prs_for_test(aPrs, aView, pic_name)
72
73