mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 06:05:58 -04:00
Omit gas production and damage xs from HDF5 files
This commit is contained in:
parent
f4e4304b13
commit
15d2feb6fb
1 changed files with 3 additions and 0 deletions
|
|
@ -653,6 +653,9 @@ class IncidentNeutron(EqualityMixin):
|
|||
n_reaction = ace.nxs[4] + 1
|
||||
for i in range(n_reaction):
|
||||
rx = Reaction.from_ace(ace, i)
|
||||
# Don't include gas production / damage cross sections
|
||||
if 200 < rx.mt < 219 or rx.mt == 444:
|
||||
continue
|
||||
data.reactions[rx.mt] = rx
|
||||
|
||||
# Some photon production reactions may be assigned to MTs that don't
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue