1 # Copyright (C) 2010-2016 CEA/DEN, EDF R&D
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 # Lesser General Public License for more details.
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 # This case corresponds to: /visu/GaussPoints/C8 case
21 # Create Gauss Points on the field of the MED file
26 from paravistest import datadir, pictureext, get_picture_dir
27 from presentations import *
30 # Directory for saving snapshots
31 picturedir = get_picture_dir("GaussPoints/C8")
32 if not picturedir.endswith(os.sep):
36 file_name = datadir + "ir.resu.med"
37 field_name = "gravit__VARI_ELGA"
39 timestamp_nb = 6 # timestamp 1 is empty
41 pvsimple.OpenDataFile(file_name)
42 med_reader = pvsimple.GetActiveSource()
43 if med_reader is None:
44 raise RuntimeError("File wasn't imported!!!")
48 # Create Gauss Points presentation
49 view = pvsimple.GetRenderView()
50 time = get_time(med_reader, timestamp_nb)
52 prs = GaussPointsOnField1(med_reader, EntityType.CELL, field_name, timestamp_nb)
54 raise RuntimeError, "Created presentation is None!!!"
56 # Display presentation and get snapshot
57 pic_name = picturedir + field_name + "_" + str(time) + "_GAUSSPOINTS." + pictureext
58 process_prs_for_test(prs, view, pic_name)