Re: [Paraview] Missing vtkXdmf headers in development installation

2011-04-20 Thread Felipe Bordeu
Hi I had that problem while ago. Look for the keyword development and XDMF in the mailling list archives. (mail attached) any way you can copy the headers from the source. Felipe PS: still wating for the development version of 3.10.x On 19/04/2011 23:34, Abishek Gopal wrote: I can't

[Paraview] vtkIsoVolume example?

2011-04-20 Thread Alexis Chan
Hi Is there a vtkIsoVolume example that I can refer to? When I open a vtu file in ParaView and apply the Iso Volume filter to it, I am able to see the Iso Volume. I tried to replicate that in my VTK application but I ran into Unable to allocate memory error. Here's the code snippet ( I verified

Re: [Paraview] make install seems to built a mirror of all the libs

2011-04-20 Thread Albina, Frank
I think this has to do with the variable PARAVIEW_INSTALL_THIRD_PARTY_LIBRARIES which is set to ON by default. You could try to switch it off and see if it fixes the issue. Cheers, Frank. -Original Message- From: paraview-boun...@paraview.org [mailto:paraview-boun...@paraview.org] On

Re: [Paraview] make install seems to built a mirror of all the libs

2011-04-20 Thread Jérôme
Thanks for your reply. I effectively saw several threads dealing with this CMake variable so I already changed it to OFF, without success... Jerome 2011/4/20 Albina, Frank frank.alb...@sauber-motorsport.com: I think this has to do with the variable PARAVIEW_INSTALL_THIRD_PARTY_LIBRARIES which

Re: [Paraview] Paraview v3.10.1/0 segmentation fault with MPI and MESA support on.

2011-04-20 Thread Albina, Frank
Hi Kevin! Thank you very much for the support so far. What I am trying to achieve is to have: a) the whole paraview suite, i.e. paraview, pvbatch, pvserver built from scratch. b) with X, independently of offscreen or onscreen rendering c) with Mesa using xlib drivers: ./configure

Re: [Paraview] Python Macro group macros, scripts with user input, arrangement of filters and bug in trace

2011-04-20 Thread Fabian Braennstroem
Hello, ... as no one replies I assume, that this is not possible. Fabian On 04/14/2011 09:11 PM, Fabian Braennstroem wrote: Hello, I am using quite a few python macros for my daily work. Mostly this works quite nice! Unfortunately I do not find a way, how to arrange some to certain groups.

Re: [Paraview] Block pqRenderView rendering

2011-04-20 Thread Gil Wertz
For those who are interested in, I used a little trick to do that by setting NonInteractiveRenderDelay to a high value. ( I putted 3600 seconds = one hour ) I putted a force render button that ignore NonInteractiveRenderDelay value and render the mesh. Problems are : When I force render,

[Paraview] create python state file with python macro

2011-04-20 Thread Fabian Braennstroem
Hello, does anyone know, if it is possible to save the current state as a python state-file using a python-macro? Thanks for the help! Fabian ___ Powered by www.kitware.com Visit other Kitware open-source projects at

Re: [Paraview] make install seems to built a mirror of all the libs

2011-04-20 Thread David Partyka
Wow, I just recreated this error (on git master). Let me see if I can track this down. On Wed, Apr 20, 2011 at 5:09 AM, Jérôme jerome.ve...@gmail.com wrote: Thanks for your reply. I effectively saw several threads dealing with this CMake variable so I already changed it to OFF, without

Re: [Paraview] create python state file with python macro

2011-04-20 Thread David E DeMarle
servermanager.SaveState(filename) and servermanager.LoadState(filename) from python are equivalent to File-SaveState and LoadState respectively. David E DeMarle Kitware, Inc. RD Engineer 28 Corporate Drive Clifton Park, NY 12065-8662 Phone: 518-371-3971 x109 On Wed, Apr 20, 2011 at 5:50 AM,

Re: [Paraview] Block pqRenderView rendering

2011-04-20 Thread David E DeMarle
PS: should I add a Feature Request ? Yes please. ___ 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 ParaView Wiki at:

Re: [Paraview] create python state file with python macro

2011-04-20 Thread Utkarsh Ayachit
from paraview import smstate from paraview import smtrace smstate.run() state_string = smtrace.get_trace_string() Now you can save that state_string anywhere. Utkarsh On Wed, Apr 20, 2011 at 5:50 AM, Fabian Braennstroem f.braennstr...@gmx.de wrote: Hello, does anyone know, if it is

Re: [Paraview] create python state file with python macro

2011-04-20 Thread Utkarsh Ayachit
What Dave suggested will save the XML state, not the Python state. Utkarsh On Wed, Apr 20, 2011 at 9:16 AM, David E DeMarle dave.dema...@kitware.com wrote: servermanager.SaveState(filename) and servermanager.LoadState(filename) from python are equivalent to File-SaveState and LoadState

Re: [Paraview] Python Macro group macros, scripts with user input, arrangement of filters and bug in trace

2011-04-20 Thread David E DeMarle
On Wed, Apr 20, 2011 at 5:24 AM, Fabian Braennstroem f.braennstr...@gmx.de wrote: Hello, ... as no one replies I assume, that this is not possible. With open source code, all things are possible, but some things take longer to achieve. :) But no I don't think these things are in 3.10.

Re: [Paraview] create python state file with python macro

2011-04-20 Thread Fabian Braennstroem
Hello to both, thanks for the quick help! The psvm-way I saw already... And with var = raw_input(Enter something: ) print you entered , var datei = open(var, w) datei.write(state_string) datei.close() it is quite easy to write to some file based the input... Thanks! Fabian On 04/20/2011

[Paraview] delete all applied filters from pipeline

2011-04-20 Thread Fabian Braennstroem
Hello, I am looking for a way to remove all applied filters from the pipeline except the loaded data (e.g. ensight or openfoam). If one know, the filter before, I can do it like this: Slice1 = FindSource(Slice1) DataRepresentation3 = GetDisplayProperties(Slice1) Slice2 = FindSource(Slice2)

[Paraview] openfoam reader for decomposed case

2011-04-20 Thread Fabian Braennstroem
Hi, I am frequently using the openfoam reader for a decomposed case. Is there a way to set the time before one needs to load the first zero time step? Using a reconstructed case type, it is possible to set the wanted time step. Thanks in advance! Fabian

Re: [Paraview] Python Macro group macros, scripts with user input, arrangement of filters and bug in trace

2011-04-20 Thread Fabian Braennstroem
Hi David, thanks for the reply! On 04/20/2011 03:34 PM, David E DeMarle wrote: On Wed, Apr 20, 2011 at 5:24 AM, Fabian Braennstroem f.braennstr...@gmx.de wrote: Hello, ... as no one replies I assume, that this is not possible. With open source code, all things are possible, but some things

Re: [Paraview] delete all applied filters from pipeline

2011-04-20 Thread Fabian Braennstroem
Thank's a lot, Pat! On 04/20/2011 04:29 PM, pat marion wrote: delete all filters without deleting the readers/sources: for f in GetSources().values(): if f.GetProperty(Input) is not None: Delete(f) Pat On Wed, Apr 20, 2011 at 9:49 AM, Fabian Braennstroem f.braennstr...@gmx.de

Re: [Paraview] delete all applied filters from pipeline

2011-04-20 Thread pat marion
delete all filters without deleting the readers/sources: for f in GetSources().values(): if f.GetProperty(Input) is not None: Delete(f) Pat On Wed, Apr 20, 2011 at 9:49 AM, Fabian Braennstroem f.braennstr...@gmx.dewrote: Hello, I am looking for a way to remove all applied

Re: [Paraview] Paraview v3.10.1/0 segmentation fault with MPI and MESA support on.

2011-04-20 Thread Kevin H. Hobbs
On 04/20/2011 05:22 AM, Albina, Frank wrote: Hi Kevin! Thank you very much for the support so far. What I am trying to achieve is to have: a) the whole paraview suite, i.e. paraview, pvbatch, pvserver built from scratch. b) with X, independently of offscreen or onscreen rendering c) with

Re: [Paraview] accessing additional options on PV filter

2011-04-20 Thread Favre Jean
The Python shell can work. get your object: C = FindSource('Connectivity1') c.ListProperties() c.ColorRegions = 0 # or 1 c.ExtractionMode = 4 # or 5 all other values 1,2,3 require an additional list of seeds or options which are not available via python - Jean M. Favre Swiss

Re: [Paraview] Paraview v3.10.1/0 segmentation fault with MPI and MESA support on.

2011-04-20 Thread Albina, Frank
Hi Kevin! Got the message. In fact, the culprit is not paraview but how MESA is built and how OSMESA links against the OpenGL libs (either from the system or the MESA lib itself). I think I should be able to fix the issue by building correctly the MESA libs for my purpose then. Thanks a lot

Re: [Paraview] make install seems to built a mirror of all the libs

2011-04-20 Thread David Partyka
Hi Jerome, I believe I have fixed the issue. Please git pull git submodule update (the fix was in VTK). Please let me know if you have any other issues. On Wed, Apr 20, 2011 at 9:12 AM, David Partyka david.part...@kitware.comwrote: Wow, I just recreated this error (on git master). Let me see

Re: [Paraview] make install seems to built a mirror of all the libs

2011-04-20 Thread Jérôme
Thanks David ! It's fixed for me. Jerome 2011/4/20 David Partyka david.part...@kitware.com: Hi Jerome, I believe I have fixed the issue. Please git pull git submodule update (the fix was in VTK). Please let me know if you have any other issues. On Wed, Apr 20, 2011 at 9:12 AM, David

Re: [Paraview] loading nc formatted data

2011-04-20 Thread Andy Bauer
The wiki has now been updated and is working on my machine for the reader plugin example. I just converted the existing vtkPNGReader to vtkMyPNGReader to test. Thanks for letting us know it was incorrect. Andy On Thu, Mar 24, 2011 at 1:24 PM, Simon Su newsgroup4...@gmail.com wrote: Hi Andy,

[Paraview] plugin error

2011-04-20 Thread 胡健
hello all: I want to add vtkOpenGLHAVSVolumeMapper to paraview as a plugin! here is my xml file: when I run paraview and load the plugin and open a data, the program will give me an error message ERROR: In ..\..\..\ParaView-3.8.1\Servers\ServerManager\vtkSMProxyManager.cxx, line 369