From 7a500d6bfb767e76e6e28357a598f6304866f0f3 Mon Sep 17 00:00:00 2001 From: Sam Shaner Date: Sun, 30 Oct 2016 17:33:31 -0400 Subject: [PATCH] removed catenation of element expand atomic amount --- openmc/element.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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