Hi <span>Sebastien,<br><br>The files were all time dependent data but some had a TimeRange but no TimestepValues so I simply did:<br></span><br><span>TimestepValues = </span>meshFine.TimestepValues<br>if len(TimestepValues) == 0:<br>
timerange = meshFine.GetProperty('TimeRange') <br> steps = 100<br> <span>TimestepValues</span> = [timerange[1]*i/steps + timerange[0] for i in range(steps)]<br><br>which works well enough. Hopefully this will help anyone else that runs into the same issue.<br>
<br>Thank you again,<br>Justin<br>