ParaView/Python Scripting: Difference between revisions

From KitwarePublic
Jump to navigationJump to search
No edit summary
 
(111 intermediate revisions by 19 users not shown)
Line 1: Line 1:
=ParaView and Python=
'''Katie O adding to ParaView Guide LaTex'''
ParaView offers rich scripting support through Python. This support is available as part of the ParaView client (paraview), an MPI-enabled batch application (pvbatch), the ParaView python client (pvpython) or any other Python-enabled application. Using Python, users and developers can gain access to the ParaView engine called Server Manager.


=Quick Start - a Tutorial=
Note: This document if based on ParaView 3.6 or higher. If you are using 3.4, go to the history page and select the version from May 13, 2009.
==Getting Started==


To start interacting with the Server Manager, you have to load the servermanager module. This module can be loaded from any python interpreter as long as the necessary files are in PYTHONPATH. These files are the shared libraries located in the paraview binary directory and python modules in the paraview directory: paraview/servermanager.py, paraview/vtk.py etc. You can also use either pvpython (for stand-alone or client/server execution), pvbatch (for non-interactive, distributed batch processing) or the python shell invoked from Tools -> Python Shell using the ParaView client to execute Python scripts. You do not have to set PYTHONPATH when using these.
=ParaView and Python=
In this tutorial, I will be using the python integrated development environment IDLE. My PYTHONPATH is set to the following.  
ParaView offers rich scripting support through Python. This support is available as part of the ParaView client (paraview), an MPI-enabled batch application (pvbatch), the ParaView python client (pvpython), or any other Python-enabled application. Using Python, users and developers can gain access to the ParaView engine called Server Manager.


/Users/berk/work/paraview3-build/bin:/Users/berk/work/paraview3-build/Utilities/VTKPythonWrapping
Note: Server Manager is a library that is designed to make it easy to build distributed client-server applications.


This is on my Mac and using the build tree. In IDLE, let’s start by loading the servermanager module.
This document is a short introduction to ParaView's Python interface. You may also visit the [[Python recipes]] page for some examples.


<source lang="python">
=Quick Start - a Tutorial=
>>> from paraview import servermanager
{{ParaView/Template/DeprecatedPythonDocumentation}}
</source>
 
Note: Importing the paraview module directly is deprecated although still possible for backwards compatibility. This document refers to the servermanager module alone. Next, we need to connect to a server if we are not already connected.
 
<source lang="python">
>>> if not servermanager.ActiveConnection:
... connection = servermanager.Connect()
 
Connection (builtin:5)
</source>
 
In this example, we connected to the built-in server. When using pvbatch, this is the only connection mode supported, even when pvbatch is running as an MPI task. When running pvpython or loading servermanager from an external python interpreter, we can also connect to a remote server as shown in the following example
 
<source lang="python">
>>> connection = servermanager.Connect('localhost')
Connection (localhost:11111)
</source>
This assumes that you already started the server (pvserver) on the local machine.
Note: Connect() returns a connection object on success and returns None on failure. You might want to check the return value to make sure connection succeeded.
 
<source lang="python">
>>> connection = servermanager.Connect('localhost')
>>> if not connection:
...  raise exceptions.RuntimeError, “Connection to localhost failed.”
</source>
 
Note: When importing the servermanager module from the application’s python shell, Connect() should not be called as a connection already exists.
 
==Creating a Pipeline==
 
When first loaded, the servermanager module creates several sub-modules that can be used to create a visualization. The most important ones are listed below.
* sources
* filters
* rendering
 
You can get a list of classes these modules contain by using dir() as shown in the following example.


<source lang="python">
=paraview.simple Module=
>>> dir(servermanager.sources)
['AVSucdReader', 'ArrowSource', 'Axes', 'CSVReader', 'ConeSource', 'CubeSource', 'CylinderSource',
'DEMReader', 'ExodusIIReader', 'ExodusReader', 'FLUENTReader', 'Facet Reader', 'GlyphSource2D',
'HierarchicalFractal', 'ImageMandelbrotSource', 'ImageReader', ...]
</source>


Let’s start by creating a ConeSource object:
{{ParaView/Template/DeprecatedUsersGuide}}


<source lang="python">
=Proxies and Properties=
>>> coneSource = servermanager.sources.ConeSource()
==Proxies==
</source>


The object assigned to coneSource is a proxy for the actual vtkConeSource. This proxy provides a set of properties and methods to control the behavior of the underlying VTK object(s). These objects may be in the same process (built-in server) or on one or more server processes (distributed remote server). The proxy will handle communication with the VTK objects in a transparent way. You can get some documentation about the proxy using help().
{{ParaView/Template/DeprecatedUsersGuide}}


<source lang="python">
==Properties==
>>> help(coneSource)
Help on ConeSource in module paraview.servermanager object:


class ConeSource(Proxy)
{{ParaView/Template/DeprecatedUsersGuide}}
|  The Cone source can be used to add a polygonal cone to the 3D scene. The output of the Cone source is
polygonal data.
|  Method resolution order:
|      ConeSource
|      Proxy
|      __builtin__.object
|  Methods defined here:
|  Initialize = aInitialize(self, connection=None)
|  ----------------------------------------------------------------------
|  Data descriptors defined here:
|  Capping
|      If this property is set to 1, the base of the cone will be capped with a filled polygon.
Otherwise, the base of the cone will be open.
|  Center
|      This property specifies the center of the cone.
|... 
</source>


This gives you a full list of properties. Let’s check what the resolution property is set to.
==Domains==


<source lang="python">
{{ParaView/Template/DeprecatedUsersGuide}}
>>> coneSource.Resolution
Property name= Resolution value = 6
</source>


You can increase the resolution as shown below.
==Source Proxies==


<source lang="python">
{{ParaView/Template/DeprecatedUsersGuide}}
>>> coneSource.Resolution = 32
</source>


Alternatively, we could have specified a value for resolution when creating the proxy.
==Representations and Views==


<source lang="python">
{{ParaView/Template/DeprecatedUsersGuide}}
>>> coneSource = servermanager.sources.ConeSource(Resolution=32)
</source>


You can assign values to any number of properties during construction using  keyword arguments.
=Advanced Concepts=
Let’s also change the center.


<source lang="python">
==Dealing with lookup tables==
>>> coneSource.Center
{{ParaView/Template/DeprecatedUsersGuide}}
Property name= Center value = [0.0, 0.0, 0.0]
>>> coneSource.Center[1] = 1
</source>


Vector properties such as this one support setting and getting of individual elements as well as slices (ranges of elements).
==Loading State and Manipulating It==


<source lang="python">
{{ParaView/Template/DeprecatedUsersGuide}}
>>> coneSource.Center[0:3] = [1, 2, 3]
>>> coneSource.Center
Property name= Center value = [1.0, 2.0, 3.0]
</source>


Next, let’s apply a shrink filter to the cone:
==Dealing with Time==


<source lang="python">
{{ParaView/Template/DeprecatedUsersGuide}}
>>> shrinkFilter = servermanager.filters.ShrinkFilter(Input=coneSource)
>>> shrinkFilter.Input
Property name= Input value = <paraview.servermanager.ConeSource object at 0x2d00dd90>:0
</source>


At this point, if you are interested in getting some information about the output of the shrink filter, you can force it to update (which will also cause the execution of the cone source. For details about VTK pipeline model, see one of the VTK books.
==Animating==


<source lang="python">
{{ParaView/Template/DeprecatedUsersGuide}}
>>> shrinkFilter.UpdatePipeline()
>>> shrinkFilter.GetDataInformation().GetNumberOfCells()
33L
>>> shrinkFilter.GetDataInformation().GetNumberOfPoints()
128L
</source>


We will cover the DataInformation class in more detail later.
==Loading Data Files==


==Rendering==
{{ParaView/Template/DeprecatedUsersGuide}}


Now that we created a small pipeline, let’s render the result. You will need two objects to render the output of an algorithm in a scene: a representation and a view. A representation is responsible for taking a data object and rendering it in a view. A view is responsible for managing a render context and a collection of representations.
==Writing Data Files (ParaView 3.9 or later)==


<source lang="python">
{{ParaView/Template/DeprecatedUsersGuide}}
>>> view = servermanager.CreateRenderView()
>>> rep = servermanager.CreateRepresentation(shrinkFilter, view)
>>> view.StillRender()
</source>


Oops, nothing is visible. We need to reposition the camera to contain the entire scene.
==Exporting CSV Data==


<source lang="python">
{{ParaView/Template/DeprecatedUsersGuide}}
>>> view.ResetCamera()
>>> view.StillRender()
</source>


Et voila:
==Updating View Layout==
{{ParaView/Template/DeprecatedUsersGuide}}


[[Image:Servermanager_snapshot.png|center]]
==Multiple Renders==


CreateRenderView() and CreateRepresentation() are special methods in the servermanager module to facilitate the creation of representations and views. CreateRepresentation() automatically adds the new representation to the view.
{{ParaView/Template/DeprecatedUsersGuide}}


<source lang="python">
>>> view.Representations
Property name= Representations value = [<paraview.servermanager.UnstructuredGridRepresentation object at 0x2d0170f0>]
</source>


This was a quick introduction to the servermanager module. In the following sections, we will discuss the servermanager in more detail and introduce more advanced concepts.
{{ParaView/Template/Footer}}

Latest revision as of 18:38, 24 June 2024

Katie O adding to ParaView Guide LaTex

Note: This document if based on ParaView 3.6 or higher. If you are using 3.4, go to the history page and select the version from May 13, 2009.

ParaView and Python

ParaView offers rich scripting support through Python. This support is available as part of the ParaView client (paraview), an MPI-enabled batch application (pvbatch), the ParaView python client (pvpython), or any other Python-enabled application. Using Python, users and developers can gain access to the ParaView engine called Server Manager.

Note: Server Manager is a library that is designed to make it easy to build distributed client-server applications.

This document is a short introduction to ParaView's Python interface. You may also visit the Python recipes page for some examples.

Quick Start - a Tutorial

PAGE DELETED
The ParaView's Python documentation has been moved from the Wiki to The ParaView Python Documentation. Please use the history if you want to access the old version of this document.

paraview.simple Module

PAGE DELETED
The Paraview's User Guide and Reference Manual have been moved from the Wiki to The ParaView Guide. Please use the history if you want to access the old version of this document.

Proxies and Properties

Proxies

PAGE DELETED
The Paraview's User Guide and Reference Manual have been moved from the Wiki to The ParaView Guide. Please use the history if you want to access the old version of this document.

Properties

PAGE DELETED
The Paraview's User Guide and Reference Manual have been moved from the Wiki to The ParaView Guide. Please use the history if you want to access the old version of this document.

Domains

PAGE DELETED
The Paraview's User Guide and Reference Manual have been moved from the Wiki to The ParaView Guide. Please use the history if you want to access the old version of this document.

Source Proxies

PAGE DELETED
The Paraview's User Guide and Reference Manual have been moved from the Wiki to The ParaView Guide. Please use the history if you want to access the old version of this document.

Representations and Views

PAGE DELETED
The Paraview's User Guide and Reference Manual have been moved from the Wiki to The ParaView Guide. Please use the history if you want to access the old version of this document.

Advanced Concepts

Dealing with lookup tables

PAGE DELETED
The Paraview's User Guide and Reference Manual have been moved from the Wiki to The ParaView Guide. Please use the history if you want to access the old version of this document.

Loading State and Manipulating It

PAGE DELETED
The Paraview's User Guide and Reference Manual have been moved from the Wiki to The ParaView Guide. Please use the history if you want to access the old version of this document.

Dealing with Time

PAGE DELETED
The Paraview's User Guide and Reference Manual have been moved from the Wiki to The ParaView Guide. Please use the history if you want to access the old version of this document.

Animating

PAGE DELETED
The Paraview's User Guide and Reference Manual have been moved from the Wiki to The ParaView Guide. Please use the history if you want to access the old version of this document.

Loading Data Files

PAGE DELETED
The Paraview's User Guide and Reference Manual have been moved from the Wiki to The ParaView Guide. Please use the history if you want to access the old version of this document.

Writing Data Files (ParaView 3.9 or later)

PAGE DELETED
The Paraview's User Guide and Reference Manual have been moved from the Wiki to The ParaView Guide. Please use the history if you want to access the old version of this document.

Exporting CSV Data

PAGE DELETED
The Paraview's User Guide and Reference Manual have been moved from the Wiki to The ParaView Guide. Please use the history if you want to access the old version of this document.

Updating View Layout

PAGE DELETED
The Paraview's User Guide and Reference Manual have been moved from the Wiki to The ParaView Guide. Please use the history if you want to access the old version of this document.

Multiple Renders

PAGE DELETED
The Paraview's User Guide and Reference Manual have been moved from the Wiki to The ParaView Guide. Please use the history if you want to access the old version of this document.




ParaView: [Welcome | Site Map]