Salome HOME
Porting to ParaView-4.1.0
[modules/paravis.git] / test / VisuPrs / bugs / C4.py
1 # Copyright (C) 2010-2013  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.
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/bugs2/C4 case
21
22 import sys
23 import os
24 from paravistest import datadir, pictureext, get_picture_dir
25 from presentations import *
26 import paravis
27 import pvsimple
28
29 my_paravis = paravis.myParavis
30 os.environ["PARAVIS_TEST_PICS"] = sys.argv[1]
31 picturedir = get_picture_dir("bugs/C4")
32
33 # 1. Import MED file
34 med_file_path = datadir + "forma01f.resu.med"
35
36 print 'Importing "forma01f.resu.med"....',
37 my_paravis.ImportFile(med_file_path)
38 med_reader = pvsimple.GetActiveSource()
39
40 if med_reader is None:
41     print "FAILED"
42 else:
43     print "OK"
44
45 # 2. Creation of ScalarMap On DeformedShape presentation
46 scales=[None, 0, 1e-05]
47 fields=["RESU1_DEPL", "RESU1_SIGM_ELNO_DEPL"]
48 entities=[EntityType.NODE, EntityType.CELL]
49 entities_str=["NODE", "CELL"]
50
51 view = pvsimple.GetRenderView()
52
53 for scale in scales:
54     for i in range(len(fields)):
55         print "Field: ", fields[i], "; Scale: ", scale
56         presentation = None
57         try:
58             presentation = DeformedShapeAndScalarMapOnField(med_reader, entities[i], fields[i], 1)
59         except ValueError as e:
60             print "Error:", e
61         
62         if presentation is not None:
63             if scale is not None:
64                 presentation.Input.ScaleFactor = scale
65             # save picture
66             pic_path = os.path.join(picturedir, "MAIL_" + entities_str[i] + "_" + fields[i] + "_" + str(scale) + "_." + pictureext)
67             process_prs_for_test(presentation, view, pic_path)
68         else:
69             print "FAILED! Created presentation is None!!!"
70