[Paraview] XDMF wrong format?

2015-12-18 Thread Nico Schlömer
Hi everyone, I'm creating XDMF files with VTK's XdmfWriter, and while the contents of the file look alright to me (representing two tetrahedra), ParaView 5.0RC1 will only show two triangles. Not sure where this is going wrong. The file is attached. Any hints? Cheers, Nico test.xmf

[Paraview] Building paraview with piston -- enabling GPGPU support

2015-12-18 Thread Baker D.J.
Hello, I am trying to integrate GPGPU support in paraview v4.4.0. With that in mind I have enabled "PARAVIEW_USE_PISTON" in the cmake configurator, and downloaded the Piston source code. The software that I'm using is... Paraview 4.4.0 Piston 0.4 Cuda toolkit 7.5.18 The make fails when

Re: [Paraview] Selecting a point in Python

2015-12-18 Thread Cory Quammen
HI Alan, Selections are indeed possible in Python, though as you have found they are not recorded in traces. You should be able to do something like this to select one or more points: can = GetActiveSource() # Extract the desired block first extractBlock = ExtractBlock(Input=can)

[Paraview] Paraview v5.0.0-rc2 with OpenGL2 backend failing to start in parallel

2015-12-18 Thread Albina, Frank
Dear all! I recompiled Paraview-v5.0.0-rc2 from scratch using OpenMPI v1.6.5 and GCC v4.7.2 on my workstation. The QT & Python versions are the default system versions and are resp. 4.8.4 & 2.7.3. After successful compilation and installation, I start 8 parallel pvserver instances with:

Re: [Paraview] Building paraview with piston -- enabling GPGPU support

2015-12-18 Thread David E DeMarle
What you are seeing is that piston has evolved since the we wrote the vtk module that interfaces to it. I think the same is true of thrust evolving since piston 0.4. So, in order to make it work without modifying the code, you will need to use older versions. Instead of doing that, I recommend

[Paraview] Accessing plane properties (origin) for a custom filter including a slice filter

2015-12-18 Thread Ben Held
I'm trying to create a customer filter that involves a slice filter. For simplicity, assume that's the only content in the custom filter. Why doesn't the properties step in the custom filter wizard allow me to expose parameters for the plane used in the slice? Thanks, Ben

Re: [Paraview] Paraview v5.0.0-rc2 with OpenGL2 backend failing to start in parallel

2015-12-18 Thread Cory Quammen
Frank, Thanks for the info on where you got the code. Maybe there's a problem with the source packaging? I'll try out that download and see if I can reproduce the problem. Thanks, Cory On Fri, Dec 18, 2015 at 9:15 AM, Albina, Frank < frank.alb...@sauber-motorsport.com> wrote: > Hi Cory! > > >

Re: [Paraview] Selecting a point in Python

2015-12-18 Thread Cory Quammen
Alan, Oops, clicked 'Send' too fast. You don't really need the extract block part. Try this instead: can = GetActiveSource() pointID = 1764 pointIDs = [0, pointID] # process, id selection = IDSelectionSource(ContainingCells=0, FieldType = "POINT", IDs = pointIDs) plotSelectionOverTime1 =

Re: [Paraview] Paraview v5.0.0-rc2 with OpenGL2 backend failing to start in parallel

2015-12-18 Thread Albina, Frank
Hi Cory! I have compiled the source code from the Paraview v5.0.0-RC2 source files that I downloaded earlier this week from http://www.paraview.org/download/. No GIT repository there and none to be found in the top-level directory of the source files. Paraview client & server are from the same

Re: [Paraview] Paraview v5.0.0-rc2 with OpenGL2 backend failing to start in parallel

2015-12-18 Thread Cory Quammen
Hi Frank, Since you said you recompiled ParaView, I suspect that maybe you forgot to update the submodules ParaView uses. In the ParaView source tree, run git status If VTK is listed, it may say there are new commits available for VTK. To update VTK, run git submodule update This has been an

Re: [Paraview] Paraview v5.0.0-rc2 with OpenGL2 backend failing to start in parallel

2015-12-18 Thread Albina, Frank
Hi Cory! Thank you very much for that. As said earlier in another post, I am very keen to see PV v5.0.0 release so I am happy to help and report issues before the new version gets unleashed. Cheers, Frank. From: Cory Quammen [mailto:cory.quam...@kitware.com] Sent: Freitag, 18. Dezember 2015 15:39

[Paraview] CFP - Eurographics 2016 Symposium on Parallel Graphics and Visualization (EGPGV 2016)

2015-12-18 Thread Berk Geveci
[We aplogize if you receive multiple copies of this message.] Eurographics 2016 Symposium on Parallel Graphics and Visualization (EGPGV 2016) === June 6-7, 2016, Groningen, the Netherlands Co-located with EuroVis 2016

Re: [Paraview] [EXTERNAL] Re: Selecting a point in Python

2015-12-18 Thread Scott, W Alan
Excellent! Thanks. One more question – is it possible to select the cell or point with a maximum value, as opposed to a hard coded cell or point? Alan From: Cory Quammen [mailto:cory.quam...@kitware.com] Sent: Friday, December 18, 2015 8:02 AM To: Scott, W Alan Cc: paraview@paraview.org

Re: [Paraview] [EXTERNAL] Re: Selecting a point in Python

2015-12-18 Thread Cory Quammen
Alan, Scrap what I said earlier. There is a simpler way. For selecting a point by ID, try: query = 'id == 1234' can = GetActiveSource() s = SelectPoints(query) plotSelectionOverTime = PlotSelectionOverTime(Input=can, Selection=s) view = CreateView('QuartileChartView')

Re: [Paraview] Paraview v5.0.0-rc2 with OpenGL2 backend failing to start in parallel

2015-12-18 Thread Cory Quammen
Hi Frank, The official binaries of 5.0.0-RC1 on Mac work fine for me the way you tried. Everything works fine on the master branch as well However, when I build the same configuration as you for the 5.0.0-RC2 tar file on the downloads page of www.paraview.org on a Mac, I get a similar error and

Re: [Paraview] rpath error when compiling ParaView 5.0

2015-12-18 Thread Orion Poplawski
On 12/17/2015 03:12 PM, Armin Wehrfritz wrote: > Hi, > > as a follow up, I found that the error is related to this option: > PARAVIEW_INSTALL_DEVELOPMENT_FILES > > For some reason I had it switched on and by switching it off, I can > avoid the rpath error. Though I don't know why. > > I should

Re: [Paraview] Paraview v5.0.0-rc2 with OpenGL2 backend failing to start in parallel

2015-12-18 Thread Cory Quammen
Frank, It does indeed look like there was a problem with the source code packaging. A fix has been merged into the packaging script: https://gitlab.kitware.com/paraview/paraview/merge_requests/541 Thanks for helping us find it by pointing out the problem. We'll get an updated tar file posted