removed catenation of element expand atomic amount

This commit is contained in:
Sam Shaner 2016-10-30 17:33:31 -04:00
parent d278b861a3
commit 7a500d6bfb

View file

@ -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