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