Skip to content

Commit

Permalink
got rid of scaling to N because it throws an error. see issue #66
Browse files Browse the repository at this point in the history
  • Loading branch information
mazeau authored and rwest committed Mar 14, 2019
1 parent 3ca8782 commit b8b6140
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rmgpy/data/thermo.py
Original file line number Diff line number Diff line change
Expand Up @@ -1284,7 +1284,7 @@ def setDeltaAtomicAdsorptionEnergies(self, bindingEnergies):
'O': rmgpy.quantity.Energy(-3.586, 'eV/molecule'),
'N': rmgpy.quantity.Energy(-4.352, 'eV/molecule'),
}
for element in 'CHON':
for element in 'CHO':
deltaAtomicAdosrptionEnergy[element].value_si = bindingEnergies[element].value_si - deltaAtomicAdosrptionEnergy[element].value_si
self.deltaAtomicAdsorptionEnergy = deltaAtomicAdosrptionEnergy

Expand Down

0 comments on commit b8b6140

Please sign in to comment.