Questions tagged [pvpython]

pvpython is the version of python bundled with the paraview plotting package

pvpython is a version of the python programming language that is bundled with the paraview data visualization software. It is a full implementation of python with additional modules builtin (e.g. numpy, scipy, paraview)

20 questions
0
votes
1 answer

Paraview Catalyst Build: If I download Base of the same version and set it as catalyst_source_dir while generating the source tree I get an error

I'm trying to build Catalyst with an existing Superbuild of Paraview 4.1 I'm trying to generate the source tree as given in the wiki. cd /Catalyst python catalyze.py -i Editions/Base/ -o I don't know if I can find the source in the existing…
MadHatter
  • 321
  • 7
  • 17
0
votes
1 answer

AttributeError: GetNumberOfCells

Im trying to extract a single line concentration profile from an exodus dataset by way of a 'pvpython script'. The procedure I'm attempting to implement was taken from here (2nd…
kribby
  • 45
  • 7
0
votes
1 answer

no module called vtkParallelPython error in Paraview python

I tried to run example PythonFullExample from https://github.com/acbauer/CatalystExampleCode I have installed paraview, vtk and mpi. Why do I get no module called vtkParallelPython error. I'm using ubuntu 12.04.
MadHatter
  • 321
  • 7
  • 17
0
votes
1 answer

memory leak while using pvpython script

I wrote a script for pvpython to convert a batch of vtk-Files to binary vtu-Files. import sys from paraview.simple import * print 'Number of files to be converted:', len(sys.argv) - 1 for x in range(1, len(sys.argv)): inputFile =…
phirus
  • 59
  • 1
  • 7
0
votes
1 answer

Perforce repository changes in python

I am rather new to perforce. So I need to get all revision history (e.g. which file, when, by whom was modified), using P4Python API. Can anyone guide me, at least what P4 command I need?
Gurio
  • 147
  • 2
  • 3
  • 12
1
2