]> SALOME platform Git repositories - modules/paravis.git/blob - test/VisuPrs/DeformedShape/F9.py
Salome HOME
Merge from V6_main 01/04/2013
[modules/paravis.git] / test / VisuPrs / DeformedShape / F9.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/DeformedShape/F9 case
21 # Create Deformed Shape 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 import paravis
28
29 # Create presentations
30 myParavis = paravis.myParavis
31
32 picturedir = get_picture_dir(sys.argv[1], "DeformedShape/F9")
33
34 theFileName = datadir +  "Bug829_resu_mode.med"
35 print " --------------------------------- "
36 print "file ", theFileName
37 print " --------------------------------- "
38
39 """Build presentations of the given types for all fields of the given file."""
40 #print "Import %s..." % theFileName.split('/')[-1],
41 result = myParavis.ImportFile(theFileName)
42 aProxy = GetActiveSource()
43 if aProxy is None:
44         raise RuntimeError, "Error: can't import file."
45 else: print "OK"
46 # Get view
47 aView = GetRenderView()
48
49 # Create required presentations for the proxy
50 # CreatePrsForProxy(aProxy, aView, thePrsTypeList, thePictureDir, thePictureExt, theIsAutoDelete)
51 aFieldNames = aProxy.PointArrays.GetData()
52 aNbOnNodes = len(aFieldNames)
53 aFieldNames.extend(aProxy.CellArrays.GetData())
54 aTimeStamps = aProxy.TimestepValues.GetData()
55 aFieldEntity = EntityType.NODE
56 aFieldName = "MODES_DEPL"
57
58 #Creation of a set of non-colored and then colored Deformed Shapes, based on time stamps of MODES_DEP field
59 for colored in [False,True]:
60     colored_str = "_non-colored"
61     if colored:
62         colored_str = "_colored"
63     for i in range(1,11):
64         hide_all(aView, True)
65         aPrs = DeformedShapeOnField(aProxy, aFieldEntity, aFieldName, i, is_colored=colored)    
66         if aPrs is None:
67             raise RuntimeError, "Presentation is None!!!"
68         # display only current deformed shape
69         #display_only(aView,aPrs)
70         aPrs.Visibility =1      
71
72         reset_view(aView)
73         Render(aView)
74         # Add path separator to the end of picture path if necessery
75         if not picturedir.endswith(os.sep):
76                 picturedir += os.sep
77         prs_type = PrsTypeEnum.DEFORMEDSHAPE
78                 
79         # Get name of presentation type
80         prs_name = PrsTypeEnum.get_name(prs_type)    
81         f_prs_type = prs_name.replace(' ', '').upper()
82         # Construct image file name
83         pic_name = picturedir + aFieldName+colored_str + "_" + str(i) + "_" + f_prs_type + "." + pictureext
84
85         # Show and record the presentation
86         process_prs_for_test(aPrs, aView, pic_name)