[Paraview] volume representation

2012-12-01 Thread 岡秀樹
Dear developper, Could you show me what vtk functions are used for Volume representation ? It outputs different result from Martin Cube algorithm. Best regards, Oka ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www

Re: [Paraview] new memory inspector panel documentation

2012-12-01 Thread Burlen Loring
Sebastien, Thanks for putting it in the right place. This morning I've merged the new docs with the old in the user guide to clean it up a bit. I wasn' t sure how important having a consitent look was (eg dialogs/windows in mac style), so I left the old images in the source but commented out i

[Paraview] OGG support in Paraview 3.98 rc3

2012-12-01 Thread Anton Gladky
Hello all, is it possible to enable OGG-support in the newest version of Paraview? There is a PARAVIEW_ENABLE_FFMPEG option for AVI-files, but I cannot find something similar for OGG-Theora. Thanks, Anton ___ Powered by www.kitware.com Visit other Kit

Re: [Paraview] new memory inspector panel documentation

2012-12-01 Thread Sebastien Jourdain
Thanks Burlen, I've moved your doc inside the User guide on the wiki. I'll regenerate the PDF of the User Guide for the coming release which will include your contribution. Thanks again, Seb On Sat, Dec 1, 2012 at 1:25 PM, Burlen Loring wrote: > Just wanted to mentioned that Utkarsh and Seba

Re: [Paraview] (no subject)

2012-12-01 Thread Sebastien Jourdain
You can use the completion in the Python shell of ParaView. Otherwise, you will have to look into the XML file in the source code repository at the following path: src/ParaViewCore/ServerManager/SMApplication/Resources/*.xml to get the list of properties available for each object/proxy that you can

Re: [Paraview] paraview 3.98rc3 configuration error: CheckFortran.cmake missing

2012-12-01 Thread Andy Bauer
This has been fixed and merged into master. Thanks for the info. Andy On Thu, Nov 29, 2012 at 4:34 PM, wrote: > Thanks Andy, > > I am not making use of it right now but I am packaging for Gentoo and I > will > install it for general availability on a cluster down here so I need to > know > wha

[Paraview] ParticlePathLines Filter

2012-12-01 Thread Christian Richter
Hello, in Paraview 3.98 the ParticlePathLines Filter is gone away. We use this to show the trajectory of simple particle data (x,y,z), based on ID. Is this intended ? I got it back by copy & paste the proxysource from filter.xml in 3.14 (line 6679++) to 3.98. Would it be possible to add back

Re: [Paraview] new memory inspector panel documentation

2012-12-01 Thread Burlen Loring
Just wanted to mentioned that Utkarsh and Sebastien deserve a lot of credit for this too. Their help is always very much appreciated :-) On 12/01/2012 08:59 AM, Burlen Loring wrote: Hi John, Thanks! That's great to know, very glad to hear you've found it useful. Burlen On 12/01/2012 03:56

Re: [Paraview] (no subject)

2012-12-01 Thread Timothy Cale
Sebastien: As a follow up: Usingwriter.FileType = 'Ascii' did work to complete the script generated by Trace. (first_stab.py) On the other hand, the script you sent did not work, as sent. By comparing the two scripts, and removing/adding back lines of code, the only line I needed to add

Re: [Paraview] new memory inspector panel documentation

2012-12-01 Thread Burlen Loring
Hi John, Thanks! That's great to know, very glad to hear you've found it useful. Burlen On 12/01/2012 03:56 AM, Biddiscombe, John A. wrote: Burlen The inspector is great and I've been using it extensively to monitor some of the big jobs I've run recently. It really helps knowing how much m

Re: [Paraview] (no subject)

2012-12-01 Thread Timothy Cale
Sebastien: Thank you! That indeed what I was looking for. Is there a place where one can find out about (look up) such things? I spent an hour or so yesterday trying to guess writer.FileType='Ascii'. My apologies for not including a subject line on my first submission, and for any confusion d

Re: [Paraview] How to install into /usr/lib64 with 3.98.0 RC3?

2012-12-01 Thread Sebastien Jourdain
Glad we find the solution. On Fri, Nov 30, 2012 at 4:03 PM, Orion Poplawski wrote: > On 11/29/2012 07:27 PM, Sebastien Jourdain wrote: > >> That should work but you can also try with VTK_INSTALL_LIB_DIR. >> > > Looks like they are replaced with: > -DVTK_INSTALL_INCLUDE_DIR > -DVTK_INSTALL_ARCHIV

Re: [Paraview] (no subject)

2012-12-01 Thread Sebastien Jourdain
Here is the script that you should run from paraview.simple import * data = XMLPolyDataReader( FileName=['/.../file.vtp'] ) smooth = Smooth(data) smooth.NumberofIterations = 200 writer = CreateWriter("foo.ply", smooth) writer.FileType = 'Ascii' writer.UpdatePipeline() On Fri, Nov 30, 2012 at

Re: [Paraview] new memory inspector panel documentation

2012-12-01 Thread Biddiscombe, John A.
Burlen The inspector is great and I've been using it extensively to monitor some of the big jobs I've run recently. It really helps knowing how much memory you've actually used on each node - and more importantly, how close you are to getting a job killed. Thanks for taking the time to contrib