Salome HOME
Merge branch 'abn/tmp' into abn/rearch
[modules/paravis.git] / test / demo11.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
21 if not ('servermanager' in dir()):
22   from pvsimple import *
23
24 import os, inspect
25
26 def demo11(fname, impth):
27     """This method demonstrates the Contour filter."""
28
29     reader = ExodusIIReader(FileName=fname)
30     v=GetActiveView()
31     clipFilter = Clip(reader)
32     clipFilter.ClipType = 'Scalar'
33  
34     clipFilter.Scalars = 'Temp'
35     clipFilter.Value = 400
36     Show(clipFilter)
37     camera = GetActiveCamera()
38     camera.Elevation(-75)
39     Render()
40     WriteImage(filename = (impth + "clipFilter_1.png"), view=v, Magnification=2)
41
42     clipFilter2 = Clip(clipFilter)
43     Show(clipFilter2)
44     Hide(clipFilter)
45     camera.SetPosition(-39, 0, 1.46)
46     camera.Roll(90)
47     WriteImage(filename = (impth + "clipFilter_2.png"), view=v, Magnification=2)
48
49     dp1 = GetDisplayProperties(reader)
50     dp2 = GetDisplayProperties(clipFilter2)
51     clipFilter2.PointData[:]
52     ##[Array: Temp, Array: V, Array: Pres, Array: AsH3, Array: GaMe3, Array: CH4, Array: H2]
53
54     temp = clipFilter2.PointData[0]
55     temp.GetRange()
56     ##(399.99999999999994, 913.1500244140625)
57
58     dp2.LookupTable = MakeBlueToRedLT(400,913.15)
59     dp2.ColorAttributeType = 'POINT_DATA'
60     dp2.ColorArrayName = 'Temp'
61     Hide(reader)
62     Render()
63     WriteImage(filename = (impth + "clipFilter_3.png"), view=v, Magnification=2)
64
65     dp1.Representation = 'Volume'
66     temp.GetRange()
67     ##(399.99999999999994, 913.1500244140625)
68     dp1.LookupTable = dp2.LookupTable
69     dp1.ColorAttributeType = 'POINT_DATA'
70     dp1.ColorArrayName = 'Temp'
71     Show(reader)
72     Render()
73     WriteImage(filename = (impth + "clipFilter_4.png"), view=v, Magnification=2)
74
75
76 scriptdir = inspect.getframeinfo(inspect.currentframe())[0]
77 testdir = os.path.dirname( os.path.abspath(scriptdir) )
78 pvdata = os.getenv("SAMPLES_SRC_DIR")
79
80 if __name__ == "__main__":
81     demo11(fname=pvdata+"/Data/disk_out_ref.ex2", impth=testdir+"/Pic/")