Re: [Paraview] Saving multi-block data with names

2013-07-16 Thread Matthew Cragun
44, paraview-requ...@paraview.org wrote: > > > Date: Mon, 8 Jul 2013 16:44:12 -0400 > > From: Matthew Cragun > > Subject: [Paraview] Saving multi-block data with names > > To: paraview@paraview.org > > Message-ID: > > < > cam5bwjeao1ordsj9awfrvki8

[Paraview] Saving multi-block data with names

2013-07-08 Thread Matthew Cragun
Hi, I have an EnSight file that I read into Paraview which comes in as multi-block data. When I apply an extractBlock filter, the names of the different regions of my model show up to be extracted. After extracting a subset of the data, I save the data as a new *.vtm file. However the newFile.vt

[Paraview] Displaying a value on top of an animation

2011-02-07 Thread Matthew Cragun
I have an animation of a filling tank. I have an integration filter to get the volume at a particular time-step. Is there a way to display this number on the animation so that it updates? I'm thinking of something similar to the annotate time filter but that I can use a custom field with, such a

[Paraview] Fetch a vtk mapper object from paraview

2010-10-08 Thread Matthew Cragun
Is it possible when running the paraview modules in python to get a vtkPolyDataMapper object? In other words, if I set up my pipeline and I've set my display properties, I would like Fetch the actual mapper object from the serverManager. Can this be done? Thanks, -- Matt Cragun Engineer Total

[Paraview] Displaying TimeStep Data from CSV file

2010-09-01 Thread Matthew Cragun
I have a set of ~30 .stl meshes that I would like to create a movie of in Paraview. Each mesh was created using different paramters and is numbered sequentially so I can read it in as temporal data. I would like to be able to display the geometry and then also display the parameters used to creat

[Paraview] Render windows when running parallel pvserver on localhost

2010-06-17 Thread Matthew Cragun
Hi, I'm wondering if there are any ways to start pvserver in parallel on localhost without the rendering windows popping up on my screen. I understand the render windows need to be created for each of the processors, but is there a way to send them somewhere else or to a background so they won't

[Paraview] Paraview abort Feature request

2010-06-14 Thread Matthew Cragun
I know it's been requested before, but I'd just like to add my name to the list of people who would appreciate an "abort" or "cancel" button to stop a process. Thanks for all your work. -- Matt Cragun Engineer TotalSim LLC 7003 Post Road, Suite 415 Dublin, Ohio 43016 O: (614) 255-7426 M: (801)

Re: [Paraview] Fetching Data via Script and Interactively

2010-04-06 Thread Matthew Cragun
Another interesting anomaly. If I use the shell and run the script once, so I have a pipeline of three objects, I get zeros. If I then run it again immediately so I have a second pipeline of the same three objects, it then outputs correctly. Matt On Tue, Apr 6, 2010 at 2:20 PM, Matthew Cragun

Re: [Paraview] Fetching Data via Script and Interactively

2010-04-06 Thread Matthew Cragun
ally a call to Render() causes this > demand, but for IntegrateVariables there is nothing to render. Not sure if > Fetch is supposed to automatically called UpdatePipeline or not. > > Pat > > On Tue, Apr 6, 2010 at 1:53 PM, Matthew Cragun wrote: > >> >> I have a

[Paraview] Fetching Data via Script and Interactively

2010-04-06 Thread Matthew Cragun
I have a bit of code where I read in a data file, extract a small portion of it and then integrate the variables of the extracted portion. In my python code I then fetch the data from the server with the intent to write it out to a log file. The issue that I have come across is when I run my scri

[Paraview] Animating Plot3d files

2010-03-09 Thread Matthew Cragun
I am wondering if is possible to animate a plot3D file. I have a time-dependent fluid flow. When I open my ploy3D file I first specify my .xyz grid during the 'open' dialog. Then in the pipeline, I select my Q files. My data files are in the form: solution_ncyc000.p3d solution_ncyc100.p3d solut

Re: [Paraview] Using data in Calculator from multiple sources

2010-02-22 Thread Matthew Cragun
).GetCurrentTimeStep() ob2 = self.GetinputDataObject(0,1) some calculation of ob1.tcurrent and ob2 Are there any recommended documentation resources for the Python api available in the PPF? Thanks, Matt On Mon, Feb 22, 2010 at 8:10 AM, Matthew Cragun wrote: > I am using one mesh that is

Re: [Paraview] Using data in Calculator from multiple sources

2010-02-22 Thread Matthew Cragun
I am using one mesh that is deforming in time. So node1.mesh2 is the the same node as node1.mesh1, just in a different location in space. But your point is well made that if I were using unrelated meshes (i.e. roughly similar geometry but with a different number of nodes in each mesh) finding the

[Paraview] Using data in Calculator from multiple sources

2010-02-19 Thread Matthew Cragun
I have two separate meshes that are similar, but have slight differences. They have the same number of points. I would like to use the calculator to create an array of the distances between corresponding point ID's in the two meshes. How can I access the coordinate values from each mesh using cal