Re: [Paraview] VTK version

2010-07-09 Thread Michael Wild
On 9. Jul, 2010, at 1:52 , François Bissey wrote: It is 5.6.0 + some additional patches as VTK 5.6.0 was released before ParaView 3.8.0 was finished. If you checkout the VTK release branch. The commit ParaView 3.8.0 used was: 8b2449871dca83d542cc7d8093da5fee3c70ebb1 Author: Dave DeMarle

[Paraview] 3.8 version does not launch on old systems

2010-07-09 Thread Stephane PLOIX
Hi, it seems that the libQtHelp.so library is missing from the binary package ParaView-Development-3.8.0-Linux-x86_64. I tried to install it on a system which does not have this library natively installed, and end up with the error :

Re: [Paraview] External execution of python code related to paraview

2010-07-09 Thread Sebastien Jourdain
Instead of launching the graphical interface of ParaView, you can launch the pvpython executable which is a python shell from where you should be able to execute your script. And I think you can directly provide a script as argument so you should be able to execute your script in one command line.

Re: [Paraview] 3.8 version does not launch on old systems

2010-07-09 Thread Dave Partyka
Humm I will take a look. Thanks Stephane! 2010/7/9 Stephane PLOIX stephane.pl...@edf.fr Hi, it seems that the libQtHelp.so library is missing from the binary package ParaView-Development-3.8.0-Linux-x86_64. I tried to install it on a system which does not have this library natively

Re: [Paraview] External execution of python code related to paraview

2010-07-09 Thread Utkarsh Ayachit
Also, you can directly use a regular python interpretor so long as the the environment is setup correctly. Refer to: http://www.paraview.org/Wiki/ParaView/EnvironmentSetup Utkarsh On Fri, Jul 9, 2010 at 8:50 AM, Sebastien Jourdain sebastien.jourd...@kitware.com wrote: Instead of launching the

Re: [Paraview] Displaying strong discontinuities/XFEM

2010-07-09 Thread Berk Geveci
Hi Neil, I am afraid that the old school solution is the only out-of-box solution. If you are willing to spend some quality programming time with VTK, there are folks on this and VTK lists that can help you with implementing your own cell types. It is a non-trivial task though. -berk On Thu,

Re: [Paraview] Displaying strong discontinuities/XFEM

2010-07-09 Thread nhodge
Berk: On Fri, 9 Jul 2010, Berk Geveci wrote: I am afraid that the old school solution is the only out-of-box solution. If you are willing to spend some quality programming time with VTK, there are folks on this and VTK lists that can help you with implementing your own cell types. It is a

[Paraview] hiding intermediate filters created from python

2010-07-09 Thread Stephane PLOIX
Hi, I have made a script that creates a bunch of sources and filters (to use as legends), and finishes by an append filter to which everything is appended. Only this last append filter has a representation. I would like to have only one entry in the pipeline browser for the last append

Re: [Paraview] VTK version

2010-07-09 Thread Marcus D. Hanwell
On Fri, Jul 9, 2010 at 4:25 AM, Michael Wild them...@gmail.com wrote: On 9. Jul, 2010, at 1:52 , François Bissey wrote: It is 5.6.0 + some additional patches as VTK 5.6.0 was released before ParaView 3.8.0 was finished. If you checkout the VTK release branch. The commit ParaView 3.8.0

[Paraview] Reset camera center of rotation

2010-07-09 Thread Laurent Vanboquestal
Hello, I would like to know if there is a (python) way to reset the center of rotation (like the Reset button in the paraview GUI/Camera toolbar) ? I notice that the ResetCamera() function doesn't reset the center of rotation Any idea? Best Regards, Laurent

Re: [Paraview] Concave polygons

2010-07-09 Thread David E DeMarle
GL doesn't handle concave polygons and subdividing concave polygons into convex ones would add substantial overhead to the common case when none are present, so VTK and therefore ParaView do not either. See this thread where the issue was recently discussed for ideas about how you might go about

Re: [Paraview] Reset camera center of rotation

2010-07-09 Thread Utkarsh Ayachit
Try the following: ResetCamera() view = GetActiveView() view.CenterOfRotation = GetActiveCamera().GetFocalPoint() Render() On Fri, Jul 9, 2010 at 11:58 AM, Laurent Vanboquestal laurent.vanboques...@gmail.com wrote: Hello, I would like to know if there is a (python) way to reset the center of

Re: [Paraview] hiding intermediate filters created from python

2010-07-09 Thread Eric E. Monson
Hey Stephane, It comes close to working for me if I do the Custom Filter thing, but not quite -- what problems are you seeing if you try to do this? When I'm trying to create a Custom Filter out of the sources filters you specified (no inputs, append filter output and exposing the text entry

[Paraview] Plot field data over time?

2010-07-09 Thread Eric E. Monson
Hello, I am trying to understand the Plot Global Variables Over Time filter. I have an unstructured grid with multiple time steps I'm reading in to ParaView from a temporal collection in an Xdmf file. With each time step I have a Grid centered value that's getting read in properly as Field