[Paraview] VTK-Import, NaN-entries

2010-03-12 Thread Mathias Winkel
Hello, I am using Paraview 3.6.2 to visualize some simulation data by converting my program's output to an ascii-vtk file using a self-made shell script. These (in fact many) vtk files are then imported to Paraview and used for animations etc. During testing, rewirting some code etc., my

[Paraview] custom vtk filter import into paraview

2010-03-12 Thread Benjamin Kaufner
Hello, I'd like to add an existing vtk-filter to paraview and so I tried the vtkCellDrivatives sample from the wiki. This didn't work (didn't show up in the filters menu list) - I assume because of Compute Derivatives is already part of the built-in filters. So I switched to another filter for

[Paraview] Paraview 3.6.2 / Open MPI 1.4.1: Server Connection Closed! / Server failed to gather information./cslog

2010-03-12 Thread SCHROEDER, Martin
Hello when I'm trying to run paraview (pvserver) on a single host using mpirun with 4 -8 processes, it works. The problem is : when i'm trying to spread pvserver over multiple hosts, using mpirun and a hostfile, the server processes and the client crash when I connect the client to the server.

Re: [Paraview] VTK-Import, NaN-entries

2010-03-12 Thread Oliver Gloth
Hi, what about -1e99, that's what I have done so far. Then you can easily spot the regions where your simulation has fallen over ... Regards, Oliver Mathias Winkel wrote: Hello, I am using Paraview 3.6.2 to visualize some simulation data by converting my program's output to an ascii-vtk file

[Paraview] Use existing texture map for 3D surface

2010-03-12 Thread Dressler, Christian
Hi, I am trying to reconstruct data generated by a surface scanner with paraview. The data is structured as xyzuv arrays. I managed to calculate the surface by using the filters Table to points and Delaunay 2D. But I could not figure out, how to apply the texture to the surface. The

Re: [Paraview] VTK-Import, NaN-entries

2010-03-12 Thread Mathias Winkel
Hello, Thank you for your answer. Obviously, replacing the invalid data by some number seems to be the only way. After digging through the Paraview-source I found, that the vtk-files are read using an istream object with the operator (

[Paraview] Access to the dataset data from python

2010-03-12 Thread Paul Edwards
Hi, Is there a way to get actual point data or field data in the python shell? Thanks in advance, Paul ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages

Re: [Paraview] custom vtk filter import into paraview

2010-03-12 Thread David Doria
On Fri, Mar 12, 2010 at 5:52 AM, Benjamin Kaufner benkauf...@gmx.de wrote: Hello, I'd like to add an existing vtk-filter to paraview and so I tried the vtkCellDrivatives sample from the wiki. This didn't work (didn't show up in the filters menu list) - I assume because of Compute Derivatives

Re: [Paraview] Development Install Tree

2010-03-12 Thread Mark Olesen
Just about all of the bugs related to the development install feature have been fixed. If anyone has any issues with them please feel free to report a bug. New bug report added: http://www.paraview.org/Bug/view.php?id=10411 0010411: Development install tree cannot find documentation

Re: [Paraview] Access to the dataset data from python

2010-03-12 Thread Utkarsh Ayachit
Look at servermanager.Fetch() On Fri, Mar 12, 2010 at 8:59 AM, Paul Edwards paul.m.edwa...@gmail.com wrote: Hi, Is there a way to get actual point data or field data in the python shell? Thanks in advance, Paul ___ Powered by www.kitware.com

Re: [Paraview] Paraview 3.6.2 / Open MPI 1.4.1: Server Connection Closed! / Server failed to gather information./cslog

2010-03-12 Thread Utkarsh Ayachit
Is it possible to attach a debugger to the server processes and see where it crashes? On Fri, Mar 12, 2010 at 7:03 AM, SCHROEDER, Martin martin.schroe...@mtu.de wrote: Hello when I'm trying to run paraview (pvserver) on a single host using mpirun with 4 -8 processes, it works. The problem is

Re: [Paraview] Use existing texture map for 3D surface

2010-03-12 Thread Eric E. Monson
Hey Christian, If your data already has valid texture coordinates, highlight your surface in the Pipeline Browser. You should be able to go to the Display tab of the Object Inspector and in the Color section there is an Apply Texture combo box that should not be grayed-out if everything is

Re: [Paraview] Development Install Tree

2010-03-12 Thread Utkarsh Ayachit
I haven't really read the full thread but I saw that everyone seems to using make install. A couple of comments about that. Currently, we recommend users to use cpack to create the package (tgz or what have you) instead of make install since currently, make install doesn't support

Re: [Paraview] Use existing texture map for 3D surface

2010-03-12 Thread Dressler, Christian
Hi Eric, Unfortunately this does not work. Neither for the point cloud, nor for the surface. It does only work after generating a map by paraview, but this is the wrong map. I also tried to rename the columns header the way paraview does, but it did not work. I am looking for an option

Re: [Paraview] Use existing texture map for 3D surface

2010-03-12 Thread Utkarsh Ayachit
The problem is that the uv array needs to be marked as Texture attribute for the PointData. You can write a PythonProgrammableFilter which generate an output with the Texture coords setup correctly. Let me know if you need help with that. Also remember this filter will have to combine the two u

Re: [Paraview] Use existing texture map for 3D surface

2010-03-12 Thread Eric E. Monson
Hey Utkarsh, Offhand, do you think it would be straightforward to pull vtkAssignAttribute into ParaView as a plugin? This would be nice for these types of situations where attributes are already there (or could be generated by the Calculator) and just need to be assigned properly. Thanks,

Re: [Paraview] Development Install Tree

2010-03-12 Thread Dave Partyka
Yes and Yes. On Fri, Mar 12, 2010 at 1:22 PM, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: The resulting tar.gz file may look fairly clean, but all of the cmake files are missing (which means it can't be used for building plugins). I thought that the cpack was supposed to pick up

Re: [Paraview] Development Install Tree

2010-03-12 Thread Utkarsh Ayachit
Another comment about make HTMLDocumentation. Following a recent commit (due to an issue Eric raised on the mailing list a few days ago), people should forget about this target :). Instead, turn GENERATE_FILTERS_DOCUMENTATION to ON and rest assured that the filters documentation will get included.

[Paraview] Input Editor - Cramped Input Port Selection

2010-03-12 Thread Christian Werner
Hello! I wonder why the input port selection is so cramped in the input editor. It is really bad that you cannot actually read out the selections you make without moving the scrollbar. Then, after scrolling, you cannot change the other input without scrolling back. This really steals your

Re: [Paraview] Input Editor - Cramped Input Port Selection

2010-03-12 Thread Utkarsh Ayachit
I cannot agree more. I am going to take a stab and fixing this before 3.8. We've just had too many complaints about this dialog to keep on delaying this. Utkarsh On Fri, Mar 12, 2010 at 2:00 PM, Christian Werner christian.wer...@rwth-aachen.de wrote: Hello! I wonder why the input port

Re: [Paraview] Input Editor - Cramped Input Port Selection

2010-03-12 Thread Moreland, Kenneth
Now that it is brought up, we should put this dialog on the list of things to redesign. There are a lot more problems with it than obscured widgets. -Ken On 3/12/10 12:10 PM, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: I cannot agree more. I am going to take a stab and fixing this

Re: [Paraview] Input Editor - Cramped Input Port Selection

2010-03-12 Thread Utkarsh Ayachit
Added to the list: http://paraview.org/ParaView3/index.php/ParaView_Usability_Improvements#Miscellaneous On Fri, Mar 12, 2010 at 2:54 PM, Moreland, Kenneth kmo...@sandia.gov wrote: Now that it is brought up, we should put this dialog on the list of things to redesign.  There are a lot more

Re: [Paraview] link errors with CVS

2010-03-12 Thread Utkarsh Ayachit
Jean, Any luck with this? I suddenly started getting those after I turned rpath off. Utkarsh On Wed, Mar 3, 2010 at 12:41 PM, Favre Jean jfa...@cscs.ch wrote: For a few days, I have had a link errors which I cannot get rid of. I am compiling with an installed qt4.6.1 compiled from source,

Re: [Paraview] link errors with CVS

2010-03-12 Thread Utkarsh Ayachit
The problem indeed occurs only when rpath is off and you have some other Qt version installed (I had Qt 4.5 in /usr/lib). I just set my LD_LIBRARY_PATH to point to Qt 4.6 lib dir and then make proceeded without any issues. Someone with better understand of dependency resolution should comment on