Re: [Paraview] Fwd: Creating data in programmablesource with Time

2010-04-06 Thread Berk Geveci
That's crazy :-) You need something like this: for i in range(x): self.GetExecutive().GetOutputInformation().GetInformationObject(0).Append(vtkStreamingDemandDrivePipeline.TIME_STEPS(), t[i]) in the RequestInformation() script. Then to get UPDATE_TIME_STEPS(), something like: i = self.GetExec

[Paraview] Fwd: Creating data in programmablesource with Time

2010-04-06 Thread Felipe Bordeu Weldt
Hello, I'm trying to generate data in the programmablesource with time. till now a can produce the data, fill the output, but I do not know how to put the time information. (I read that I have to correctly set the DATA_TIME_STEPS, TIME_RANGE, TIME_STEPS and the TimestepValues variables).