[Paraview] How to save cull frontface

2012-07-06 Thread Chris
Hello people, I try to save the animation cull frontface. It is available in the Display pannel. I tried to save it now in several formats. But it was not working. Does someone know how I can save the animation? Thx, Chris ___ Powered by

Re: [Paraview] time series not working with xyz or lammps-dump reader presenting millions of atoms by spheres

2012-07-06 Thread Christian Richter
Hi Jian, for 1.) have a look at my liggghts text- and binary reader at http://web678.public1.linz.at/Drupal/?q=node/681 (you have to register to see the attached files) as a starting point for your own implemention. for 2.) you can use the PointSprite Plugin, I've written a HowTo here:

[Paraview] XDMF Time value problem

2012-07-06 Thread Jens Kleimann
Greetings! I have a collection of XDMF files, each of which contains the state of my simulation at a single instant of time. The goal is to read them into Paraview all at once, and then generate an animation with time as a parameter using the green arrow buttons. Unfortunately, I am having

Re: [Paraview] [Xdmf] XDMF Time value problem

2012-07-06 Thread Tim Gallagher
We've never had any luck getting time series with XDMF to work correctly in Paraview. However, we create animations all the time. Using the python trace feature, we set up the image using one of the files from the dataset. Then we modify the generated trace file slightly (make it so it's a

[Paraview] Question on Multiple Ports in Custom Reader (repost from developer list)

2012-07-06 Thread Joshua Murphy
Hello all, I am still struggling with this problem, so I figured I would re-post the question to the general list in hopes of getting a wider audience! Thanks in advance for any help you may provide! For Completeness, I have verified that I am setting the number of output ports in my

Re: [Paraview] Question on Multiple Ports in Custom Reader (repost from developer list)

2012-07-06 Thread Utkarsh Ayachit
Can you post you reader's code? It might make things easier. Utkarsh On Fri, Jul 6, 2012 at 12:15 PM, Joshua Murphy joshua.mur...@lasp.colorado.edu wrote: Hello all, I am still struggling with this problem, so I figured I would re-post the question to the general list in hopes of getting a

Re: [Paraview] Question on Multiple Ports in Custom Reader (repost from developer list)

2012-07-06 Thread Biddiscombe, John A.
You've used switch(port) { case 0: info-Set(vtkDataObject::DATA_TYPE_NAME(), vtkStructuredGrid); break; case 1: info-Set(vtkDataObject::DATA_TYPE_NAME(), vtkTable); break; } But I always use if (port==0) {

Re: [Paraview] Question on Multiple Ports in Custom Reader (repost from developer list)

2012-07-06 Thread Joshua Murphy
I think the example you gave me was for input ports, not output ports... it generates the following paraview error: ERROR: In /Users/jjm390/Development/paraview/ParaView-3.14.1-Source/VTK/Filtering/vtk DemandDrivenPipeline.cxx, line 689 vtkPVCompositeDataPipeline (0x7fbfdec84150): Algorithm

Re: [Paraview] Question on Multiple Ports in Custom Reader (repost from developer list)

2012-07-06 Thread Biddiscombe, John A.
Oops. Sorry. I'll look again. JB -Original Message- From: Joshua Murphy [mailto:joshua.mur...@lasp.colorado.edu] Sent: 06 July 2012 21:13 To: Biddiscombe, John A.; Utkarsh Ayachit Cc: paraview@paraview.org Subject: Re: [Paraview] Question on Multiple Ports in Custom Reader (repost from

Re: [Paraview] Question on Multiple Ports in Custom Reader (repost from developer list)

2012-07-06 Thread Utkarsh Ayachit
Joshua, Can you attach a data file to test the reader out as well? In the mean time here are few things I see: 1. RequestInformation() should produce meta-data about both output ports, not just the one requested for. (I will have to dig in the code to confirm). 2. You should not be saving the