diff --git a/tasks/task_11_CSG_shut_down_dose_tallies/2_faster_mulitiple_puse_shut_down_dose_rate_example.py b/tasks/task_11_CSG_shut_down_dose_tallies/2_faster_mulitiple_puse_shut_down_dose_rate_example.py index 85b3e5a9..4e096e9f 100644 --- a/tasks/task_11_CSG_shut_down_dose_tallies/2_faster_mulitiple_puse_shut_down_dose_rate_example.py +++ b/tasks/task_11_CSG_shut_down_dose_tallies/2_faster_mulitiple_puse_shut_down_dose_rate_example.py @@ -142,8 +142,9 @@ # this runs the depletion calculations for the timesteps # this does the neutron activation simulations and produces a depletion_results.h5 file -integrator.integrate(path=statepoints_folder / "neutrons" / "depletion_results.h5") +integrator.integrate() # TODO add output dir to integrate command so we don't have to move the file like this +# integrator.integrate(path=statepoints_folder / "neutrons" / "depletion_results.h5") # PR on openmc is open import os os.system(f'mv depletion_results.h5 {statepoints_folder / "neutrons" / "depletion_results.h5"}')