Re: [Paraview] Not being able to connect to pvserver

2013-01-31 Thread Pradeep Jha
Hello, I have some more questions. How do I connect to the remote server using pvpython from command line? All the online instructions have this example: servermanger.Connect(amber) What is amber? I tried replacing it by the IP of my pvserver, the server name

[Paraview] camera link state seems to be incorrect in state files.

2013-01-31 Thread Richard GRENON
Hello. I have compared two CFD results using two 3D windows and I have linked the camera of the second window to the first window, then I have saved a state file. When reading the state file, I get this message: ERROR: In

Re: [Paraview] Segfault in Python when importing paraview.servermanager and vtk in the wrong order

2013-01-31 Thread Maximilian Albert
Hi Pat! [Apologies for sending you this twice, I accidentally didn't hit 'reply all'.] Many thanks for the detailed reply! Indeed, I'm suspecting a conflict between different vtk versions, but I don't know which ones could be the culprits. I'm not sure the issue is actually related to the FEniCS

[Paraview] Construct 3D revolved mesh from a 2d mesh

2013-01-31 Thread Andrew Parker
All, I am doing this in code using vtk, but can be reproduced using paraview as noted below. I have a 2d mesh which represent a cylindrically symmetric simulation. I want to be able to revolve this around the z-axis to create a 3d mesh. However, when doing this using the rotational extrusion

[Paraview] AddArray does not influence the GUI

2013-01-31 Thread Henning
Hi, I try to add an array to PointData of a vtkUnstructuredGrid object: Source1info = GetActiveSource() Source1 = servermanager.Fetch(Source1info) test = vtk.vtkDoubleArray() test.SetName('test') test.SetNumberOfTuples(Source1.GetNumberOfPoints()) Source1.GetPointData().AddArray(test)

Re: [Paraview] AddArray does not influence the GUI

2013-01-31 Thread David E DeMarle
When you fetch you are making a copy of the data on the client. Changing that copy doesn't affect the original which may exist only on a remote machine (or machines). Use the python programmable filter instead, or go through the proxy layer. In either case you will be affecting the original.

[Paraview] Red-Blue Stereo Rendering

2013-01-31 Thread Daniel Levitus
I was curious as to which glasses to use for the Red-Blue stereo rendering. From what I can tell Red-Blue glasses are not as common and was curious as to if Red-Cyan glasses would work and Red-Blue was just a generic choice in wording. Thank you for your help. Best, Dan Levitus -- Daniel Levitus

Re: [Paraview] camera link state seems to be incorrect in state files.

2013-01-31 Thread Utkarsh Ayachit
Yup that's indeed a known issue. I've reported a bug: http://paraview.org/Bug/view.php?id=13842 On Thu, Jan 31, 2013 at 5:19 AM, Richard GRENON richard.gre...@onera.fr wrote: Hello. I have compared two CFD results using two 3D windows and I have linked the camera of the second window to the

Re: [Paraview] camera link state seems to be incorrect in state files.

2013-01-31 Thread Richard GRENON
Thank you for reporting the bug, Utkarsh. Le 31/01/2013 16:21, Utkarsh Ayachit a écrit : Yup that's indeed a known issue. I've reported a bug: http://paraview.org/Bug/view.php?id=13842 On Thu, Jan 31, 2013 at 5:19 AM, Richard GRENONrichard.gre...@onera.fr wrote: Hello. I have compared two

Re: [Paraview] SuperBuild Windows XP 32 with plugin

2013-01-31 Thread Utkarsh Ayachit
Can you try pointing PARAVIEW_EXTERNAL_PLUGIN_DIRS to c:/paraview/ (assuming ParaviewPXDMFReader is the only directory under it). Utkarsh On Thu, Jan 31, 2013 at 5:34 AM, Felipe Bordeu felipe.bor...@ec-nantes.fr wrote: Hello, In a win32 XP on a virtual box (clean install), visual c++ 2008,

Re: [Paraview] Not being able to connect to pvserver

2013-01-31 Thread Burlen Loring
Hi Pradeep, servermanger.Connect(amber) What is amber? I tried replacing it by the IP of my pvserver, the server name etc. but nothing seems to be working. You'll make things immensely easier on yourself if you use ssh tunnels for remote connections. In that case you connect to

Re: [Paraview] Red-Blue Stereo Rendering

2013-01-31 Thread Aashish Chaudhary
On Thu, Jan 31, 2013 at 10:07 AM, Daniel Levitus daniel.levi...@gmail.com wrote: I was curious as to which glasses to use for the Red-Blue stereo rendering. From what I can tell Red-Blue glasses are not as common and was curious as to if Red-Cyan glasses would work and Red-Blue was just a

Re: [Paraview] Red-Blue Stereo Rendering

2013-01-31 Thread Daniel Levitus
Well see that is the thing. I have seen multiple responses stating Paraview is Red-Blue in which case I do not think Red-Cyan would work. -- Daniel Levitus University of Illinois Champaign-Urbana B.S Civil Engineering 2013 American Society of Civil Engineers | Treasurer daniel.levi...@gmail.com

Re: [Paraview] Red-Blue Stereo Rendering

2013-01-31 Thread Nikhil Shetty
Paraview does both. To look at the options # paraview --help For Red-Cyan do: # paraview --stereo --stereo-type=Anaglyph For Red-Blue do: # paraview --stereo --stereo-type=RedBlue -Nikhil On Thu, Jan 31, 2013 at 1:23 PM, Daniel Levitus daniel.levi...@gmail.comwrote: Well see that is the

[Paraview] Is it possible to prevent the render window to appear when using a python script?

2013-01-31 Thread Masquelet, Matthieu (GE Global Research)
Hi, I have a python script that loads a series of pvsm file to generate a sequence of animation. Here are a few pv-related statements in my script: from paraview.simple import * ... paraview.simple._DisableFirstRenderCameraReset() # Otherwise I get a zoomed out view when loading my pvsm file

Re: [Paraview] Is it possible to prevent the render window to appear when using a python script?

2013-01-31 Thread Karl König
Matthieu, This question comes up quite frequently on the list, in fact just yesterday. There is Andy's suggestion of reverting to OSMesa for rendering to get rid of the window (at the expense of not using graphics hardware any more): http://markmail.org/message/jzwfszl2yqkjkbq3 You might try the

Re: [Paraview] Is it possible to prevent the render window to appear when using a python script?

2013-01-31 Thread Masquelet, Matthieu (GE Global Research)
OK I feel a bit silly. Is the mailing list indexed in google? I spent 2 hours this morning looking for this and I guess I didn't search directly in the mailing list archive... Thanks for the tips... Rebuilding pv with OSmesa is out of my control right now so I will give the X server solution a

Re: [Paraview] Is it possible to prevent the render window to appear when using a python script?

2013-01-31 Thread David E DeMarle
I recommend markmail.org. There is some syntax to search directly in google, but I've forgotten it. David E DeMarle Kitware, Inc. RD Engineer 21 Corporate Drive Clifton Park, NY 12065-8662 Phone: 518-881-4909 On Thu, Jan 31, 2013 at 3:54 PM, Masquelet, Matthieu (GE Global Research)

Re: [Paraview] Segfault in Python when importing paraview.servermanager and vtk in the wrong order

2013-01-31 Thread Pat Marion
See, if you can import vtk, then you're probably importing a version of the vtk libraries that are different than the ones ParaView uses. What version of ParaView are you using and how did you install ParaView? Did you build from source, install the binaries from paraview.org, or apt-get