Salome HOME
Merge remote branch 'origin/V7_dev'
[modules/paravis.git] / test / VisuPrs / StreamLines / B4.py
1 # Copyright (C) 2010-2016  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/StreamLines/B4 case
21 # StreamTracer filter properties
22
23 from paravistest import datadir
24 from presentations import *
25 import pvsimple
26
27 # 1. Import MED file
28 print 'Import "ResOK_0000.med"...............',
29 file_path = datadir + "ResOK_0000.med"
30 pvsimple.OpenDataFile(file_path)
31 med_reader = pvsimple.GetActiveSource()
32 if med_reader is None:
33     print "FAILED"
34 else:
35     print "OK"
36
37 # 2. Creating StreamLines
38 print "Creating Stream Lines.....",
39 streamlines = StreamLinesOnField(med_reader, EntityType.NODE, 'vitesse', 1)
40 if streamlines is None:
41     print "FAILED"
42 else:
43     print "OK"
44
45 # 3. StreamLines parameters
46 stream_tracer = pvsimple.GetActiveSource()
47
48 print "Initial Step Length: ", stream_tracer.InitialStepLength
49 print "Integration Direction: ", stream_tracer.IntegrationDirection
50 print "Integration Step Unit: ", stream_tracer.IntegrationStepUnit
51 print "Integrator Type: ", stream_tracer.IntegratorType
52 print "Interpolator Type: ", stream_tracer.InterpolatorType
53 print "Maximum Error: ", stream_tracer.MaximumError
54 print "Minimum Step Length: ", stream_tracer.MinimumStepLength
55 print "Maximum Step Length: ", stream_tracer.MaximumStepLength
56 print "Maximum Steps: ", stream_tracer.MaximumSteps
57 print "Maximum Streamline Length: ", stream_tracer.MaximumStreamlineLength
58 print "Seed Type: ", type(stream_tracer.SeedType)
59 print "Point1: ", stream_tracer.SeedType.Point1
60 print "Point2: ", stream_tracer.SeedType.Point2
61 # print "Center: ", stream_tracer.SeedType.Center
62 # print "Number Of Points: ", stream_tracer.SeedType.NumberOfPoints
63 # print "Radius: ", stream_tracer.SeedType.Radius