Re: [Paraview] VisitBridge - GMV Reader

2012-04-27 Thread Robert Maynard
Hi Terry, Make sure the VISIT_READER_TYPE in your CMakeLists is either STMD or MTMD. Secondly we expect the reader to return the correct number of of time steps or cycles when we call GetCycles or GetTimes. If this isn't how your reader behaves can you explain to me where you are storing the time

Re: [Paraview] VisitBridge - GMV Reader

2012-04-27 Thread Terry Jordan
Thanks for the reply. It uses vtkAvtSTMDFileFormatAlgorithm. As for the number of cycles that is not known by the file format or the user. Each time step is an individual file, similar to how the vtu file series behaves. In the file open dialog ParaView picks up all the files and groups

Re: [Paraview] VisitBridge - GMV Reader

2012-04-27 Thread Robert Maynard
This is an oversight on my part. Can you please submit a bug that STMD files don't support file series properly. On Fri, Apr 27, 2012 at 10:23 AM, Terry Jordan terry.jor...@netl.doe.govwrote: Thanks for the reply. It uses vtkAvtSTMDFileFormatAlgorithm. As for the number of cycles that is

Re: [Paraview] VisitBridge - GMV Reader

2012-04-27 Thread Robert Maynard
The easiest solution will be to expand the visit_readers.xml file to have a second base visit reader base class. This second base class would be a file series reader and would be used for all single time database readers. On Fri, Apr 27, 2012 at 11:00 AM, Terry Jordan

[Paraview] VisitBridge - GMV Reader

2012-04-26 Thread Terry Jordan
I have ported the GMV reader from VisIt into ParaView using the VisitBridge. It works properly for a single time step. However it will not support my transient data. GMV's file format has a file per timestep. Is there something I need to do to the reader to enable this feature? Thanks in