diff --git a/openmc/element.py b/openmc/element.py index cd12e8ad44..d56c3b3507 100644 --- a/openmc/element.py +++ b/openmc/element.py @@ -254,7 +254,6 @@ class Element(object): for nuclide, abundance in abundances.items(): nuc = openmc.Nuclide(nuclide) nuc.scattering = self.scattering - pct = round(percent*abundance, 14) - isotopes.append((nuc, pct, percent_type)) + isotopes.append((nuc, percent*abundance, percent_type)) return isotopes