Skip to content

Commit

Permalink
Use ENDF/B-VII.0 elementals with Serpent
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron Reynolds committed Nov 2, 2024
1 parent dd703be commit 08b30e2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion armi/reactor/blueprints/isotopicOptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,11 @@ def eleExpandInfoBasedOnCodeENDF(cs):
)
)

elif cs[CONF_XS_KERNEL] in ["", "SERPENT", "MC2v3", "MC2v3-PARTISN"]:
elif cs[CONF_XS_KERNEL] == "SERPENT":
elementalsToKeep.update(endf70Elementals)
expansionStrings.update(mc2Expansions)

elif cs[CONF_XS_KERNEL] in ["", "MC2v3", "MC2v3-PARTISN"]:
elementalsToKeep.update(endf71Elementals)
expansionStrings.update(mc2Expansions)

Expand Down

0 comments on commit 08b30e2

Please sign in to comment.