Salome HOME
9f87c8b3bcae08206d4f56e9e1ed116e81b876c5
[modules/paravis.git] / test / VisuPrs / MeshPresentation / H6.py
1 # Copyright (C) 2010-2014  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/MeshPresentation/H6 case
21 # Create  mesh presentation for nodes and cells of the the given MED file 
22
23 import sys
24 from paravistest import datadir, pictureext, get_picture_dir
25 from presentations import *
26 from pvsimple import *
27 import pvserver as paravis
28
29 # Create presentations
30 myParavis = paravis.myParavis
31 picturedir = get_picture_dir("MeshPresentation/H6")
32
33 theFileName = datadir +  "CornerTetra.med"
34 print " --------------------------------- "
35 print "file ", theFileName
36 print " --------------------------------- "
37
38
39 result = myParavis.ImportFile(theFileName)
40 aProxy = GetActiveSource()
41 if aProxy is None:
42         raise RuntimeError, "Error: can't import file."
43 else: print "OK"
44
45 aView = GetRenderView()
46
47 #%Creation of the mesh presentation%
48 mesh_name = "CornerTetra"
49
50 #^Presentation on "onNodes" and '"onCells" family^
51 entity_types = [EntityType.NODE,EntityType.CELL]
52 for entity_type in entity_types:
53     entity_name = EntityType.get_name(entity_type)
54     mesh = MeshOnEntity(aProxy, mesh_name ,entity_type)
55     if mesh is None: 
56         msg = "ERROR!!!Presentation of mesh on '"+entity_name+"' family wasn't created..."
57         raise RuntimeError, msg 
58     mesh.Visibility=1
59     reset_view(aView)
60     Render()
61
62     # Add path separator to the end of picture path if necessery
63     if not picturedir.endswith(os.sep):
64             picturedir += os.sep
65     entity_name = EntityType.get_name(entity_type)
66     # Construct image file name
67     pic_name = picturedir + mesh_name + "_" + entity_name + "." + pictureext
68     
69     process_prs_for_test(mesh, aView, pic_name)
70
71
72