Re: [Paraview] Behavior of a plugin reader that shares the same proxy name as one of the internal readers?

2012-09-05 Thread Takuya OSHIMA
I tested the fix and it did the trick. Thank you! Takuya OSHIMA, Ph.D. Faculty of Engineering, Niigata University 8050 Ikarashi-Ninocho, Nishi-ku, Niigata, 950-2181, JAPAN From: Utkarsh Ayachit Subject: Re: [Paraview] Behavior of a plugin reader that shares the same proxy name as one of the int

Re: [Paraview] Unlink a property from a GUI widget on a reader panel

2012-09-05 Thread Takuya OSHIMA
I always hope to get all the updates into ParaView but the time constraint is too tight to work on this now. I'll ping you if I can prepare something. Takuya OSHIMA, Ph.D. Faculty of Engineering, Niigata University 8050 Ikarashi-Ninocho, Nishi-ku, Niigata, 950-2181, JAPAN From: Utkarsh Ayachit S

[Paraview] concatenate

2012-09-05 Thread Scott Ripplinger
I currently have a data set that I am trying to work with using Paraview. It is a set of Lagrangian particles that are moving through the domain over time. What I need to do is calculate the surface coverage of these particles that adhere to a wall. This would involve determining which particles

Re: [Paraview] Newbie question on Python Programmable Filters

2012-09-05 Thread Frank Horowitz
Still more checking things out. A problem (THE problem???) can be demonstrated with your code snippet from a few messages back if you construct the Wavelet like so rather than using the default constructor: Wavelet(WholeExtent=(-100,100,-100,100,-100,100)) N.B. this is on a different machine, w

[Paraview] jpeg 2000 support

2012-09-05 Thread Cagatay Bilgin
Hi, I was looking for jpeg 2000 support in paraview and couldn't find much. Does paraview handle jpeg 2000 files ? Can I do a hierarchical visualization using paraview ? Thank you, Cagatay ___ Powered by www.kitware.com Visit other Kitware open-source

Re: [Paraview] Newbie question on Python Programmable Filters

2012-09-05 Thread Frank Horowitz
OK, more tracking the problem: The assumption underlying my "close up" description below is not correct. The problem appears to be the actual _size_ of the dataset I'm feeding in. Even a single time step fed in to the filter (with some 866,000 points) hangs at the x*x computation, even though

Re: [Paraview] Newbie question on Python Programmable Filters

2012-09-05 Thread Frank Horowitz
OK, the 30,000 foot view: I have a time series of about 20 slices (currently) of values of each component (3 components total) of a vector displacement 3d spatial field from an elastic wave propagation simulation. At the moment, I'm simply trying to visualise the vector length to see the propag

Re: [Paraview] Newbie question on Python Programmable Filters

2012-09-05 Thread Andy Bauer
I'm not sure I completely understand about your inputs[0]. As for iterating over time with the python programmable filter, inside the filter it will only have access to values from a single time step at each invocation of RequestData(). You can think of the order of operations if you have 5 time st

Re: [Paraview] ParaView on a Retina display

2012-09-05 Thread Pierre-Olivier Dallaire
I'm compiling QT 5 beta to see what happens, I'll see if I can get ParaView 3.14 compiled against it. On 2012-09-05, at 1:27 PM, Robert Maynard wrote: > I do believe that is correct. I don't know what version of Qt will have > retina support by default. > > On Wed, Sep 5, 2012 at 10:26 AM, Pi

Re: [Paraview] Newbie question on Python Programmable Filters

2012-09-05 Thread Frank Horowitz
OK Andy, Thanks for that! I've compiled and installed Paraview from git's release branch, and (a slight modification) of your code runs correctly. I think that means that my paraview/python integration is semi-sane. However, my problem still occurs. Recall that I have a time series of .vtu fi

Re: [Paraview] Behavior of a plugin reader that shares the same proxy name as one of the internal readers?

2012-09-05 Thread Utkarsh Ayachit
Thanks for the details. Helped me track down the issue in no time. Here the bug: http://paraview.org/Bug/view.php?id=13427 Utkarsh On Fri, Aug 24, 2012 at 11:15 AM, Takuya OSHIMA wrote: > Addendum: you have to put the representation plugin under > PV_PLUGIN_PATH to auto-load. Strangely, if I che

Re: [Paraview] ParaView on a Retina display

2012-09-05 Thread Robert Maynard
I do believe that is correct. I don't know what version of Qt will have retina support by default. On Wed, Sep 5, 2012 at 10:26 AM, Pierre-Olivier Dallaire < pierre-olivier.dalla...@videotron.ca> wrote: > Thanks / yes, that takes care of rendering the fonts correctly, icons are > still blurry but

Re: [Paraview] ParaView on a Retina display

2012-09-05 Thread Pierre-Olivier Dallaire
Thanks / yes, that takes care of rendering the fonts correctly, icons are still blurry but overall it's better. My guess is that to get the full retina support, that means QT needs to be updated first … ? On 2012-09-05, at 10:15 AM, Robert Maynard wrote: > As a temporary workaround you can ma

Re: [Paraview] ParaView on a Retina display

2012-09-05 Thread Robert Maynard
As a temporary workaround you can manually modify the paraview application to enable retina support. I haven't verified that all the icons layout properly. You need to edit the info.plist inside the Paraview.app/Contents/ folder and add the following two lines as the first items in the : NSPrinci

Re: [Paraview] [EXTERNAL] Re: cmake issue with master

2012-09-05 Thread Utkarsh Ayachit
It should now be fixed in "master" as well. Utkarsh On Tue, Sep 4, 2012 at 6:07 PM, Scott, W Alan wrote: > I'm broken also. When you push, I assume it will go into master, and you > will let the list know? > > Thanks, > > Alan > > -Original Message- > From: paraview-boun...@paraview.o

Re: [Paraview] Exporting using Python

2012-09-05 Thread Utkarsh Ayachit
Try this: from paraview.simple import * exporters = servermanager.createModule("exporters") x3d = exporters.X3DExporter(FileName="/tmp/foo.x3d") view = GetActiveView() x3d.SetView(view.SMProxy) x3d.Write() del x3d Utkarsh On Wed, Sep 5, 2012 at 8:34 AM, Soroush Heidari Pahlavian wrote: > Hello,

[Paraview] Exporting using Python

2012-09-05 Thread Soroush Heidari Pahlavian
Hello, I have a transient model loaded into paraview. Now I want to export a .x3d file for each frame (lets say for 2000 frames). I think the script should be very easy, but since I am very new to Python scripting in paraview, I don't know where to start. Can someone help me please?! BTW I am usi