Re: [Paraview] PV4.10 extracting a surface

2017-12-20 Thread Andrew
Hello. Possibly the Slice filter with "Cylinder" and "Crinkle slice" options will produce the required result (I checked in ParaView 5.2). 2017-12-20 18:46 GMT+03:00 Andy Bauer : > The Threshold filter works by selecting cells that have cell data in the > selected range.

Re: [Paraview] paraview GUI entry point not found in win10, compiled with qt 5.10 and vs 2017.

2017-12-20 Thread Cory Quammen
Check your PATH environment variable to make sure nothing is inserting a path Qt DLLs different from the Qt with which you built ParaView. Note that CMake installs Qt DLLs, so if you have that installed, your PATH may be set to point to those DLLs. HTH, Cory On Tue, Dec 19, 2017 at 7:01 PM, 程迪

[Paraview] getting Client Info

2017-12-20 Thread Heiland, Randy
On the “About ParaView” popup window, there’s a “Client Information” tab, but I can’t seem to copy/paste that info. Is there a way to easily get it? I happen to be on OS X, but interested for all OSes. thanks, Randy ___ Powered by www.kitware.com

Re: [Paraview] getting Client Info

2017-12-20 Thread Cory Quammen
On my Mac, I can copy individual cells, but not the whole table. It would be a nice feature. Feel free to write up a feature request in the issue tracker: gitlab.kitware.com/paraview/paraview/issues Thanks, Cory On Wed, Dec 20, 2017 at 8:26 AM, Heiland, Randy wrote: > On the

[Paraview] PV4.10 extracting a surface

2017-12-20 Thread Stephen Wornom
The geometry is a cylinder. Using the calculator I do rad =sqrt( x**2+y**2) I would like to extract the cylinder surface which is rad = 0.1 I click on threshold then information to see rad 0.1

Re: [Paraview] PV4.10 extracting a surface

2017-12-20 Thread Andy Bauer
The Threshold filter works by selecting cells that have cell data in the selected range. If you're requesting to do thresholding on a point data array then it will use the point data to cell data filter to create a cell data array and threshold on that. With this, it's very unlikely that any cell

Re: [Paraview] getting Client Info

2017-12-20 Thread Mathieu Westphal
Hello At least some of these information can be recovered via the PythonShell : >>> GetParaViewSourceVersion() 'paraview version 5.4.1-1057-g3ffb4b3e0a' >>> GetParaViewVersion() 5.4 Best, Mathieu Westphal On Wed, Dec 20, 2017 at 4:04 PM, Cory Quammen wrote:

Re: [Paraview] PV4.10 extracting a surface

2017-12-20 Thread Utkarsh Ayachit
I believe you're getting the warning because the threshold ended up not producing any output. If you can attach the state/data file, I may be able to can give more info. Utkarsh On Wed, Dec 20, 2017 at 10:15 AM, Stephen Wornom wrote: > The geometry is a cylinder. >

Re: [Paraview] PV4.10 extracting a surface

2017-12-20 Thread Stephen Wornom
Forgot to mention that the mesh is 3D x,y,z. rad =sqrt( x**2+y**2) thus varies with the z-coordinate. Stephen - Original Message - > From: "Stephen Wornom" > To: "ParaView" > Sent: Wednesday, December 20, 2017 4:15:43 PM > Subject:

Re: [Paraview] [EXTERNAL] Re: getting Client Info

2017-12-20 Thread Scott, W Alan
Good idea. Thanks. I wrote it up. https://gitlab.kitware.com/paraview/paraview/issues/17902 Alan From: ParaView [mailto:paraview-boun...@paraview.org] On Behalf Of Cory Quammen Sent: Wednesday, December 20, 2017 8:04 AM To: Heiland, Randy Cc: ParaView

Re: [Paraview] paraview GUI entry point not found in win10, compiled with qt 5.10 and vs 2017.

2017-12-20 Thread 程迪
Thank you! it works! I found it conflict with my miniconda python, which uses and contains qt5.6.2 Di Cheng Engineer of Research and Development Center, visiting scholar at University of Connecticut China Academy of Aerospace Aerodynamics Phone @ China: +86-l58Ol5949ll Phone @ US: +l-86O-6l7-l886

[Paraview] Python shell, os.environ

2017-12-20 Thread Heiland, Randy
I noticed the Python shell has a very limited os.environ, e.g.: >>> os.environ {'SHELL': '/bin/bash', 'SSH_AUTH_SOCK': '/private/tmp/com.apple.launchd.y86uYmHWFV/Listeners', 'XPC_FLAGS': '0x0', '__CF_USER_TEXT_ENCODING': '0x1F5:0x0:0x0', 'Apple_PubSub_Socket_Render':

Re: [Paraview] Python shell, os.environ

2017-12-20 Thread Heiland, Randy
Ah, I see ‘os’ has been hijacked by PV. But something like this seems to accomplish what I want, maybe… Create a new module for PV: /Applications/ParaView-5.4.1.app/Contents/Python$ more envs.py import os os.environ['PHYSICELL_DATA']=‘/fill_in_path’ and then in the PV Python shell, the

Re: [Paraview] Python shell, os.environ

2017-12-20 Thread Utkarsh Ayachit
Randy, No, `os` hasn't been hijacked by PV. Here's what I get on Linux. ./bin/pvpython Python 3.5.2 (default, Nov 23 2017, 16:37:01) [GCC 5.4.0 20160609] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import os >>> os.environ["FOO"] '12' I suspect it's