Re: [Paraview] Data directory in pvsm files

2012-07-19 Thread Mohamad M. Nasr-Azadani
Thanks Utkarsh. It would be a neat and powerful feature. I did some research and I think you are right. There has been already request for that feature. http://paraview.uservoice.com/forums/11350-general/suggestions/119-state-file-pvsm-and-relative-paths Looking forward to it, Cheers, Mohama

[Paraview] Sorting the data from GetInputDataObject in ProgrammableFilter

2012-07-19 Thread Laurent Paul
Hi all, I use the programmable filter to do some basic computations (Axis, mean point etc...). I often need to access to more than one data as input, so I use GetInputDataObject(0,x), x being the input number. Let's say that all inputs are vtkPointSource. I don't understand how the sorting is

[Paraview] Parallel Visualization Application ()

2012-07-19 Thread liu cong
Hello, I want to animation harmonic solutions or eigenmode as a time-dependent simulation. My solution is a complex vector u. The physical displacement over e.g one period is then E Field = Re(E Field)*cos(2*pi*t)-Im(E Field)*sin(2*pi*t) To animate this I could wri

Re: [Paraview] VRPN Setup

2012-07-19 Thread Sean Delaney
Hi Nikhil, I have made the appropriate transformation to my tracking data, as you suggested. The display is now responding to the motion of the tracking targets. However, it is not responding to the rotation of the targets. I believe this might be happening because the tracking server is showing 2

Re: [Paraview] VRPN Setup

2012-07-19 Thread Nikhil Shetty
Hi Sean, If you are using the same config file that you sent me then >From the config above you say that "iotracker" connection has a tracking device on 1 (or sensor1) which is given a name "head". "iotracker.head" implie

Re: [Paraview] ParaView thinks that it does not have a wind blade reader

2012-07-19 Thread Sohail Shafii
When running serially, vtkSMReaderFactory::CanReadFile sees that the session has a single process.  As such, on line 660 it realizes that the source proxy's process support (in this case the source is a vtkWindBladeReader proxy) is multiple processes, which causes a return of "false" from that f

Re: [Paraview] ParaView thinks that it does not have a wind blade reader

2012-07-19 Thread David E DeMarle
Two issues need to be fixed. 1) that behavior in 3.14 is there because of this fix which we had to rush in just before the 3.14 release. Committer: Utkarsh Ayachit 2012-02-08 17:12:18 Parent: e401d569f6e54c49c3497852463f6b13a01da8b6 (Update version after 3.14.0-RC1 tag.) Child: 99fdb1aeb5997c29

Re: [Paraview] ParaView thinks that it does not have a wind blade reader

2012-07-19 Thread Sohail Shafii
Well it seems like #1 and #2 can be solved by writing a new parallel wind blade reader class. I had similar experience by creating distributed versions of class that I created in other vtk directories. The normal wind blade reader would have no parallel calls, which would address #1. What I fin