Skip to content

Commit

Permalink
Added Iodine as element in Chemkin input file
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahkha authored and mliu49 committed Dec 5, 2019
1 parent b691b45 commit 5ffd38a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rmgpy/chemkin.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -2336,7 +2336,7 @@ def write_elements_section(f):
s = 'ELEMENTS\n'

# map of isotope elements with chemkin-compatible element representation:
elements = ('H', ('H', 2), ('H', 3), 'C', ('C', 13), 'O', ('O', 18), 'N', 'Ne', 'Ar', 'He', 'Si', 'S', 'Cl')
elements = ('H', ('H', 2), ('H', 3), 'C', ('C', 13), 'O', ('O', 18), 'N', 'Ne', 'Ar', 'He', 'Si', 'S', 'Cl', 'I')
for el in elements:
if isinstance(el, tuple):
symbol, isotope = el
Expand Down

0 comments on commit 5ffd38a

Please sign in to comment.