X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=test%2FVisuPrs%2FAnimation%2FG0.py;h=8bce57d863ce5cba6e2c09b06cfc6991d431c42a;hb=38700ef6e95fe8e0812fd1e0c63844022889ed64;hp=558b2d1b0fdb98b0537bb0889ae1b3d980fecec0;hpb=03f85a986578ef4c22ad25ef6bb4adfbdf2d9397;p=modules%2Fparavis.git diff --git a/test/VisuPrs/Animation/G0.py b/test/VisuPrs/Animation/G0.py index 558b2d1b..8bce57d8 100644 --- a/test/VisuPrs/Animation/G0.py +++ b/test/VisuPrs/Animation/G0.py @@ -1,9 +1,9 @@ -# Copyright (C) 2010-2013 CEA/DEN, EDF R&D +# Copyright (C) 2010-2015 CEA/DEN, EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either -# version 2.1 of the License. +# version 2.1 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -22,13 +22,9 @@ import sys import os -from paravistest import * +from paravistest import * from presentations import * from pvsimple import * -import paravis - -#import file -myParavis = paravis.myParavis # Directory for saving snapshots picturedir = get_picture_dir("Animation/G0") @@ -38,14 +34,17 @@ print " --------------------------------- " print "file ", theFileName print " --------------------------------- " -myParavis.ImportFile(theFileName) +OpenDataFile(theFileName) aProxy = GetActiveSource() if aProxy is None: - raise RuntimeError, "Error: can't import file." + raise RuntimeError, "Error: can't import file." else: print "OK" print "Creating a Viewer.........................", aView = GetRenderView() +time_value = get_time(aProxy, 0) +aView.ViewTime = time_value +UpdatePipeline(time=time_value, proxy=aProxy) reset_view(aView) Render(aView) @@ -64,26 +63,26 @@ if not picturedir.endswith(os.sep): picturedir += os.sep # Select only the current field: -aProxy.AllArrays = [] -aProxy.UpdatePipeline() aProxy.AllArrays = ['TS0/dom/ComSup0/vitesse@@][@@P1'] -aProxy.UpdatePipeline() - +time_value = get_time(aProxy, 0) +aView.ViewTime = time_value +UpdatePipeline(time=time_value, proxy=aProxy) + # Animation creation and saving into set of files into picturedir scene = AnimateReader(aProxy,aView,picturedir+"G0_dom."+my_format) nb_frames = len(scene.TimeKeeper.TimestepValues) -pics = os.listdir(picturedir) +pics = os.listdir(picturedir) if len(pics) != nb_frames: print "FAILED!!! Number of made pictures is equal to ", len(pics), " instead of ", nb_frames - + for pic in pics: - os.remove(picturedir+pic) - -# Prepare animation performance + os.remove(picturedir+pic) + +# Prepare animation performance scene.PlayMode = 1 # set RealTime mode for animation performance # set period -scene.Duration = 30 # correspond to set the speed of animation in VISU +scene.Duration = 30 # correspond to set the speed of animation in VISU scene.GoToFirst() print "Animation.................................", scene.Play()