diff --git a/openmc/deplete/helpers.py b/openmc/deplete/helpers.py index 43a835908c..8f35fac433 100644 --- a/openmc/deplete/helpers.py +++ b/openmc/deplete/helpers.py @@ -277,8 +277,14 @@ class FissionYieldHelper(object): """Unpack fission rate tallies to produce :attr:`results` Resets :attr:`libraries` under the assumption this is called - during the :class:`openmc.deplete.Operator` unpackign process + during the :class:`openmc.deplete.Operator` unpacking process """ + # if this process is not responsible for depleting anything + # [more processes than burnable materials] + # don't do anything + if self.local_indexes.size == 0: + return + # clear old libraries self.libraries = []