Salome HOME
Bug IPAL22931: TC6.5.0: check script visu_table for possible error
[modules/visu.git] / src / VISU_SWIG / VISU_Example_03.py
1 #  -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2007-2012  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 # Animation of "vitesse" field, stored in file TimeStamps.med
25 # This script is equivalent to non-regression test script 003/A5
26 #
27 import salome
28 import visu_gui
29 import SALOMEDS
30 import VISU
31 import os
32 import time
33
34 medFile = os.getenv("DATA_DIR") + "/MedFiles/TimeStamps.med"
35
36 print 'Importing "TimeStamps.med"................',
37 myVisu = visu_gui.myVisu
38 myVisu.SetCurrentStudy(salome.myStudy)
39 myResult = myVisu.ImportFile(medFile)
40 if myResult is None : print "Error"
41 else : print "OK"
42
43 print "Creating Cut Lines........................",
44 medMesh = 'dom'
45 medField = "vitesse"
46 aCutLines = myVisu.CutLinesOnField(myResult,'dom',VISU.NODE,medField,1)
47 aCutLines.SetOrientation(VISU.CutPlanes.XY, 0, 0)
48 aCutLines.SetOrientation2(VISU.CutPlanes.ZX, 0, 0)
49 aCutLines.SetNbLines(20)
50 if aCutLines is None : print "Error"
51 else : print "OK"
52
53 print "Creating a Viewer.........................",
54 myViewManager = myVisu.GetViewManager();
55 myView = myViewManager.Create3DView();
56 if myView is None : print "Error"
57 else : print "OK"
58 myView.Display(aCutLines);
59 myView.FitAll();
60
61 aCutLinesSObj = salome.myStudy.FindObjectIOR(aCutLines.GetID())
62 aFather = aCutLinesSObj.GetFather().GetFather();
63
64 print "Creating an Animation.....................",
65 myAnim = myVisu.CreateAnimation(myView); 
66 if myAnim is None : print "Error"
67 else : print "OK"
68
69 print "Animation.................................",
70 myAnim.addField(aFather);
71 myAnim.generatePresentations(0);
72 myAnim.generateFrames();
73 myAnim.setSpeed(33)
74 myAnim.startAnimation();
75
76 myView.FitAll()
77 while 1:
78     time.sleep(1)
79     if not myAnim.isRunning():
80         myAnim.stopAnimation()
81         break
82
83 print "OK"