Keep on running after depletion interrupting

In there any class or methods to continue run when the burnup interrupted,cause my ubuntu GUI is always collapsing,I have to restart the mainframe.

If you have a depletion_results.h5 file, you can load that in with:

results = openmc.deplete.ResultsList.from_hdf5(...)`

and then use that when setting up an Operator:

op = openmc.deplete.Operator(..., prev_results=results)

Hello everyone…
I want to ask “how to get file depletion_result.h5 for simulation core nuclear reactor?”
Please help me!

This h5 file is produced when you run a depletion simulation (that is, when you create an Integrator class and call integrate() on it). I’d recommend taking a look at our depletion notebook example to get a good feel for the whole workflow.

Thanks for your response Sir