[Paraview] Bug in drawing selection mark in 3D?

2013-07-16 Thread Zenker, Dr. Matthias
Hi, I have observed a strange behavior: When I select points in a 3D dataset, the selection marks are not always drawn onto the points. When I rotate the geometry, they seem to move to different locations. When I turn the Point Labels on, they remain next to the selected points, whereas the

Re: [Paraview] Saving multi-block data with names

2013-07-16 Thread Matthew Cragun
Thanks, I'll give that a try. On Sat, Jul 13, 2013 at 10:13 AM, Magician f_magic...@mac.com wrote: Hi Matt, I had same problems as yours. So I coded Python scripts as below: 1. Get the blocks' names with [source].GetDataInformation().GetCompositeDataInformation().GetName() 2.

[Paraview] Importing all vtk modules with ParaView

2013-07-16 Thread Pat Marion
Hi, I think that ParaView's python package should provide a mechanism to import all vtk modules. The site-packages/paraview/vtk directory includes .py files for each vtk module, but the __init__.py file only imports a subset of them. As far as I can tell, it's up to the user to import

[Paraview] Integration of a 3d space onto a plane?

2013-07-16 Thread Scott, W Alan
I have a user that has a 3d object, with variables in this 3d space. For instance, a cube, with a variable (say temperature) at a high in the center of the sphere, and a low at the corners. This user wants to look down one axis (say the X axis), and sum or integrate all of the variables from

[Paraview] Read Tecplot Zones into Paraview fails, can't read columns

2013-07-16 Thread M.
Hi all, I'm trying to import some Tecplot files into Paraview. They are imported without any errors, but the data columns are not imported - the Statistics are NA, no spreadsheet data, etc. The files work ok on Tecplot. Here an example: title= 1D profiles variables=z,sn,c1,cs1,snmk1,EA1,M1,HA

Re: [Paraview] Integration of a 3d space onto a plane?

2013-07-16 Thread Andy Bauer
Hi Alan, I was working on a filter that was similar to this. If I remember correctly it could handle both vtkRectilinearGrids and vtkImageDatas (it definitely couldn't handle vtkStructuredGrids, vtkPolyDatas or vtkUnstructuredGrids). It also worked in parallel (or was supposed to). I never quite

Re: [Paraview] [EXTERNAL] Re: Integration of a 3d space onto a plane?

2013-07-16 Thread Scott, W Alan
Thanks Andy - you (and Kitware) are the greatest. It is unstructured. Thus, I believe your filter isn't a solution for me. Thanks, Alan From: Andy Bauer [mailto:andy.ba...@kitware.com] Sent: Tuesday, July 16, 2013 2:24 PM To: Scott, W Alan Cc: paraview@paraview.org Subject: [EXTERNAL] Re:

Re: [Paraview] GPU-based remote rendering

2013-07-16 Thread Burlen Loring
Hi Jean, The dirty pixels might caused if you're exceeding the max screen size a configured in your server's xorg.conf. That's one way I've seen that before. You could run xrandr command to list the available resolutions. Not sure about 2, but I've used PV 4.0.1 on an system that has 2 gpu's

Re: [Paraview] [EXTERNAL] Re: Integration of a 3d space onto a plane?

2013-07-16 Thread Andy Bauer
Well, with an unstructured grid a quick and dirty possible solution would be to: 1) have the user specify a grid to project the solution onto using the Plane source 2) For each point in the Plane source, do something like the plot over line 3) Then do an integration over that. You've probably

Re: [Paraview] [EXTERNAL] Re: Integration of a 3d space onto a plane?

2013-07-16 Thread Scott, W Alan
We had thought of something along those lines, but I had not figured it out to that detail. Thanks, that helps a lot! Alan From: Andy Bauer [mailto:andy.ba...@kitware.com] Sent: Tuesday, July 16, 2013 7:09 PM To: Scott, W Alan Cc: paraview@paraview.org Subject: Re: [EXTERNAL] Re: [Paraview]