Re: [Paraview] [EXTERNAL] How to load different data files for multiple pvservers

2017-01-10 Thread Moreland, Kenneth
I recommend writing out your data as .pvtp instead .vtk files. The file formats are similar, but pvtp supports reading and writing in parallel. Both formats are documented here: http://www.vtk.org/VTK/img/file-formats.pdf -Ken From: ParaView [mailto:paraview-boun...@paraview.org] On Behalf Of

[Paraview] Problem with WriteAnimation in a python file silently failing under pvbatch but working when called with pvpython (UNCLASSIFIED)

2017-01-10 Thread Hennessey, Joseph G CTR USARMY RDECOM ARL (US)
CLASSIFICATION: UNCLASSIFIED Hello, I have found that pvbatch is silently failing in a python file when WriteAnimation is called and used with ParaView 5.2.0 under linux. But pvpython will execute the same command from the same python file correctly. The call where it is failing is below

Re: [Paraview] Problem with WriteAnimation in a python file silently failing under pvbatch but working when called with pvpython (UNCLASSIFIED)

2017-01-10 Thread Andy Bauer
Hi Joe, I haven't seen this issue or heard anyone else with something like this. Are you running pvbatch in serial? If you share a python script which demonstrates the issue it may be an easy issue to track down. There are some slight differences between pvpython and pvbatch. My guess would be

Re: [Paraview] upgrading reader module/plugin

2017-01-10 Thread Utkarsh Ayachit
Mark, After you've changed a property, you need to call vtkSMProxy::UpdateVTKObjects() (or vtkSMProxy::UpdateProperty()) to push those values for them to have any effect. However, in a panel, you'd rather not do that. Utkarsh On Mon, Jan 9, 2017 at 12:31 PM, Mark Olesen

Re: [Paraview] [Non-DoD Source] Re: Problem with WriteAnimation in a python file silently failing under pvbatch but working when called with pvpython (UNCLASSIFIED)

2017-01-10 Thread Hennessey, Joseph G CTR USARMY RDECOM ARL (US)
CLASSIFICATION: UNCLASSIFIED Andy, I have tried the various options --mpi , -dr and I also tried --mpi -dr and it had no effect. What I did find though was that the compute nodes are running an osmesa build of paraview. and I had been running in a hardware accelerated GL build of paraview

Re: [Paraview] question-filter

2017-01-10 Thread Megdich Islem via ParaView
Hi, I just went back working on this project, the integratevariable filter is sloving my problem and giving nice results. Thank you very much for the help. Regards,islem Le Jeudi 7 avril 2016 15h23, Favre Jean a écrit : #yiv0363527107 P {margin-top:0;margin-bottom:0;}I

Re: [Paraview] Fwd: Segfault reading polyhedral cells xdmf3 file

2017-01-10 Thread David E DeMarle
Thanks Allesandro. >From your long message ;), I think that the fix then is to not overcount the space taken for the polyhedral cells. https://gitlab.kitware. com/vtk/vtk/merge_requests/2346 thoughts? David E DeMarle Kitware, Inc. R Engineer 21 Corporate Drive Clifton Park, NY 12065-8662

Re: [Paraview] [Paraview-developers] vtkImageData Plugin, vtkImageData not rendered

2017-01-10 Thread Joachim Pouderoux
Hmm sorry if I had took a closer look I would have seen that AllocateScalars set a default name "ImageScalars" to the scalar array. Then don't know what you did but the print says that the name of your array is "21745593" which is quite strange. Is it what you did? Could you write your "output"

Re: [Paraview] Paraview 5.2.0 compilation with support for HMD and Python

2017-01-10 Thread Ken Martin
Hi Guillaume, I hope to get some time to clean up some issues with the code and to merge it into PV master. It will probably be a bit though as right now I am taking another pass at the OpenVR VTK code which it is based on to add a medical (volume rendering) example and a few options such as a

[Paraview] Paraview 5.2.0 compilation with support for HMD and Python

2017-01-10 Thread Guillaume Jacquenot
I have seen that Kitware developers have proposed a ParaView version with support for Oculus Rift and HTC Vive HMD. And it looks awesome, and opens a wide range of opportunities. https://blog.kitware.com/taking-paraview-into-virtual-reality/ However, the proposed version does not embed Python

Re: [Paraview] How to load different data files for multiple pvservers

2017-01-10 Thread Mathieu Westphal
Hi It is quite simple. First convert your file to modern file type, eg .vtu , .vtp or .vti Then manually create a .pvtu/p/i with the correct syntax. Take a look at the attached file file.pvtp Regards Mathieu Westphal On Tue, Jan 10, 2017 at 12:41 PM, 张驭洲 wrote: > > >

[Paraview] How to load different data files for multiple pvservers

2017-01-10 Thread 张驭洲
Hello, I'm using ParaView for parallel visualization. My dataset is polydata, it is not "parallel aware". However, using the D3 filter, as the ParaView User's Guide says, is too expensive, which slow down the whole process significantly. As my data is generated in parallel, I want to assign

Re: [Paraview] How to load different data files for multiple pvservers

2017-01-10 Thread 张驭洲
Hi Mathieu, Thank you for the quick reply! I have some .vtp files and tried the way you told me, and got the result what I want. However, I don't know how to convert my .vtk files to .vtp files. Could you please give me more information about this? And, can I generate .vtp files from a

Re: [Paraview] How to load different data files for multiple pvservers

2017-01-10 Thread Mathieu Westphal
Hi Sure, take a look into vtkXMLPolyDataWriter Regards Mathieu Westphal On Tue, Jan 10, 2017 at 2:56 PM, 张驭洲 wrote: > > Hi Mathieu, > > Thank you for the quick reply! I have some .vtp files and tried the way > you told me, and got the result what I want. However, I don't

Re: [Paraview] How to load different data files for multiple pvservers

2017-01-10 Thread 张驭洲
Hi Mathieu, Thank you very much! You solved my problem perfectly! Sincerely -Zhang -原始邮件- 发件人: "Mathieu Westphal" 发送时间: 2017年1月10日 星期二 收件人: "张驭洲" 抄送: ParaView 主题: Re: Re: [Paraview] How to load different data

Re: [Paraview] Paraview 5.2.0 compilation with support for HMD and Python

2017-01-10 Thread Cory Quammen
Hi Guillaume, Ken Martin is responsible for this cool version of ParaView. I'm not sure that the code is ready for release just yet - Ken can tell you more. Thanks, Cory On Tue, Jan 10, 2017 at 5:55 AM, Guillaume Jacquenot wrote: > I have seen that Kitware