Salome HOME
Merge from V5_1_main 14/05/2010
[modules/visu.git] / src / VISU_SWIG / visu_evolution.py
1 #  -*- coding: iso-8859-1 -*-
2 #  Copyright (C) 2007-2010  CEA/DEN, EDF R&D, OPEN CASCADE
3 #
4 #  This library is free software; you can redistribute it and/or
5 #  modify it under the terms of the GNU Lesser General Public
6 #  License as published by the Free Software Foundation; either
7 #  version 2.1 of the License.
8 #
9 #  This library is distributed in the hope that it will be useful,
10 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 #  Lesser General Public License for more details.
13 #
14 #  You should have received a copy of the GNU Lesser General Public
15 #  License along with this library; if not, write to the Free Software
16 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 #
18 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #
20
21 #  VISU VISU_SWIG : binding of C++ implementation and Python
22 #  File   : visu_evolution.py
23 #  Module : VISU
24 #
25 import os
26 import VISU
27 from visu_gui import *
28
29 myVisu.SetCurrentStudy(salome.myStudy)
30 myViewManager = myVisu.GetViewManager();
31
32 myView = myViewManager.CreateXYPlot();
33 myView.SetTitle("The viewer for Evolution")
34 print "myViewManager.CreateXYPlot()"
35
36 medFile = "TimeStamps.med"
37 medFile = os.getenv('DATA_DIR') + '/MedFiles/' + medFile
38 myResult = myVisu.ImportFile(medFile)
39
40 anEvolution = myVisu.CreateEvolution(myView);
41
42 aSObj = myStudy.FindObjectIOR(myResult.GetID())
43 aSObj = aSObj.FindSubObject(1)[1] # dom
44 aSObj = aSObj.FindSubObject(3)[1] # Fields
45 aSObj = aSObj.FindSubObject(2)[1] # vitesse
46 print "setField : ", anEvolution.setField(aSObj)
47
48 anEvolution.setComponentId(1) # x component
49
50 anEvolution.setPointId(500)
51
52 print "Show Evolution"
53 anEvolution.showEvolution()
54
55 myView.FitAll()