Hello. How do extract data over time from pyton? I need load time series after this integrate variables and extract integration results over time and save as csv. So, I do:
from paraview.simple import * reader=LegacyVTKReader( FileNames=..) integration=IntegrateVariables() cell2point = CellDatatoPointData( PieceInvariant=0, PassCellData=0 ) extractdata = ExtractDataOverTime() writer=CreateWriter(outputfilebase+'.csv',extractdata) writer.FieldAssociation = 'Points' writer.UpdatePipeline() But I got an error: NameError: name 'ExtractDataOverTime' is not defined Thanks. _______________________________________________ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the ParaView Wiki at: http://paraview.org/Wiki/ParaView Follow this link to subscribe/unsubscribe: http://www.paraview.org/mailman/listinfo/paraview
