mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 06:05:58 -04:00
fix variable bug in deplete.abc.py
This commit is contained in:
parent
33cdeb44ed
commit
885f4c6acb
1 changed files with 2 additions and 2 deletions
|
|
@ -815,11 +815,11 @@ class SIIntegrator(Integrator):
|
|||
reset_particles = False
|
||||
if step_index == 0 and hasattr(self.operator, "settings"):
|
||||
reset_particles = True
|
||||
self.operator.settings.particles *= self.n_stages
|
||||
self.operator.settings.particles *= self.n_steps
|
||||
inherited = super()._get_bos_data_from_operator(
|
||||
step_index, step_power, bos_conc)
|
||||
if reset_particles:
|
||||
self.operator.settings.particles //= self.n_stages
|
||||
self.operator.settings.particles //= self.n_steps
|
||||
return inherited
|
||||
|
||||
def integrate(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue