mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-27 21:55:41 -04:00
added fix to IncidentNeutron.from_hdf5() for Python 2
This commit is contained in:
parent
d0bbc0f6a0
commit
157f1fd484
1 changed files with 1 additions and 1 deletions
|
|
@ -478,7 +478,7 @@ class IncidentNeutron(EqualityMixin):
|
|||
if len(rxs) > 0:
|
||||
data.summed_reactions[mt_sum] = rx = Reaction(mt_sum)
|
||||
for T in data.temperatures:
|
||||
rx.xs[T] = Sum([rx.xs[T] for rx in rxs])
|
||||
rx.xs[T] = Sum([rx_i.xs[T] for rx_i in rxs])
|
||||
|
||||
# Read unresolved resonance probability tables
|
||||
if 'urr' in group:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue