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. 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 data ends up with exactly a value of .1. It sounds like what you want
> is to use the Contour filter on your rad array.
>
> On Wed, Dec 20, 2017 at 10:32 AM, Utkarsh Ayachit <
> utkarsh.ayac...@kitware.com> wrote:
>
>> 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.
>> > 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> > I click on extract and enter the values min = 0.1 and max 0.1 for rad
>> > I get this message
>> > warning: In
>> > /home/utkarsh/Dashboards/MyTests/NightlyMaster/ParaViewSuper
>> build-Release/paraview/src/paraview/ParaViewCore/
>> ServerManager/Rendering/vtkSMPVRepresentationProxy.cxx,
>> > line 279
>> >
>> > vtkSMPVRepresentationProxy (0x359fd080): Could not determine array
>> range.
>> >
>> >
>> > Any ideas to the solution of my problem?
>> > Thanks in advance,
>> > Stephen
>> >
>> > ___
>> > Powered by www.kitware.com
>> >
>> > Visit other Kitware open-source projects at
>> > http://www.kitware.com/opensource/opensource.html
>> >
>> > Please keep messages on-topic and check the ParaView Wiki at:
>> > http://paraview.org/Wiki/ParaView
>> >
>> > Search the list archives at: http://markmail.org/search/?q=ParaView
>> >
>> > Follow this link to subscribe/unsubscribe:
>> > https://paraview.org/mailman/listinfo/paraview
>> >
>> ___
>> Powered by www.kitware.com
>>
>> Visit other Kitware open-source projects at
>> http://www.kitware.com/opensource/opensource.html
>>
>> Please keep messages on-topic and check the ParaView Wiki at:
>> http://paraview.org/Wiki/ParaView
>>
>> Search the list archives at: http://markmail.org/search/?q=ParaView
>>
>> Follow this link to subscribe/unsubscribe:
>> https://paraview.org/mailman/listinfo/paraview
>>
>
>
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at http://www.kitware.com/
> opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
>
> Search the list archives at: http://markmail.org/search/?q=ParaView
>
> Follow this link to subscribe/unsubscribe:
> https://paraview.org/mailman/listinfo/paraview
>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
https://paraview.org/mailman/listinfo/paraview


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 something to do with App bundles on macOS and what
environment variables they see based on how you launch them. I can't
remember that of the top of my head, but that's where I'd start
looking.

Utkarsh


On Wed, Dec 20, 2017 at 5:50 PM, Heiland, Randy  wrote:
> 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 os.environ will indeed contain this new 
> env var.
>
>
>> On Dec 20, 2017, at 4:30 PM, Heiland, Randy  wrote:
>>
>> 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': 
>> '/private/tmp/com.apple.launchd.CM4C6EMoE6/Render', 'LOGNAME': 'heiland', 
>> 'USER': 'heiland', 'XPC_SERVICE_NAME': 'org.paraview.ParaView.6', 
>> 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'HOME': '/Users/heiland', 
>> 'DISPLAY': 
>> '/private/tmp/com.apple.launchd.4ORv1l0yeN/org.macosforge.xquartz:0', 
>> 'TMPDIR': '/var/folders/l6/s467rzgs75n91gdbkn7vr0f4gn/T/'}
>
>>
>> I’m guessing this is a security measure? Anyway, is there any way one can 
>> use an env var to pass in desirable info to PV’s Python, e.g., a dir path to 
>> data to be read by a Programmable Source? Or perhaps there’s some other 
>> entirely different way to do this?
>>
>> thanks, Randy
>> ___
>> Powered by www.kitware.com
>>
>> Visit other Kitware open-source projects at 
>> http://www.kitware.com/opensource/opensource.html
>>
>> Please keep messages on-topic and check the ParaView Wiki at: 
>> http://paraview.org/Wiki/ParaView
>>
>> Search the list archives at: http://markmail.org/search/?q=ParaView
>>
>> Follow this link to subscribe/unsubscribe:
>> https://paraview.org/mailman/listinfo/paraview
>
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at 
> http://www.kitware.com/opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at: 
> http://paraview.org/Wiki/ParaView
>
> Search the list archives at: http://markmail.org/search/?q=ParaView
>
> Follow this link to subscribe/unsubscribe:
> https://paraview.org/mailman/listinfo/paraview
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
https://paraview.org/mailman/listinfo/paraview


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 os.environ will indeed contain this new 
env var.


> On Dec 20, 2017, at 4:30 PM, Heiland, Randy  wrote:
> 
> 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': 
> '/private/tmp/com.apple.launchd.CM4C6EMoE6/Render', 'LOGNAME': 'heiland', 
> 'USER': 'heiland', 'XPC_SERVICE_NAME': 'org.paraview.ParaView.6', 'PATH': 
> '/usr/bin:/bin:/usr/sbin:/sbin', 'HOME': '/Users/heiland', 'DISPLAY': 
> '/private/tmp/com.apple.launchd.4ORv1l0yeN/org.macosforge.xquartz:0', 
> 'TMPDIR': '/var/folders/l6/s467rzgs75n91gdbkn7vr0f4gn/T/'}
 
> 
> I’m guessing this is a security measure? Anyway, is there any way one can use 
> an env var to pass in desirable info to PV’s Python, e.g., a dir path to data 
> to be read by a Programmable Source? Or perhaps there’s some other entirely 
> different way to do this?
> 
> thanks, Randy
> ___
> Powered by www.kitware.com
> 
> Visit other Kitware open-source projects at 
> http://www.kitware.com/opensource/opensource.html
> 
> Please keep messages on-topic and check the ParaView Wiki at: 
> http://paraview.org/Wiki/ParaView
> 
> Search the list archives at: http://markmail.org/search/?q=ParaView
> 
> Follow this link to subscribe/unsubscribe:
> https://paraview.org/mailman/listinfo/paraview

___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
https://paraview.org/mailman/listinfo/paraview


[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': 
'/private/tmp/com.apple.launchd.CM4C6EMoE6/Render', 'LOGNAME': 'heiland', 
'USER': 'heiland', 'XPC_SERVICE_NAME': 'org.paraview.ParaView.6', 'PATH': 
'/usr/bin:/bin:/usr/sbin:/sbin', 'HOME': '/Users/heiland', 'DISPLAY': 
'/private/tmp/com.apple.launchd.4ORv1l0yeN/org.macosforge.xquartz:0', 'TMPDIR': 
'/var/folders/l6/s467rzgs75n91gdbkn7vr0f4gn/T/'}
>>> 

I’m guessing this is a security measure? Anyway, is there any way one can use 
an env var to pass in desirable info to PV’s Python, e.g., a dir path to data 
to be read by a Programmable Source? Or perhaps there’s some other entirely 
different way to do this?

thanks, Randy
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
https://paraview.org/mailman/listinfo/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

Address: No.17, YunGang West Road, Fengtai District, Beijing, China

Zip Code:100074

On Wed, Dec 20, 2017 at 9:43 AM, Cory Quammen 
wrote:

> 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, 程迪  wrote:
>
>> Hi everyone,
>>
>> I just compiled paraview 5.4.1 using vs 2017 in win 10 using qt 5.10.
>> The compilation works but only the `pvserver` works while the
>> `paraview.exe` cannot run.
>>
>> The error is :Entry Point Not Found:
>> [image: Inline image 1]
>> entry point  `?setSelectionModel@QListWidget ... ` could not be located
>> in the dynamic link library `C:\pv54_diy\bin\vtkpqComponents-pv5.4.dll`
>>
>>
>> Here is what I did:
>> - win10 64bit
>> - vs2017 community version
>> - MSMPI  8.1.12438.1091 runtime and SDK
>> - QT 5.10.0 using msvc2017_64/lib
>> - cmake version 3.10.1
>> - Python 3.6.3 :: Anaconda, Inc.
>> - I compiled the boost 1.66.0 myself
>> - I attached the `CMakeCache.txt` file in the email.
>>
>>
>> I tried to solve this problem like this:
>> - locate  `vtkpqComponents` in the vtk source code. I cannot locate where
>> it is, so I cannot find which file is responsible for this, I also cannot
>> identify what this `dll` file is used for.
>> - I searched the maillist archive, cannot find anything useful.
>> - I tried to read the successful build log on DashBoard:
>> https://open.cdash.org/buildSummary.php?buildid=5187747, However, I
>> cannot see essential difference.
>> - I can run `pvserver` and use the official release of paraview 5.4.1 gui
>> client to connect to it. I can open the head dataset and render it using
>> volume mode remotely.
>>
>> Could anyone help me?
>>
>> 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
>>
>> Address: No.17, YunGang West Road, Fengtai District, Beijing, China
>> 
>>
>> Zip Code:100074
>> 
>>
>> ___
>> Powered by www.kitware.com
>>
>> Visit other Kitware open-source projects at
>> http://www.kitware.com/opensource/opensource.html
>>
>> Please keep messages on-topic and check the ParaView Wiki at:
>> http://paraview.org/Wiki/ParaView
>>
>> Search the list archives at: http://markmail.org/search/?q=ParaView
>>
>> Follow this link to subscribe/unsubscribe:
>> https://paraview.org/mailman/listinfo/paraview
>>
>>
>
>
> --
> Cory Quammen
> Staff R Engineer
> Kitware, Inc.
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
https://paraview.org/mailman/listinfo/paraview


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 
Subject: [EXTERNAL] Re: [Paraview] getting Client Info

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 “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

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
https://paraview.org/mailman/listinfo/paraview



--
Cory Quammen
Staff R Engineer
Kitware, Inc.
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
https://paraview.org/mailman/listinfo/paraview


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 data ends up with exactly a value of .1. It sounds like what you want
is to use the Contour filter on your rad array.

On Wed, Dec 20, 2017 at 10:32 AM, Utkarsh Ayachit <
utkarsh.ayac...@kitware.com> wrote:

> 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.
> > 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 > I click on extract and enter the values min = 0.1 and max 0.1 for rad
> > I get this message
> > warning: In
> > /home/utkarsh/Dashboards/MyTests/NightlyMaster/
> ParaViewSuperbuild-Release/paraview/src/paraview/
> ParaViewCore/ServerManager/Rendering/vtkSMPVRepresentationProxy.cxx,
> > line 279
> >
> > vtkSMPVRepresentationProxy (0x359fd080): Could not determine array range.
> >
> >
> > Any ideas to the solution of my problem?
> > Thanks in advance,
> > Stephen
> >
> > ___
> > Powered by www.kitware.com
> >
> > Visit other Kitware open-source projects at
> > http://www.kitware.com/opensource/opensource.html
> >
> > Please keep messages on-topic and check the ParaView Wiki at:
> > http://paraview.org/Wiki/ParaView
> >
> > Search the list archives at: http://markmail.org/search/?q=ParaView
> >
> > Follow this link to subscribe/unsubscribe:
> > https://paraview.org/mailman/listinfo/paraview
> >
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at http://www.kitware.com/
> opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
>
> Search the list archives at: http://markmail.org/search/?q=ParaView
>
> Follow this link to subscribe/unsubscribe:
> https://paraview.org/mailman/listinfo/paraview
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
https://paraview.org/mailman/listinfo/paraview


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.
> 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 I click on extract and enter the values min = 0.1 and max 0.1 for rad
> I get this message
> warning: In
> /home/utkarsh/Dashboards/MyTests/NightlyMaster/ParaViewSuperbuild-Release/paraview/src/paraview/ParaViewCore/ServerManager/Rendering/vtkSMPVRepresentationProxy.cxx,
> line 279
>
> vtkSMPVRepresentationProxy (0x359fd080): Could not determine array range.
>
>
> Any ideas to the solution of my problem?
> Thanks in advance,
> Stephen
>
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at
> http://www.kitware.com/opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
>
> Search the list archives at: http://markmail.org/search/?q=ParaView
>
> Follow this link to subscribe/unsubscribe:
> https://paraview.org/mailman/listinfo/paraview
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
https://paraview.org/mailman/listinfo/paraview


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: [Paraview] PV4.10 extracting a surface

> 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 I click on extract and enter the values min = 0.1 and max 0.1 for rad
> I get this message
> w arning: In
> /home/utkarsh/Dashboards/MyTests/NightlyMaster/ParaViewSuperbuild-Release/paraview/src/paraview/ParaViewCore/ServerManager/Rendering/vtkSMPVRepresentationProxy.cxx,
> line 279

> vtkSMPVRepresentationProxy (0x359fd080): Could not determine array range.
> Any ideas to the solution of my problem?
> Thanks in advance,
> Stephen

> ___
> Powered by www.kitware.com

> Visit other Kitware open-source projects at
> http://www.kitware.com/opensource/opensource.html

> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView

> Search the list archives at: http://markmail.org/search/?q=ParaView

> Follow this link to subscribe/unsubscribe:
> https://paraview.org/mailman/listinfo/paraview
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
https://paraview.org/mailman/listinfo/paraview


[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] 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:

> 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 “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
>>
>> Visit other Kitware open-source projects at
>> http://www.kitware.com/opensource/opensource.html
>>
>> Please keep messages on-topic and check the ParaView Wiki at:
>> http://paraview.org/Wiki/ParaView
>>
>> Search the list archives at: http://markmail.org/search/?q=ParaView
>>
>> Follow this link to subscribe/unsubscribe:
>> https://paraview.org/mailman/listinfo/paraview
>>
>
>
>
> --
> Cory Quammen
> Staff R Engineer
> Kitware, Inc.
>
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at http://www.kitware.com/
> opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
>
> Search the list archives at: http://markmail.org/search/?q=ParaView
>
> Follow this link to subscribe/unsubscribe:
> https://paraview.org/mailman/listinfo/paraview
>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
https://paraview.org/mailman/listinfo/paraview


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 “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
>
> Visit other Kitware open-source projects at http://www.kitware.com/
> opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
>
> Search the list archives at: http://markmail.org/search/?q=ParaView
>
> Follow this link to subscribe/unsubscribe:
> https://paraview.org/mailman/listinfo/paraview
>



-- 
Cory Quammen
Staff R Engineer
Kitware, Inc.
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
https://paraview.org/mailman/listinfo/paraview


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, 程迪  wrote:

> Hi everyone,
>
> I just compiled paraview 5.4.1 using vs 2017 in win 10 using qt 5.10.
> The compilation works but only the `pvserver` works while the
> `paraview.exe` cannot run.
>
> The error is :Entry Point Not Found:
> [image: Inline image 1]
> entry point  `?setSelectionModel@QListWidget ... ` could not be located
> in the dynamic link library `C:\pv54_diy\bin\vtkpqComponents-pv5.4.dll`
>
>
> Here is what I did:
> - win10 64bit
> - vs2017 community version
> - MSMPI  8.1.12438.1091 runtime and SDK
> - QT 5.10.0 using msvc2017_64/lib
> - cmake version 3.10.1
> - Python 3.6.3 :: Anaconda, Inc.
> - I compiled the boost 1.66.0 myself
> - I attached the `CMakeCache.txt` file in the email.
>
>
> I tried to solve this problem like this:
> - locate  `vtkpqComponents` in the vtk source code. I cannot locate where
> it is, so I cannot find which file is responsible for this, I also cannot
> identify what this `dll` file is used for.
> - I searched the maillist archive, cannot find anything useful.
> - I tried to read the successful build log on DashBoard:
> https://open.cdash.org/buildSummary.php?buildid=5187747, However, I
> cannot see essential difference.
> - I can run `pvserver` and use the official release of paraview 5.4.1 gui
> client to connect to it. I can open the head dataset and render it using
> volume mode remotely.
>
> Could anyone help me?
>
> 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
>
> Address: No.17, YunGang West Road, Fengtai District, Beijing, China
>
> Zip Code:100074
>
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at http://www.kitware.com/
> opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
>
> Search the list archives at: http://markmail.org/search/?q=ParaView
>
> Follow this link to subscribe/unsubscribe:
> https://paraview.org/mailman/listinfo/paraview
>
>


-- 
Cory Quammen
Staff R Engineer
Kitware, Inc.
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
https://paraview.org/mailman/listinfo/paraview


[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

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
https://paraview.org/mailman/listinfo/paraview