Re: [Paraview] Depth rendering issues on ParaView Desktop 5.1.0

2016-08-09 Thread Júlio Hoffimann
Hi David, Thank you for your attention. All your comments were really helpful and we definitely narrowed the location of the bug further. Given that 5.x.x works well in your Arch Linux, we are for sure talking about driver-related issues. I don't know to what extent these drivers are being used, b

Re: [Paraview] custom filter doesn't update property in the Paraview UI

2016-08-09 Thread corinna reuter
Hi Cory, that's fine, I have some experience developing Qt UIs. But there is one difficulty with ParaView: I couldn't find any examples or documentation how to extend the existing widgets? Where do I plug in the additional elements, is it possible in some xml plugin description, or do I have to har

[Paraview] Paraview Build python dependency

2016-08-09 Thread michal wozniak
Hi, I am building ParaView from source. When we test my release version on a different system, we can't use any feature that uses python : trace, python shell ... I installed your binary version and I saw that you provided the python27.DLL and a Lib folder which seem to be the one from python

Re: [Paraview] Importing paraview.simple from python

2016-08-09 Thread Mohammad Mirzadeh
Thanks Utkarsh. Two issues: 1- Looks like I have to use OS X provided python (2.7)? Using any other python results in Fatal Python error: PyThreadState_Get: no current thread 2- using system python I get some unresolved symbol issue with MPI. Traceback (most recent call last): File "", line

Re: [Paraview] EXTERNAL: Re: Face-centered variables

2016-08-09 Thread Jim.Eliot
Hi Andy, Cory, Your advice pointed me in the right direction. I originally thought that the variable was face-centered, but it was actually a variable on a side set (which wasn’t loaded by default). When I finally realised I had to load the set (hidden in the advanced properties), the variable

Re: [Paraview] Importing paraview.simple from python

2016-08-09 Thread Utkarsh Ayachit
Attached is a script from an older email. The 5.1.* uses Python 2.7, so you'll need to update the script accordingly. I haven't tested it (as I don't have my Mac here), but it should give you some hints. Utkarsh On Tue, Aug 9, 2016 at 12:10 PM, Mohammad Mirzadeh wrote: > Along the same lines, is

Re: [Paraview] Difference between "Glyph type" and "Glyph source"

2016-08-09 Thread Utkarsh Ayachit
"Glyph Source" is a group title. All properties under that header until the the next group header or a separator affect the "Gylph Source". "Glyph Type" allows you to pick the type of glyph source. The rest of the properties in that group update based on the chosen glyph type. Utkarsh On Tue, Au

Re: [Paraview] Importing paraview.simple from python

2016-08-09 Thread Mohammad Mirzadeh
Along the same lines, is this possible with prebuilt binaries on OS X? I have tried including export PYTHONPATH="$PYTHONPATH:/Applications/paraview.app/Contents/Python" export PYTHONPATH="$PYTHONPATH:/Applications/paraview.app/Contents/Python/vtk" export DYLD_LIBRARY_PATH="$DYLD_LIBRARY_PATH:/Appl

[Paraview] Difference between "Glyph type" and "Glyph source"

2016-08-09 Thread zackary beaugelin
Hello dear users, While working on glyphes (pipeline), I noticed there was 2 properties menus 1 named "Glyph type" and the other "Glyph source". Since I don't find anything on "Glyph source" and it doesn't seem to modify the glyph, does anybody know the difference between those two properties?

Re: [Paraview] Importing paraview.simple from python

2016-08-09 Thread Utkarsh Ayachit
Here's a sample launch script: #-- #!/usr/bin/env bash pvprefix=/tmp/ParaView-5.1.2-Qt4-OpenGL2-MPI-Linux-64bit/ export PYTHONPATH=$pvprefix/lib/paraview-5.1/site-packages/vtk:$pvprefix/lib/paraview-5.1/site-packages export LD_LIBRARY_PATH=$pvprefix/lib

Re: [Paraview] Custom filters displayed in a category

2016-08-09 Thread Utkarsh Ayachit
Can you try removing relevant configuration files from your ~/.config/* directory and see? We've had similar issues with config files messing with the menus in the past. I wonder if you're running into that. Running your app with "-dr" command line argument should have the same effect. On Tue, Aug

Re: [Paraview] Face-centered variables

2016-08-09 Thread Andy Bauer
Hi Jim, In ParaView there is only field values associated with points and cells. If by face data you mean data associated with 2D cells then Cory's email is the correct one. If by face values you mean field data associated with a face of a 3D cell, ParaView does not currently support that. If it's

Re: [Paraview] Face-centered variables

2016-08-09 Thread Cory Quammen
Jim, By plot, do you mean coloring the faces by the face-centered values mapped through a color map? And by face-centered, do you mean each face has one data value? If I have your meaning right, that is indeed possible - you should be able to choose your variable in the "Color By" combo box. Here

[Paraview] Face-centered variables

2016-08-09 Thread Jim.Eliot
Good afternoon ParaView users, Is there a method for plotting face-centered variables within ParaView? The variable appears in the Variables list of the Properties panel but I can't find a way to plot it. Any ideas? Kind regards, Jim Jim Eliot High Performance Computing Group AWE, Aldermaston

Re: [Paraview] Save Animation Bug (possibly)

2016-08-09 Thread Utkarsh Ayachit
Odd, but glad it's working. Utkarsh On Mon, Aug 8, 2016 at 1:05 PM, Clayton C wrote: > Hey Utkarsh, > > I ended up with the same problem. However, I started deleting components > from the pipeline to see if that had any impact. I deleted the .stl files I > had loaded in that I was using to bette

Re: [Paraview] Depth rendering issues on ParaView Desktop 5.1.0

2016-08-09 Thread David Lonie
On Mon, Aug 8, 2016 at 9:55 PM, Júlio Hoffimann wrote: > According to the Arch Linux documentation > (https://wiki.archlinux.org/index.php/xorg#Driver_installation), the Intel > driver has priority over the others, is it being picked up in the log? I'm afraid this is going beyond my ability to he

Re: [Paraview] Animated Particles in ParaView ...

2016-08-09 Thread Niklas Röber
Never mind. If someone else needs to do similar things, have a closer look at the vtkParticleReader class: http://www.vtk.org/doc/nightly/html/classvtkParticleReader.html Just wrote a Matlab script that transforms all my data into a particle time series, which can be opened in ParaView, even

[Paraview] Custom filters displayed in a category

2016-08-09 Thread zackary beaugelin
Hello dear users, I'm currently developing some filters (compiled into a custom plugin) under a custom version of Paraview. The different filters are (supposed to be) displayed in a category in the menu "Filters". On a Ubuntu 14.04 64bits computer they are not displayed (2 out of 3 still findab

Re: [Paraview] Slicing a sphere based on longitudes and latitudes

2016-08-09 Thread Lester Anderson
Hi Ken, Thanks for the info, that all worked fine. Sorry bit of a late response. On a similar theme, is it easy to make a great circle slice (with the origin at 000) that plots through two long-lat points? I'm guessing that this scenario would be a rotation about x, y and z ? Thanks Lester _