-
Hello, Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
in your load file, you can specify the interval to write restart with keyword
the simulation will then resume at |
Beta Was this translation helpful? Give feedback.
-
Thanks. By the way, the documentation page is not dealing with an int as arg of -r option. Thanks again. |
Beta Was this translation helpful? Give feedback.
in
load.yaml
one can specifyf_out
(output frequency forresult.hdf5
) andf_restart
(restart output frequency which always overwrites arestart.hdf5
). When restarting, simulation will refer to the last written restart incrementn_restart
(according to yourf_restart
) not the last recording in yourresult.hdf5
(according to yourf_out
).to determine the last restart increment, you can check your screen output for the last restart statement, or if you redirect this stdout to a log file, then you should be able to search the last restart statement in your log file.
You could also have a look at our documentation page for further information.
Hope it clarifies your question.