mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-27 05:35:49 -04:00
heavy metal: atomic number >= 90
This commit is contained in:
parent
86600e6c4a
commit
493341dbe1
1 changed files with 1 additions and 1 deletions
|
|
@ -758,7 +758,7 @@ class Material(IDManagerMixin):
|
|||
"""
|
||||
mass = 0.0
|
||||
for nuc, _, _ in self._nuclides:
|
||||
if openmc.data.zam(nuc)[0] > 90:
|
||||
if openmc.data.zam(nuc)[0] >= 90:
|
||||
mass += self.get_mass(nuc)
|
||||
return mass
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue