mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-27 13:45:36 -04:00
Replace missing reaction product in depletion chain generation
This commit is contained in:
parent
c3368d2c11
commit
1703d2a3ca
1 changed files with 3 additions and 1 deletions
|
|
@ -413,7 +413,9 @@ class Chain:
|
|||
chain.reactions.append(name)
|
||||
|
||||
if daughter not in decay_data:
|
||||
missing_rx_product.append((parent, name, daughter))
|
||||
daughter = replace_missing(daughter, decay_data)
|
||||
if daughter is None:
|
||||
missing_rx_product.append((parent, name, daughter))
|
||||
|
||||
# Store Q value
|
||||
for mt in sorted(mts):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue