Re: [Paraview] Question about Paraview and parallel processing

2013-01-03 Thread Berk Geveci
Hi Adam, The legacy VTK format was never upgraded to support domain decomposition. The VisIt folks added an extra layer to do that. In ParaView, you need to use another format. I would recommend the new VTK format (in your case pvts). See http://www.vtk.org/VTK/img/file-formats.pdf for more

[Paraview] Linker error with OpenMPI 1.6.2

2013-01-03 Thread Stephan Rogge
Happy new year, I've tried to use a newer version of OpenMPI (1.4.4 = 1.6.2) with PV from git master. Unfortunately, I was not able to build ParaView successfully. A linker error comes from the vtkParallelMPI project. When I look into the project file I can see that libmpi.lib and

Re: [Paraview] Linker error with OpenMPI 1.6.2

2013-01-03 Thread Utkarsh Ayachit
What version of ParaView is this? Can you attach your CmakeCache.txt file? Utkarsh On Thu, Jan 3, 2013 at 9:46 AM, Stephan Rogge stephan.ro...@tu-cottbus.de wrote: Happy new year, I’ve tried to use a newer version of OpenMPI (1.4.4 = 1.6.2) with PV from git master. Unfortunately, I was not

Re: [Paraview] How to change the Representation within a Plugin ?

2013-01-03 Thread Utkarsh Ayachit
Try: vtkSMPropertyHelper(repr-getProxy(), RadiusArray).Set(4, radius); ... repr-getProxy()-UpdateVTKObjects(); Utkarsh On Wed, Jan 2, 2013 at 2:57 PM, Christian Richter christian.rich...@ovgu.de wrote: Thank you Utkarsh, thas does the trick. Can you give me a hint how I can do

[Paraview] External plugin menu behavior

2013-01-03 Thread Michael Reuter
Hi, I have a set of external plugins that we have made a menu entry that is visible in the ParaView GUI Filters menu. I'm seeing a strange problem in ParaView 3.98. When I use a plugin for the first time, all is fine. However, when I exit PV, restart and go to use the same plugin, the

Re: [Paraview] External plugin menu behavior

2013-01-03 Thread Utkarsh Ayachit
Sounds like a bug to me. Any details on how I could try to reproduce this? If you could reproduce with one of the packaged plugins or examples, that'd be even better. Utkarsh On Thu, Jan 3, 2013 at 3:04 PM, Michael Reuter reute...@ornl.gov wrote: Hi, I have a set of external plugins that

Re: [Paraview] External plugin menu behavior

2013-01-03 Thread Reuter, Michael A.
I tried Plot Over Line, Clip and Histogram. Now those are gone from their original menus. M On 1/3/13 3:20 PM, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: Sounds like a bug to me. Any details on how I could try to reproduce this? If you could reproduce with one of the packaged plugins

Re: [Paraview] HDF5 and Paraview

2013-01-03 Thread Pradeep Jha
Hello Jens, thanks for the response. It explained a lot. I have been reading up about XDMF and am trying to implement it. My filename.h5 file just contains a scalar value for 512*512*512 grid points in a structured uniform cube. I don't store any grid coordinates information in any files. But

Re: [Paraview] HDF5 and Paraview

2013-01-03 Thread Tim Gallagher
If you look on the Xdmf Model and Format website (http://www.xdmf.org/index.php/XDMF_Model_and_Format) you can see that there is a 2DCoRectMesh and 3DCoRectMesh topology which can be used to make 2/3D constant spacing meshes with axis aligned to X,Y,Z. And example of how to write this is on