Hi @gbreslich, the specification for the time stepping table is the following:
- you need two columns
- the first defines the time step, the second the time increment from the last time step until the current one.
As an example take this table:
1, 0.2
5, 1.0
6, 0.01
This means:
-
Until time 1, use increments of 0.2s
-
from 1s to 5s use increment of 1s
-
until 6s use an increment of 0.01s
I agree, for a small amount of time steps your intuitive solution might be easier to understand, and we might also enable such a time stepping definition in the future. on the other hand, imagine how long your list would be if you would only have the easy time stepping from the example above (over 100 values), opposed to the short definition above.
Best regards,
Richard