mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 14:15:42 -04:00
Now initialize mean and std_dev to None in Tally.slice(...)
This commit is contained in:
parent
48a3ffef8d
commit
2db8bbe060
1 changed files with 2 additions and 0 deletions
|
|
@ -2082,6 +2082,8 @@ class Tally(object):
|
|||
nuclides, 'sum_sq')
|
||||
new_tally.sum = new_sum
|
||||
new_tally.sum_sq = new_sum_sq
|
||||
new_tally._mean = None
|
||||
new_tally._std_dev = None
|
||||
|
||||
############################ FILTERS ##########################
|
||||
if filters:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue