Re: [Paraview] ParaView 5.2 Release Candidate 1 available for download

2016-10-17 Thread Gena Bug via ParaView

Hi!

The next message appears when running pvpython in a console:

Could not find platform dependent libraries 
Consider setting $PYTHONHOME to [:]

Then prompt appears and everything works as expected.


On 11.10.2016 16:50, Cory Quammen wrote:

On behalf of the ParaView development team, I am pleased to announce
that ParaView 5.2 Release Candidate 1 binaries and source tarballs are
now available for download at

http://www.paraview.org/download/

Please let us know if you encounter any problems with this release candidate.

Thanks,
Cory


___
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:
http://public.kitware.com/mailman/listinfo/paraview


[Paraview] Tiled Display

2016-10-17 Thread Vincent Perry
Hello,

We are trying to run ParaView on our tiled display wall. We have a head
node where the data is hosted, then three client machines that output to
the display wall. Currently, we have ParaView on each of the 4 machines. I
start a pvserver on each of the client machines, with -tdx and -tdy
parameters. I then run a ParaView client on the head machine. Once ParaView
is running on the head machine, I can connect to one of the other three
machines at a time. When I connect to one of the machines, ParaView runs
full screen on the section of the display wall driven by that machine.
However, I am not sure how to make it connect to all three machines at once
to run fullscreen on the tiled display wall. Do I need to configure the
client machines with MPI turned on? Or is there a way I can specify a
configuration file for the ParaView client running on the head node to use
all three machines driving the wall? Thanks in advance.

Vince Perry
___
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:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] Tiled Display

2016-10-17 Thread Mathieu Westphal
Hello

pvserver is an MPI application ( considering it was compiled with it, which
is the case for default binaries )
You should document yourself on the ways to run mpi program on mutliple
computer with the mpi implementation you are using

With openmpi it would be something like that
mpirun -machinefile path/to/your/machine/file -np 4 ./pvserver

you machine file should like this :

//machinefile:
hostnameA
hostnameB

and each machine must be accessible via ssh.

Once again, it is nothing specific to ParaView, but to MPI.

Regards,



Mathieu Westphal

On Mon, Oct 17, 2016 at 2:28 PM, Vincent Perry  wrote:

> Hello,
>
> We are trying to run ParaView on our tiled display wall. We have a head
> node where the data is hosted, then three client machines that output to
> the display wall. Currently, we have ParaView on each of the 4 machines. I
> start a pvserver on each of the client machines, with -tdx and -tdy
> parameters. I then run a ParaView client on the head machine. Once ParaView
> is running on the head machine, I can connect to one of the other three
> machines at a time. When I connect to one of the machines, ParaView runs
> full screen on the section of the display wall driven by that machine.
> However, I am not sure how to make it connect to all three machines at once
> to run fullscreen on the tiled display wall. Do I need to configure the
> client machines with MPI turned on? Or is there a way I can specify a
> configuration file for the ParaView client running on the head node to use
> all three machines driving the wall? Thanks in advance.
>
> Vince Perry
>
> ___
> 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:
> http://public.kitware.com/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:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] Customized sampling grid for Point Volume Interpolator or Gaussian re-sampling?

2016-10-17 Thread Utkarsh Ayachit
> actually I am already doing this. my problem is with the volume generated by
> the PointVolume filter and the point cloud. by default the volume is a cube.
> dimensions and locations can be changed, but is it possible to use something
> else than the default cube before resampling the volume on the geometry of
> interest?

The only "shapes" currently supported are volume, plane and line.
___
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:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] ParaView 5.2 Release Candidate 1 available for download

2016-10-17 Thread Ben Boeckel
On Mon, Oct 17, 2016 at 14:31:56 +0300, Gena Bug via ParaView wrote:
> The next message appears when running pvpython in a console:
> 
> Could not find platform dependent libraries 
> Consider setting $PYTHONHOME to [:]
> 
> Then prompt appears and everything works as expected.

This appears because we sort of hack up the Python installation which
Python doesn't like. It appears that just creating the
lib/python2.7/lib-dynload directory should suppress this warning. Can
you confirm before I respin a whole binary for it (the warning isn't
showing up at all on my machine)?

--Ben
___
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:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] ParaView 5.2 Release Candidate 1 available for download

2016-10-17 Thread Gena Bug via ParaView

On 17.10.2016 17:28, Ben Boeckel wrote:

On Mon, Oct 17, 2016 at 14:31:56 +0300, Gena Bug via ParaView wrote:

The next message appears when running pvpython in a console:

Could not find platform dependent libraries 
Consider setting $PYTHONHOME to [:]

Then prompt appears and everything works as expected.


This appears because we sort of hack up the Python installation which
Python doesn't like. It appears that just creating the
lib/python2.7/lib-dynload directory should suppress this warning. Can
you confirm before I respin a whole binary for it (the warning isn't
showing up at all on my machine)?

Yep, this helped! Thank you, Ben.


--Ben


___
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:
http://public.kitware.com/mailman/listinfo/paraview


[Paraview] View geotiff in Paraview?

2016-10-17 Thread Adam Dershowitz
I have a geotiff that I would like to view in preview.  I’m able to open it, 
and view it, but the problem is that the scale and origin are not correct.  It 
seems that preview is just opening it as a TIFF and is ignoring the origin, 
corners and pixel size in the geotiff.  The problem is that I want to overlay 
some other polygons that are in a known location, so this placement is 
important (and off by hundreds of thousands of meters.)
Can paraview open a geotiff?  If not, is there an easy way to just offset and 
scale data in Paraview?  It seems like it can be done by manually adding a 
Transform filter and then forcing it to scale and translate as necessary.  
Although getting it all lined up is not trivial.

Thanks,


-- Adam

___
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:
http://public.kitware.com/mailman/listinfo/paraview


[Paraview] Polyhedral Cells: Rendering Problem with OpenGL...

2016-10-17 Thread Stefan Melber

Hi,

i found a rendering problem with cuts through polyhedral cells depending 
on which rendering backend is used. For example in PV 5.1.2 compiled with


VTK_RENDERING_BACKEND = OpenGL

a cut looks like error.opengl.v5_1_2.png - there is a wrong shading and 
some facets coming from the wrong starting point.


Switching to OpenGL2 everything is fine (error.opengl2.v5_1_2.png). This 
problem is the same with ParaView 5.2.0RC1 and OpenGL or OpenGL2 - 
however there seems to be an additional (smaller) problem using OpenGL2: 
there are some lines drawn outside of the shell - see 
error.opengl2.v5_2_0rc1.png (cutted on a different position).


The example cell is for testing is attached as "error.vtk" - cut e.g. in 
x-direction on different positions to get the described effects.


Best regards,

   Stefan


System:
o OpenSuse Tumbleweed
o Kernel: 4.7.6-1
o Linux 64 bit
o NVidia Quadro 4000 / NV Driver v367.44





 _/ *Dr. Stefan Melber-Wilkending*
   _/_/
 _/  _/ Deutsches Zentrum für Luft-
 _/_/_/_/_/_/_/_/_/_/ und Raumfahrt e.V. (DLR)
   _/_/_/_/
 _/_/_/_/ German Aerospace Center
   _/_/_/_/_/_/_/_/_/_/  Institute of Aerodynamics
 _/  _/  _  _   and Flow Technology
 _/_/   | \ |  |_|   Transport Aircraft Branch
 _/ |_/ |_ | \
 Lilienthalplatz 7
 Fields of activities:  38108 Braunschweig
 Germany
 o Numerical Windtunnel Simulation
 o Aero-Acoustic Windtunnel DesignPhone : +49 531/295-2836
 o Numerical Optimization Fax. .: +49 531/295-2914
 o Visualization Techniques
 o High-Lift Aerodynamics   Email : stefan.mel...@dlr.de
 o Glider-Aerodynamics  Web ..: http://www.dlr.de/AS



# vtk DataFile Version 4.0
vtk output
ASCII
DATASET UNSTRUCTURED_GRID
POINTS 97  double
-1.1678579708e-03 9.2911289041e-03 2.5286155539e-02
-8.2228823642e-05 1.1809558169e-02 2.3984166540e-02
-1.0997544429e-03 1.0890513515e-02 2.5523466618e-02
-8.6275784794e-04 9.0324088978e-03 2.4649455673e-02
-2.0911074181e-03 1.0951190314e-02 2.5479307235e-02
-1.8852803827e-03 9.2003850579e-03 2.5158523542e-02
-1.6921729205e-03 8.8839864738e-03 2.4317753216e-02
-1.5393073075e-03 8.9699089996e-03 2.4168580198e-02
-3.0930530779e-03 1.1163187936e-02 2.2427799683e-02
-1.4954974490e-03 1.0891377542e-02 2.3354965611e-02
-2.3801393448e-03 8.7062470165e-03 2.3867849307e-02
-8.6275784794e-04 9.0324088978e-03 2.4649455673e-02
-2.5162933505e-03 9.0433530063e-03 2.4689188101e-02
-2.8790339231e-03 1.0391932489e-02 2.4715009158e-02
-2.3801393448e-03 8.7062470165e-03 2.3867849307e-02
-8.8301537653e-04 1.0401998531e-02 2.2514395761e-02
-3.2714189768e-04 1.0852654231e-02 2.1781592910e-02
3.3067144604e-04 1.0852942747e-02 2.2723512526e-02
-1.5494533870e-03 1.0322194831e-02 2.1679050318e-02
-1.4954974490e-03 1.0891377542e-02 2.3354965611e-02
1.6729941668e-03 1.2877865404e-02 2.2766339557e-02
1.3898429416e-03 1.2592426337e-02 2.1780068693e-02
1.5116730237e-03 1.3319175484e-02 2.2232065667e-02
1.6672049532e-03 1.2221571166e-02 2.2520534956e-02
2.5636238290e-04 1.2975320075e-02 2.4023179678e-02
-5.0748083145e-04 1.3923299147e-02 2.3466253996e-02
1.5238816153e-03 1.1541658271e-02 2.2134951154e-02
1.6672049532e-03 1.2221571166e-02 2.2520534956e-02
1.3007773370e-03 1.1713011501e-02 2.1473013166e-02
3.3067144604e-04 1.0852942747e-02 2.2723512526e-02
-4.7606195390e-03 1.2592837308e-02 2.3967769268e-02
-3.1817895144e-03 1.3076505345e-02 2.1997932701e-02
-3.6224977390e-03 1.1947131590e-02 2.1963742006e-02
-4.6077562354e-03 1.3344060065e-02 2.4196469931e-02
-4.1234707605e-03 1.3101335942e-02 2.5040848691e-02
-4.5823052865e-03 1.2212691539e-02 2.4402172158e-02
-4.0052475939e-03 1.1408539684e-02 2.5332147698e-02
-4.5823052865e-03 1.2212691539e-02 2.4402172158e-02
-3.6072155284e-03 1.1940668721e-02 2.5973546283e-02
-2.8790339231e-03 1.0391932489e-02 2.4715009158e-02
-2.0832536008e-04 1.3175091275e-02 2.5907002894e-02
-1.2807360523e-03 1.2970640576e-02 2.6200840999e-02
-5.0754803869e-04 1.2526203841e-02 2.6138221991e-02
-6.9764932126e-04 1.3666581634e-02 2.5955178667e-02
-9.8759402067e-04 1.1721554754e-02 2.6405863594e-02
-1.6463671027e-03 1.1931451638e-02 2.6474688864e-02
-5.0754803869e-04 1.2526203841e-02 2.6138221991e-02
1.0726573937e-03 1.2068875003e-02 2.0787069069e-02
1.3007773370e-03 1.1713011501e-02 2.1473013166e-02
1.0758842548e-03 1.2835197415e-02 2.0905382329e-02
-3.8825164755e-04 1.3012474652e-02 2.0584029678e-02
5.7248074466e-05 1.1852221151e-02 2.0582785131e-02
1.1987126437e-03 1.3474712234e-02 2.1377794022e-02
1.0758842548e-03 1.2835197415e-02 2.0905382329e-02
1.2629710342e-04 1.3812745907e-02 2.1329132389e-02
-1.696774