Salome HOME
Update ParaVis non-regression test base in the following ways:
[modules/paravis.git] / test / VisuPrs / GaussPoints / C6.py
1 # Copyright (C) 2010-2015  CEA/DEN, EDF R&D
2 #
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.
7 #
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.
12 #
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
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 # This case corresponds to: /visu/GaussPoints/C4 case
21 # Create Gauss Points on the field of the MED file
22
23 import os
24 import sys
25
26 from paravistest import datadir, pictureext, get_picture_dir
27 from presentations import GaussPointsOnField, EntityType, get_time, process_prs_for_test
28 import pvsimple
29
30 # Directory for saving snapshots
31 picturedir = get_picture_dir("GaussPoints/C6")
32 if not picturedir.endswith(os.sep):
33     picturedir += os.sep
34
35 # MED file
36 file_name = datadir + "homard_ASTER_OSF_MEDV2.1.5_1_v2.1.med"
37 field_names = ["REMEUN__ERRE_ELGA_NORE__________", "REMEZEROERRE_ELGA_NORE__________"]
38 timestamp_nb = -1 # last timestamp
39
40 pvsimple.OpenDataFile(file_name)
41 med_reader = pvsimple.GetActiveSource()
42 if med_reader is None:
43     raise RuntimeError("File wasn't imported!!!")
44
45 # Create Gauss Points presentation
46 view = pvsimple.GetRenderView()
47 time = get_time(med_reader, timestamp_nb)
48
49 for field_name in field_names:
50     prs = GaussPointsOnField(med_reader, EntityType.CELL, field_name, timestamp_nb)
51     if prs is None:
52         raise RuntimeError, "Created presentation is None!!!"
53
54     # Display presentation and get snapshot
55     pic_name = picturedir + field_name + "_" + str(time) + "_GAUSSPOINTS." + pictureext
56     process_prs_for_test(prs, view, pic_name)