[Paraview] Crash when extracting surface in a big mesh

2008-10-17 Thread Edwards, Paul
I think this int needs to be unsigned (or more bits). (gdb) frame 3 #3 0x2aaab2c053ea in vtkDataSetSurfaceFilter::NewFastGeomQuad (this=0x14fe670, numPts=4) at /tmp/padramgui-1.1/tmp/src/paraview/VTK/Graphics/vtkDataSetSurfaceFilter .cxx:1730 1730this->FastGeomQuadArray

Re: [Paraview] Using calculator with variable sets from different data files

2008-10-17 Thread Hom Nath Gharti
Many thanks. Looks like I should have different name for the variables. Initially I had a same variable name in two data files. I could see only only one variable name under scalar field. After using different names I could see two variable names. Nice weekend, Hom Nath On Fri, Oct 17, 2008 at 12

Re: [Paraview] Using calculator with variable sets from different data files

2008-10-17 Thread David E DeMarle
Another option is the python programmable filter. It isn't as intuitive to use (unless you are familiar with python wrapped vtk programming), but unlike the calculator filter it will accept multiple inputs, is likely to execute faster, and you don't need to worry about array name collision. cheers

[Paraview] ANNOUNCE: ParaView 3.4.0 released

2008-10-17 Thread Berk Geveci
The ParaView 3.4 release is now available for download from the ParaView web site (http://paraview.org). It is also available through CVS; the tag is ParaView-3-4-0. Since the 3.2 release, we have been focusing on usability and 3.4 contains many improvements and bug fixes. The major changes since

[Paraview] ANNOUNCE: Updated web site and wiki pages

2008-10-17 Thread Berk Geveci
Hi folks, We have been working hard on updating paraview.org and the ParaView wiki. The wiki content has grown significantly in the last month or so. We are also looking for volunteers who are interested in contributing. Best, -berk ___ ParaView mailing

Re: [Paraview] ANNOUNCE: ParaView 3.4.0 released

2008-10-17 Thread Renato N. Elias
Cool, now there's a Win64 release! Berk Geveci wrote: The ParaView 3.4 release is now available for download from the ParaView web site (http://paraview.org). It is also available through CVS; the tag is ParaView-3-4-0. Since the 3.2 release, we have been focusing on usability and 3.4 contains

Re: [Paraview] Using calculator with variable sets from different data files

2008-10-17 Thread Berk Geveci
By the way, the next generation of the array calculator will support multiple inputs. -berk On Fri, Oct 17, 2008 at 9:18 AM, Hom Nath Gharti <[EMAIL PROTECTED]> wrote: > Many thanks. Looks like I should have different name for the variables. > Initially I had a same variable name in two data file

Re: [Paraview] ANNOUNCE: ParaView 3.4.0 released

2008-10-17 Thread Dan Goldstein
Sounds Great! Can you point us to documentation on XML vtk file format changes related to file series? * Added support for file series of XML based VTK files. Thanks Dan On Oct 17, 2008, at 9:57 AM, Berk Geveci wrote: The ParaView 3.4 release is now available for download from the ParaVi

Re: [Paraview] Using calculator with variable sets from different data files

2008-10-17 Thread Hom Nath Gharti
Great! Does the next generation imply to 3.4? On Fri, Oct 17, 2008 at 5:37 PM, Berk Geveci <[EMAIL PROTECTED]>wrote: > By the way, the next generation of the array calculator will support > multiple inputs. > > -berk > > On Fri, Oct 17, 2008 at 9:18 AM, Hom Nath Gharti <[EMAIL PROTECTED]> > wrote

[Paraview] hidden python methods??

2008-10-17 Thread David Fuentes
working through one of the examples on the wiki http://paraview.org/Wiki/ParaView/Python_Scripting#Animating reader = sources.ExodusIIReader(“.../can.ex2”) . . . reader.UpdatePipelineInformation() However dir(reader) does Not return a method by the name of "UpdatePipelineI

Re: [Paraview] hidden python methods??

2008-10-17 Thread Berk Geveci
It is magic :-) Actually, it is a common python design pattern. Most of the classes in the servermanager module are wrappers around low-level classes provided by the paraview server manager C++ library. In python, you can define a method (__getattr__) that gets called whenever a symbol cannot be r

Re: [Paraview] ANNOUNCE: ParaView 3.4.0 released

2008-10-17 Thread Berk Geveci
It is not a format change. It is now possible to load file series of xml files. For example, if you have foo_0.vtu foo_1.vtu ... you can open them as a group and animate through the series. Were you looking for something else? -berk On Fri, Oct 17, 2008 at 11:47 AM, Dan Goldstein <[EMAIL PROTEC

Re: [Paraview] Using calculator with variable sets from different data files

2008-10-17 Thread Berk Geveci
Nope. 3.6. We just release 3.4. -berk On Fri, Oct 17, 2008 at 12:13 PM, Hom Nath Gharti <[EMAIL PROTECTED]> wrote: > Great! Does the next generation imply to 3.4? > > On Fri, Oct 17, 2008 at 5:37 PM, Berk Geveci <[EMAIL PROTECTED]> > wrote: >> >> By the way, the next generation of the array calc

Re: [Paraview] python and ctags/etags

2008-10-17 Thread Berk Geveci
The servermanager module dynamically creates bunch of classes at run-time, including AVSucdReader. Programs that search through the source code can't access any of those classes. To get information about a particular class, you should do help(servermanager.sources.) I believe there is a way of gene

Re: [Paraview] Save Data -> Temporal

2008-10-17 Thread Berk Geveci
Are the connectivity of these two meshes the same? If not, you have to map values of one mesh to another. If you give me some sample data to play with, I can tell you what pipeline you will need. -berk On Thu, Oct 16, 2008 at 11:22 AM, Alessandro A. Bellina <[EMAIL PROTECTED]> wrote: > Hello All,

[Paraview] python to change reader filename and animate AVS files

2008-10-17 Thread David Fuentes
Not sure if the AVS file reader is "time aware" but, using the python interface it seems possible to write a script to animate a time series of AVS files. Changing the reader filename via the python interface seems to work: pm=servermanager.ProxyManager() femdata = pm.GetProxy("sources

Re: [Paraview] python to change reader filename and animate AVS files

2008-10-17 Thread Berk Geveci
What you need is something like: pm=servermanager.ProxyManager() femdata = pm.GetProxy("sources","femdata") for i in range(10): femdata.FileName = "foo%d.inp" % i servermanager.GetRenderView().StillRender() ParaView takes care of updating other objects for you. If you want to learn more, I sugg

[Paraview] Paraview 3.4 Win64 nit pick

2008-10-17 Thread Jon Johansson
> >>> > >>> > >>> Kenneth Moreland > >>> *** Sandia National Laboratories > >>> *** > >>> *** *** *** email: [EMAIL PROTECTED] > >>> ** *** ** phone: (505) 844-8919 > >>> ***

Re: [Paraview] python to change reader filename and animate AVS files

2008-10-17 Thread David Fuentes
Thank you very much Berk, Does this create any conflicts w/ information posted on the wiki? http://paraview.org/Wiki/ParaView:FAQ#Why_can.27t_I_change_the_filename_on_my_reader_.3F df On Fri, 17 Oct 2008, Berk Geveci wrote: What you need is something like: pm=servermanager.ProxyManage

Re: [Paraview] ANNOUNCE: ParaView 3.4.0 released

2008-10-17 Thread Dan Goldstein
ok, Now I understand. I thought that time step information had been rolled into the xml file (.vtu.vtp..) Currently I embe the time step line, that will be used in a pvd file, in my .vtu files as a comment line. I then use a little shell script to build a pvd for all .vtu files in a given di

Re: [Paraview] python to change reader filename and animate AVS files

2008-10-17 Thread David Fuentes
Can you return control to the GUI during the execution of the python script? During the loop I want to enable GUI interaction w/ the view, i.e. use mouse to rotate/translate/etc... but ParaView will not let me move/rotate until After the script is complete. df On Fri, 17 Oct 2008, Ber

Re: [Paraview] ANNOUNCE: ParaView 3.4.0 released

2008-10-17 Thread Berk Geveci
Hmmm. I think that may be a performance issue. If the pvd file does not contain the time values, the reader would have to open all of the files in order to get that information. -berk On Fri, Oct 17, 2008 at 3:32 PM, Dan Goldstein <[EMAIL PROTECTED]> wrote: > ok, Now I understand. > I thought tha

Re: [Paraview] Save Data -> Temporal

2008-10-17 Thread Berk Geveci
I think there is a temporal statistics filter. That should do what you want... -berk On Fri, Oct 17, 2008 at 4:07 PM, Alessandro Bellina <[EMAIL PROTECTED]> wrote: > Berk, > Thank you for your help. I decided to try instead to get the difference > between two points (one in each dataset). I think

Re: [Paraview] python to change reader filename and animate AVS files

2008-10-17 Thread Berk Geveci
Nope. Python interface gives you the flexibility to change filenames. We assume that if you are using Python, you know what you are doing and you will not change the datatype during the iteration. Also, the FAQ is out-of-date. I will start rewriting it very soon. -berk On Fri, Oct 17, 2008 at 2:3

Re: [Paraview] python to change reader filename and animate AVS files

2008-10-17 Thread Berk Geveci
I am afraid you cannot. I think it is a good idea though. You may want to consider filing a feature request here: http://paraview.org/Bug On Fri, Oct 17, 2008 at 4:03 PM, David Fuentes <[EMAIL PROTECTED]> wrote: > > Can you return control to the GUI during the execution of the python script? > Dur

Re: [Paraview] Paraview 3.4 Win64 nit pick

2008-10-17 Thread David Cole
27;test1.vti' and 'test2.vti' opened in > paraview > > >>>> containing a dataset of similar variables. Can I use the > calculator to > > >>>> subtract (or add.) data of file 'test1.vti' from data of > > >>>> &#