Salome HOME
Merge from V6_main 01/04/2013
[modules/visu.git] / src / VISU_SWIG / visu_apply_properties_successive.py
1 #  -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
3 #
4 # Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
5 # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 #
7 # This library is free software; you can redistribute it and/or
8 # modify it under the terms of the GNU Lesser General Public
9 # License as published by the Free Software Foundation; either
10 # version 2.1 of the License.
11 #
12 # This library is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 # Lesser General Public License for more details.
16 #
17 # You should have received a copy of the GNU Lesser General Public
18 # License along with this library; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
20 #
21 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 #
23
24 #  VISU VISU_SWIG : binding of C++ implementation and Python
25 #  File   : visu_apply_properties_consecutive.py
26 #  Module : VISU
27 #
28 import os
29 import time
30 import math
31 import VISU
32 import SALOMEDS
33 import salome
34 from visu_gui import *
35
36 aDelay = 0
37
38 myVisu.SetCurrentStudy(salome.myStudy)
39
40 myViewManager = myVisu.GetViewManager();
41
42 myView = myViewManager.Create3DView();
43 myView.SetTitle("The viewer for Animation")
44 print "myViewManager.Create3DView()"
45 time.sleep(aDelay)
46
47 medFile = "TimeStamps.med"
48 myFieldName = "temperature"
49
50 medFile = os.getenv('DATA_DIR') + '/MedFiles/' + medFile
51 myResult = myVisu.ImportFile(medFile)
52
53 anAnim = myVisu.CreateAnimation(myView);
54 anAnim.setAnimationMode(VISU.Animation.SUCCESSIVE)
55     
56 aSObj = myStudy.FindObjectIOR(myResult.GetID())
57 aSObj = aSObj.FindSubObject(1)[1]
58 aSObj = aSObj.FindSubObject(3)[1]
59 aSObj = aSObj.FindSubObject(1)[1]
60 print "addField 1 : ", anAnim.addField(aSObj)
61
62 medFile1 = "TimeStamps.med"
63 myFieldName1 = "pression"
64
65 medFile1 = os.getenv('DATA_DIR') + '/MedFiles/' + medFile1
66 myResult1 = myVisu.ImportFile(medFile1)
67
68 aSObj1 = myStudy.FindObjectIOR(myResult1.GetID())
69 aSObj1 = aSObj1.FindSubObject(1)[1]
70 aSObj1 = aSObj1.FindSubObject(3)[1]
71 aSObj1 = aSObj1.FindSubObject(3)[1]
72 print "addField 2 : ", anAnim.addField(aSObj1)
73
74 print "Generate presentations for ", anAnim.getNbFields(), " fields"
75 for i in range(0,anAnim.getNbFields()):
76     anAnim.setPresentationType(i,VISU.TPLOT3D)
77     anAnim.generatePresentations(i)
78
79 print "Generate frames"
80 anAnim.generateFrames()
81
82 print "Start Animation"
83 anAnim.setSpeed(22)
84 anAnim.startAnimation()
85 myView.FitAll()
86
87 while 1:
88     time.sleep(1+aDelay)
89     if not anAnim.isRunning():
90         anAnim.stopAnimation()
91         break
92
93 anAnim.publishInStudy()
94 anAnim.saveAnimation()
95
96 if anAnim.getAnimationMode() == VISU.Animation.SUCCESSIVE:
97    print "End of succcessive animation for 2 fields with presentation type VISU.Animation.SUCCESSIVE"
98
99 #for i in range(0,anAnim.getNbFields()):
100 aPrs = anAnim.getPresentation(0,0)
101 aPlot3D = aPrs._narrow(VISU.Plot3D)
102
103 if aPlot3D:
104     aNbLabels = aPlot3D.GetLabels()
105     aPlot3D.SetLabels(aNbLabels+3)
106     
107     aWidth = aPlot3D.GetWidth()
108     aHeight = aPlot3D.GetHeight()
109     aPlot3D.SetSize(aWidth+0.07,aHeight+0.07)
110     
111     print "Apply properties for all time stamps of all fields."
112     try:
113         anAnim.ApplyProperties(0,aPlot3D)
114     except SALOME.SALOME_Exception, inst:
115         msg = "SALOME.SALOME_Exception caught, see details:"
116         msg+="\n******* text:\t" + inst.details.text
117         msg+="\n******* type:\t" + str(inst.details.type)
118         msg+="\n******* where:\t" + inst.details.sourceFile + ":" + \
119               str(inst.details.lineNumber)    
120         print msg
121         raise RuntimeError, "There are some errors were occured... For more info see ERRORs above..."
122     
123 print "Generate frames"
124 anAnim.generateFrames()
125
126 print "Start Animation"
127 anAnim.startAnimation()
128 myView.FitAll()
129
130 while 1:
131     time.sleep(1+aDelay)
132     if not anAnim.isRunning():
133         anAnim.stopAnimation()
134         break
135
136 anAnim.publishInStudy()
137 anAnim.saveAnimation()
138
139 anAnim.clearFields()
140 print "The number of fields in animation after clearFields method is", anAnim.getNbFields()
141