Suggest a way to loop scenario

Dear Skydel community,

could someone suggest a way how i can run scenario “test.sdx” in a loop, for example to restart it every 1 hour
haven’t found it in GUI.
maybe there is a simple python script to do it?

Maybe a python script that looks like this:

  while(True):
    sim.call(Open("test.sdx", True))
    sim.start()
    sim.stop(3600)
1 Like