Re: [Paraview] Visualizing complex vibration modes

2016-01-04 Thread Moreland, Kenneth
I suggest that your filter sets the TIME_RANGE anyway. It is good practice for a filter that responds to time updates to advertise as such by providing either TIME_STEPS or TIME_RANGE. I can't remember all the nitty-gritty details of how the streaming demand driven pipeline decides when filters

Re: [Paraview] How to stop a paraview python script on error (try-catch-ing) ?

2016-01-04 Thread Ben Boeckel
On Sat, Jan 02, 2016 at 16:12:49 +0100, houssen wrote: > How to stop a paraview python script on error (try-catch-ing) ? > > I have a filter (which calls vtkErrorMacro when an error occurs). I > have a python script that uses this filter from paraview: how to stop > this script when an error

Re: [Paraview] Writing files from pvbatch

2016-01-04 Thread Utkarsh Ayachit
Hard to say without the script you're trying to execute. In general, pvbatch should have worked fine for your use-case too. If you have any more info, that'd help. Utkarsh On Sun, Jan 3, 2016 at 8:45 AM, houssen wrote: > Hello, > > I have a filter which writes some ACSII text

Re: [Paraview] Use of Python declared variables inside new scripts from ProgrammableSource and/or ProgrammableFilter.

2016-01-04 Thread Utkarsh Ayachit
The following works in builtin (non-remote server) mode only. global meta_data meta_data =12 p = ProgrammableSource() p.Script=""" global meta_data print meta_data """ UpdatePipeline() Output: 12 Utkarsh

Re: [Paraview] Do the GetCellEdgeNeighbors / GetCellNeighbors methods in vtkPolyData not work for polygons?

2016-01-04 Thread Cory Quammen
Evan, I played with your example in ParaView 5.0 RC2 and could not reproduce the crash when setting the celIId to one of the end caps. Do you have a stack trace where the crash occurs, by chance? Thanks, Cory On Fri, Dec 11, 2015 at 2:27 PM, Evan Kao wrote: > Hey all, > > It

[Paraview] (no subject)

2016-01-04 Thread mafalda alves
___ 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: http://paraview.org/Wiki/ParaView Search the list archives

Re: [Paraview] Visualizing complex vibration modes

2016-01-04 Thread Nima Maftoon via ParaView
Hello, I saw that the two links about the history has been attached together making a broken link. I corrected them below:http://www.salome-platform.org/forum/forum_10/587894859 http://www.paraview.org/pipermail/paraview/2011-December/023538.html I hope this time they are transferred correctly. 

[Paraview] QLineEdit & proxy()->InvokeCommand()

2016-01-04 Thread Dean, Kevin
I am writing a plugin that, theoretically, should be able to change inputs as I apply them through a QLineEdit. The file that I am using to create the UI portions of the plugin is similar to that of the PointCloudLibrary. However, I was wondering if there is a way to pass along the "changed value"

Re: [Paraview] Visualizing complex vibration modes

2016-01-04 Thread Moreland, Kenneth
Nima, I think your question is very open ended and there are multiple ways to implement what you want. If it were me and I had enough control over the development of the ParaView components, I would add the capability of animating mode shapes in the reader. I don't see a MED reader in my

Re: [Paraview] Visualizing complex vibration modes

2016-01-04 Thread Nima Maftoon via ParaView
Hello Ken, Thanks a lot for your response. There are some good ideas in your message for me to work on. I didn't know about SLAC at all. I see what you mean about the reader but I prefer to follow your suggestions the python way for now because I think it is less of a headache. Let me transfer