Skip to content

Commit

Permalink
Also added sulfur handling to GaussianLog.loadGeometry().
Browse files Browse the repository at this point in the history
This is so the correct atomic mass is used for the geometry, e.g. for
projecting hindered rotors.
  • Loading branch information
jwallen committed Jun 11, 2012
1 parent 80b00d1 commit 4fe5933
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions rmgpy/cantherm/gaussian.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,8 @@ def loadGeometry(self):
mass[i] = 12.0
elif number[i] == 8:
mass[i] = 15.99491461956
elif number[i] == 16:
mass[i] = 31.97207100
else:
print 'Atomic number %i not yet supported in loadGeometry().' % number[i]

Expand Down

0 comments on commit 4fe5933

Please sign in to comment.