Re: [Paraview] Saving PlotSelectionOverTime result to CSV file in script

2013-10-07 Thread Peter Maday
Thanks for the reply! I have tried this setup, however I could not find a filter that would produce the correct output with the CreateWriter. When using the PlotVariablesOverTime it does not work, as it produces a vtkMultiBlockDataset as opposed to a vtkTable that is required by the CSV writer.

Re: [Paraview] Saving PlotSelectionOverTime result to CSV file in script

2013-10-07 Thread David E DeMarle
Thanks for sharing your solution with the list! David E DeMarle Kitware, Inc. RD Engineer 21 Corporate Drive Clifton Park, NY 12065-8662 Phone: 518-881-4909 On Mon, Oct 7, 2013 at 5:02 AM, Peter Maday madap...@gmail.com wrote: Thanks for the reply! I have tried this setup, however I could

[Paraview] Saving PlotSelectionOverTime result to CSV file in script

2013-10-04 Thread Peter Maday
Dear All, I would like to automate a process that involves saving the output of a PlotSelectionOverTime filter to a CSV file. Manually it is done by invoking the Save data command from the File menu while the graph view is selected. When I try to record the trace for this step, it does not

Re: [Paraview] Saving PlotSelectionOverTime result to CSV file in script

2013-10-04 Thread David E DeMarle
Try Using CreateWriter() like so: writer = CreateWriter(.../foo.csv, source) writer.FieldAssociation = Points # or Cells writer.UpdatePipeline() del writer David E DeMarle Kitware, Inc. RD Engineer 21 Corporate Drive Clifton Park, NY 12065-8662 Phone: 518-881-4909 On Fri, Oct 4, 2013 at 10:18