Skip to content

Commit e9077b1

Browse files
authored
Allow V0 in atomic_mass function (for ENDF/B-VII.0 data) (#3607)
1 parent 58c7fbe commit e9077b1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

openmc/data/data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ def atomic_mass(isotope):
324324
# isotopes of their element (e.g. C0), calculate the atomic mass as
325325
# the sum of the atomic mass times the natural abundance of the isotopes
326326
# that make up the element.
327-
for element in ['C', 'Zn', 'Pt', 'Os', 'Tl']:
327+
for element in ['C', 'Zn', 'Pt', 'Os', 'Tl', 'V']:
328328
isotope_zero = element.lower() + '0'
329329
_ATOMIC_MASS[isotope_zero] = 0.
330330
for iso, abundance in isotopes(element):

0 commit comments

Comments
 (0)