Re: [Paraview] paraview 3.10 and ffmpeg

2011-05-03 Thread Michael Wild
I might be a bit biased, but sometimes I really wonder why people are so keen on the ffmpeg writer. It is a major PITA to build the correct ffmpeg libraries since there are no official releases, the API is a fast moving target and the patent status is dodgy at best. Using the provided Ogg/Theora

Re: [Paraview] python script for plot-over-line filter

2011-05-03 Thread Jade Mackay
Hi Utkarsh, Thanks for your help, trace is really great. It makes automation of the first two tasks trivial, however I am having trouble working out how to write the plot over line data to a csv file (the trace functionality doesn't generate anything for FileSave Data). Any suggestions about how

Re: [Paraview] python script for plot-over-line filter

2011-05-03 Thread Utkarsh Ayachit
Jade, Here's the link to the Wiki about saving CSV files: http://www.paraview.org/Wiki/ParaView/Python_Scripting#Exporting_CSV_Data In short, the following script should do it: writer = CreateWriter(.../foo.csv, source) writer.FieldAssociation = Points # or Cells writer.UpdatePipeline() del

Re: [Paraview] python script for plot-over-line filter

2011-05-03 Thread Jade Mackay
Thats really great. Thanks alot! On Tue, 2011-05-03 at 07:08 -0400, Utkarsh Ayachit wrote: Jade, Here's the link to the Wiki about saving CSV files: http://www.paraview.org/Wiki/ParaView/Python_Scripting#Exporting_CSV_Data In short, the following script should do it: writer =

Re: [Paraview] Display time-dependent CSV data

2011-05-03 Thread Paul Edwards
You could try calling the files file.01.csv, file.02.csv, etc and then see if paraview recognises that as a series of files. That mighty work but if it doesn't you will need to add it as a FileSeriesReader - search the mailing list for how to do that. Regards, Paul On 2 May 2011 16:40, Lingyun Gu

[Paraview] ParaView tutorial at SciDAC 2011

2011-05-03 Thread Moreland, Kenneth
We will be holding a full-day ParaView tutorial at the SciDAC 2011 Conference. This tutorial is offered free of charge to anyone attending the conference. If you or any of your colleagues are interested in attended, you can register from the link below. Please register if you intend on

Re: [Paraview] paraview hangs on volume rendering

2011-05-03 Thread pratik
I also tried running the same example on an sgi altix cluster: same result. Do i have to choose any specific options during the build to enable volume rendering to work correctly? pratik On Monday 02 May 2011 09:20 PM, pratik wrote: Hi, this question was posted earlier here:

Re: [Paraview] ParaviewWeb : Adding interactive slice filter to pipeline

2011-05-03 Thread Sebastien Jourdain
Hi Raj, do you have a server instance where I can interactively interact with your use case ? If so, can you send me the url so I can give a try to set the color mapping correctly. (You can do it in private and I will post the solution on the mailing list). Thanks, Seb On Tue, May 3, 2011 at

Re: [Paraview] ParaviewWeb : Adding interactive slice filter to pipeline

2011-05-03 Thread Sebastien Jourdain
Hi Raj, I managed to show the correct color by executing that: sliceType.setNormal(0,0,1); sliceType.setOrigin(view1.getCenterOfRotation()); pv.SetDisplayProperties( {proxy : slice, view : view1, Representation : 'Surface', ColorArrayName : 'ImageFile'} ); In fact you shouldn't set any

Re: [Paraview] ParaviewWeb : Adding interactive slice filter to pipeline

2011-05-03 Thread Rajvikram Singh
Great .. yes the colors show up correctly and though now the interactive widget has disappeared I think I'm going to work around it by having a UI slider which lets the users slice through the data in X, Y or Z.. Thanks once again for all the patience and help. Raj --- On Wed, 4/5/11,

Re: [Paraview] ParaviewWeb : Adding interactive slice filter to pipeline

2011-05-03 Thread Sebastien Jourdain
Hi Raj, It's true that you will get a better precision with a slider. For that you can use the JQuery library, it is lighter than Dojo. Dojo is the one I used in two of our sample application. Seb On Tue, May 3, 2011 at 7:49 PM, Rajvikram Singh rajvikr...@yahoo.comwrote: Great .. yes the