Section: Visualization Toolkit Parallel Classes
To create an instance of class vtkVPICReader, simply invoke its constructor as follows
obj = vtkVPICReader
obj
is an instance of the vtkVPICReader class.
string = obj.GetClassName ()
int = obj.IsA (string name)
vtkVPICReader = obj.NewInstance ()
vtkVPICReader = obj.SafeDownCast (vtkObject o)
obj.SetFileName (string )
- Specify file name of VPIC data file to read.
string = obj.GetFileName ()
- Specify file name of VPIC data file to read.
obj.SetStride (int , int , int )
- Set the stride in each dimension
obj.SetStride (int a[3])
- Set the stride in each dimension
int = obj. GetStride ()
- Set the stride in each dimension
obj.SetXExtent (int , int )
- Set the simulation file decomposition in each dimension
obj.SetXExtent (int a[2])
- Set the simulation file decomposition in each dimension
obj.SetYExtent (int , int )
- Set the simulation file decomposition in each dimension
obj.SetYExtent (int a[2])
- Set the simulation file decomposition in each dimension
obj.SetZExtent (int , int )
- Set the simulation file decomposition in each dimension
obj.SetZExtent (int a[2])
- Set the simulation file decomposition in each dimension
int = obj. GetXLayout ()
int = obj. GetYLayout ()
int = obj. GetZLayout ()
vtkImageData = obj.GetOutput ()
- Get the reader's output
vtkImageData = obj.GetOutput (int index)
- Get the reader's output
int = obj.GetNumberOfPointArrays ()
- The following methods allow selective reading of solutions fields.
By default, ALL data fields on the nodes are read, but this can
be modified.
string = obj.GetPointArrayName (int index)
- The following methods allow selective reading of solutions fields.
By default, ALL data fields on the nodes are read, but this can
be modified.
int = obj.GetPointArrayStatus (string name)
- The following methods allow selective reading of solutions fields.
By default, ALL data fields on the nodes are read, but this can
be modified.
obj.SetPointArrayStatus (string name, int status)
- The following methods allow selective reading of solutions fields.
By default, ALL data fields on the nodes are read, but this can
be modified.
obj.DisableAllPointArrays ()
- The following methods allow selective reading of solutions fields.
By default, ALL data fields on the nodes are read, but this can
be modified.
obj.EnableAllPointArrays ()
- The following methods allow selective reading of solutions fields.
By default, ALL data fields on the nodes are read, but this can
be modified.