X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=test%2FVisuPrs%2FScalarMap%2FG2.py;h=9a3bc7f8aafd9fe5dbd02b31966f2a4aa463040e;hb=38700ef6e95fe8e0812fd1e0c63844022889ed64;hp=2a8170b7b7d2b3947cc53ff8a99728bb340450e5;hpb=4b015556d5938cc157ae97bdc018d08367c0729a;p=modules%2Fparavis.git diff --git a/test/VisuPrs/ScalarMap/G2.py b/test/VisuPrs/ScalarMap/G2.py index 2a8170b7..9a3bc7f8 100644 --- a/test/VisuPrs/ScalarMap/G2.py +++ b/test/VisuPrs/ScalarMap/G2.py @@ -1,4 +1,4 @@ -# Copyright (C) 2010-2014 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 @@ -23,36 +23,29 @@ import sys import os from paravistest import datadir, pictureext, get_picture_dir -import paravis -from pvsimple import GetActiveSource, GetRenderView, Render +from pvsimple import GetActiveSource, GetRenderView, Render, OpenDataFile from presentations import ScalarMapOnField, hide_all, EntityType, PrsTypeEnum,reset_view,process_prs_for_test - -# Create presentations -myParavis = paravis.myParavis - picturedir = get_picture_dir("ScalarMap/G2") theFileName = datadir + "Bug829_resu_mode.med" print " --------------------------------- " print "file ", theFileName print " --------------------------------- " - + """Build presentations of the given types for all fields of the given file.""" #print "Import %s..." % theFileName.split('/')[-1], -result = myParavis.ImportFile(theFileName) +result = OpenDataFile(theFileName) proxy = GetActiveSource() if proxy is None: - raise RuntimeError, "Error: can't import file." + raise RuntimeError, "Error: can't import file." else: print "OK" # Get view aView = GetRenderView() -field_names = proxy.PointArrays.GetData() -aTimeStamps = proxy.TimestepValues.GetData() aFieldEntity = EntityType.NODE -aFieldName = "MODES_DEPL" +aFieldName = "MODES___DEPL____________________" #create list to store picture files sizes sizes=[] #create Scalar Map presentations for 10 timestamps @@ -64,27 +57,27 @@ for i in range(1,11): #display only current scalar map aPrs.Visibility=1 reset_view(aView) - Render(aView) - + Render(aView) + # Add path separator to the end of picture path if necessery if not picturedir.endswith(os.sep): picturedir += os.sep prs_type = PrsTypeEnum.SCALARMAP - + # Get name of presentation type - prs_name = PrsTypeEnum.get_name(prs_type) + prs_name = PrsTypeEnum.get_name(prs_type) f_prs_type = prs_name.replace(' ', '').upper() # Construct image file name pic_name = picturedir + aFieldName + "_" + str(i) + "_" + f_prs_type + "." + pictureext - + # Show and record the presentation process_prs_for_test(aPrs, aView, pic_name) sizes.append(os.path.getsize(pic_name)) -# check sizes of pictures +# check sizes of pictures if abs(max(sizes)-min(sizes)) > 0.01*max(sizes): - print "WARNING!!! Pictures have different sizes!!!"; + print "WARNING!!! Pictures have different sizes!!!"; for i in range(1,11): picture_name = "time_stamp_"+str(i)+"."+pictureext - print "Picture: "+picture_name+"; size: "+str(sizes[i-1]) - raise RuntimeError + print "Picture: "+picture_name+"; size: "+str(sizes[i-1]) + raise RuntimeError