Re: [Paraview] Issue with Python path variable change from ver 5.2 onward

2017-09-11 Thread Cory Quammen
Evan, I have filed a bug report [1]. I don't recall if this was an intentional change, but it appears to be causing you and at least one other person problems. Thanks, Cory [1] https://gitlab.kitware.com/paraview/paraview/issues/17699 On Thu, May 25, 2017 at 12:33 AM, Evan Kao wrote: > Hello a

[Paraview] SelectInputVector attribute in the SurfaceLIC plugin

2017-09-11 Thread Wilhelm Lionel
Dear Paraviewers, I'm trying to use the SurfaceLIC plugin in a script intended to be executed by pvbatch. Naturally, I used the trace tool in the GUI to design my python script. When save the state in python and try to run it with pvbatch it raises the following error : ensight_full_cyclesca

Re: [Paraview] SelectInputVector attribute in the SurfaceLIC plugin

2017-09-11 Thread Utkarsh Ayachit
Lionel, Does your Python script load the plugin explcitly? Currently none of the state files capture which plugins are loaded, you have to manually load the plugin. You can use the following to load the plugin in your script before creating any of the proxies. LoadDistributedPlugin("SurfaceLIC",

Re: [Paraview] SelectInputVector attribute in the SurfaceLIC plugin

2017-09-11 Thread Wilhelm Lionel
Utkarsh, Thanks for the so quick reply :) Actually I explicitly load the plugin with the following command : LoadPlugin('/usr/lib/paraview-5.4/plugins/SurfaceLIC/libSurfaceLIC.so', remote=True, ns=globals()) I tried to load it with the command you suggested but it raises the same error. While i

Re: [Paraview] SelectInputVector attribute in the SurfaceLIC plugin

2017-09-11 Thread Utkarsh Ayachit
Lionel, There's indeed a bug there. A temporary workaround is as follows: LoadDistributedPlugin("SurfaceLIC", ns=globals()) Disconnect() Connect() A fix for the issue is here: https://gitlab.kitware.com/paraview/paraview/merge_requests/1898 I'll have it merged in before the next release. Utkars

[Paraview] Select points based on coordinates

2017-09-11 Thread Yifei Ma
Hi Paraviewers, I am trying to extract points based on the coordinates. I tried to use "Find Data" but with no success. I am wondering how can I obtain such a goal with "Find Data"? Or is there a workaround? FYI, I am using Paraview 5.4.1-RC3 64-bit on Windows 10. Thanks, Yifei _

[Paraview] Take spatial average on slice along a direction with a single filter

2017-09-11 Thread Shuhao Wu
Hello all, What I want to do is to take a bunch of X slices in my domain and compute the average on that slice for a particular quantity. I want to then be able to plot this as a line plot (X vs average quantity) and also find the coordinate X of a specific average quantity. I'm having troub

Re: [Paraview] Subdomain

2017-09-11 Thread Muhammad Kashif Saeed
Thanks, Cory, I can count the particles in a clip box but can you help me how to adjust the desired location of clip box because I have to use lot of clip box filters to cover the whole domain in small box domains. Thanks in advance ___ Powered by www.ki

Re: [Paraview] SelectInputVector attribute in the SurfaceLIC plugin

2017-09-11 Thread Wilhelm Lionel
Works like a charm, thanks a lot ! Lionel De : Utkarsh Ayachit Envoyé : lundi 11 septembre 2017 18:23 À : Wilhelm Lionel Cc : Paraview@paraview.org Objet : Re: [Paraview] SelectInputVector attribute in the SurfaceLIC plugin Lionel, There's indeed a bug t