<div dir="ltr">Hello all,<div><br></div><div>I'm trying to collect data over time. Using as a </div><div><br></div><blockquote style="margin:0px 0px 0px 40px;border:none;padding:0px"><div><div>#### import the simple module from the paraview</div></div><div><div>from paraview.simple import *</div></div><div><div><br></div></div><div><div># create a new 'ExodusIIReader'</div></div><div><div>reader = ExodusIIReader(FileName=['C:\\Users\\John\\Desktop\\download\\V_171_V_d_2_um_phi_4.50_eV_tOn_0.5_ns.e'])</div></div><div><div>reader.GenerateObjectIdCellArray = 1</div></div><div><div>reader.GenerateGlobalElementIdArray = 1</div></div><div><div>reader.ElementVariables = reader.ElementVariables.Available</div></div><div><div>reader.PointVariables = reader.PointVariables.Available</div></div><div><div>reader.ElementBlocks = reader.ElementBlocks.Available</div></div><div><div>reader.ApplyDisplacements = 1</div></div><div><div>reader.DisplacementMagnitude = 1.0</div></div><div><div><br></div></div><div><div># get animation scene</div></div><div><div>animationScene1 = GetAnimationScene()</div></div><div><div><br></div></div><div><div># update animation scene based on data timesteps</div></div><div><div>animationScene1.UpdateAnimationUsingDataTimeSteps()</div></div><div><div><br></div></div><div><div># create a new 'Integrate Variables'</div></div><div><div>integrateVariables1 = IntegrateVariables(Input=reader)</div></div><div><br></div></blockquote>Then, in the trace, the next important line output is<div><br></div><blockquote style="margin:0 0 0 40px;border:none;padding:0px"><div>plotSelectionOverTime1 = PlotSelectionOverTime(Input=integrateVariables1, Selection=None)</div></blockquote><br><div>But whereas in the GUI, it integrates over space for all time steps, this doesn't create any data. I'm assuming the problem is related to "Selection=None" but I cannot figure out how to select the data or a different function I could use.</div><div><br></div><div>Any advice?</div><div><br></div><div>John </div></div>