Re: [Paraview] Assign scalars/vectors to mesh points in vtkRectilinearGrid, C++

2013-04-03 Thread Paw Møller
Forgot the file itself. As attachment. sem_0001.vtr Description: Binary data ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the

Re: [Paraview] ParaView 3.98.1: Problems with Space Navigator

2013-04-03 Thread David Lonie
On Wed, Apr 3, 2013 at 7:58 AM, Nenad Vujicic nena...@gmail.com wrote: Dear Dave, Thank you for your ideas. Unfortunately, there are no errors / warnings emitted during startup or while running ParaView. Also, I tried several times with restarting ParaView and always checked if listening is

[Paraview] Breakthrough Curve over a slice

2013-04-03 Thread Hedieh Ebrahimi
Hi all, I have a dataset with one block containing cells. My pipeline looks like this with the following filters 1.My Dataset 2. Extract Cells by Region 3. Extract Surface (so by now I come up with my cross-section which is one cell width) 4. Integrate Variables ( Now I integrated the

Re: [Paraview] ParaView 3.98.1: Problems with Space Navigator

2013-04-03 Thread Aashish Chaudhary
One another possibility could be is that SN does not really offer tracker and we are expecting tracker data so the code somewhere is broke. Can you create a new interactor style and just listen for buttons and analogs? On Wed, Apr 3, 2013 at 8:38 AM, David Lonie david.lo...@kitware.com wrote:

[Paraview] Looping over cells of a composite dataset

2013-04-03 Thread Hedieh Ebrahimi
Hello, I need to loop over cells in a composite dataset and then sum up values of one of the arrays for the whole dataset. I tried to write this in Python Programmable Filter for block in inputs[0]: print block temp = block.PointData['Total_Cl- [m]'] result=sum(temp) print(result) but

Re: [Paraview] Python scripting/Grid geometry transformation

2013-04-03 Thread Felipe Bordeu
apply a CleanToGrid filter before the python programmable filter and this is a corrected version of your script: pdi = self.GetInput() pdo = self.GetOutput() newPoints = vtk.vtkPoints() numPoints = pdi.GetNumberOfPoints() for i in range(0, numPoints): coord = pdi.GetPoint(i) x, y, z =

Re: [Paraview] Assign scalars/vectors to mesh points in vtkRectilinearGrid, C++

2013-04-03 Thread Andy Bauer
I'm not able to reproduce this issue. It might be that your registry is causing problems. Can you try running with the -dr option which disables the registry (i.e. forgets any previous settings you may have saved in ParaView)? Andy On Wed, Apr 3, 2013 at 3:52 AM, Paw Møller paw...@gmail.com

Re: [Paraview] Assign scalars/vectors to mesh points in vtkRectilinearGrid, C++

2013-04-03 Thread Paw Møller
try running with the -dr option That did the trick. Thank you. Deleted the registry file from ~/.config/Paraview, but I was not able to find any entry saying something like 'Temperature=foo'. So how do I edit the file from within Paraview?. Searching the wiki didn't reveal anything. Paw

Re: [Paraview] Assign scalars/vectors to mesh points in vtkRectilinearGrid, C++

2013-04-03 Thread Andy Bauer
It's not meant to be edited. I just delete it when I figure out that's the problem but that is very rare. Andy On Wed, Apr 3, 2013 at 2:41 PM, Paw Møller paw...@gmail.com wrote: try running with the -dr option That did the trick. Thank you. Deleted the registry file from

Re: [Paraview] ParaView 3.98.1: Problems with Space Navigator

2013-04-03 Thread Nenad Vujicic
Dear Dave, Aashish, Thank you very much for your help! I put logging calls to routines of above 2 classes (vtkVRGrabWorldStyle and pqVRPNConnection) and I started catching messages on both places. Now, looks like the problem is that current interaction styles don't like my device (most likely

[Paraview] Where is Apply Texture located in ParaView 3.98.1?

2013-04-03 Thread Hom Nath Gharti
Dear all, In earlier versions there was Apply Texture in Display tab. I cannot see this in 3.98.1. Where can I find it? Or is it changed to something else? Thanks, Hom Nath ___ Powered by www.kitware.com Visit other Kitware open-source projects at

Re: [Paraview] State files and plugins

2013-04-03 Thread Reuter, Michael A.
Hi Seb, I looked at this a bit closer and I see that when loading the state file the RequestInformation function is being executed for our plugins, but RequestData is not. Is this the expected behavior or is something wrong with our plugins? Thanks, M From: Sebastien Jourdain

Re: [Paraview] Where is Apply Texture located in ParaView 3.98.1?

2013-04-03 Thread Burlen Loring
Hi, I recently struggled with that too, and finally after some experimentation found out one way. Seems that the feature is now enabled by some filters. Best to illustrate by example: Create a Sphere Source Apply Texture Map To Sphere Filter In the Properties Panel there is a Texture Field,

Re: [Paraview] Where is Apply Texture located in ParaView 3.98.1?

2013-04-03 Thread Hom Nath Gharti
That's perfect! It was there down the list. Thanks so much. Hom Nath On Wed, Apr 3, 2013 at 4:22 PM, Burlen Loring blor...@lbl.gov wrote: Hi, I recently struggled with that too, and finally after some experimentation found out one way. Seems that the feature is now enabled by some

Re: [Paraview] Where is Apply Texture located in ParaView 3.98.1?

2013-04-03 Thread Hom Nath Gharti
That was very helpful for me. Thanks a lot. Hom Nath On Wed, Apr 3, 2013 at 4:38 PM, Taylor, Erin M. erin.tay...@jhuapl.eduwrote: This website was useful for me to figure out how to create a sphere source without the faulty texture application:

Re: [Paraview] Where is Apply Texture located in ParaView 3.98.1?

2013-04-03 Thread Burlen Loring
Great site, thanks for sharing that! On 04/03/2013 01:38 PM, Taylor, Erin M. wrote: This website was useful for me to figure out how to create a sphere source without the faulty texture application: http://www.earthmodels.org/data-and-tools/topography/paraview-topography-by-texture-mapping