Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow hasStatMech to assess atomic molecules #1513

Merged
merged 1 commit into from
Jan 3, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion rmgpy/species.py
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,12 @@ def hasStatMech(self):
Return ``True`` if the species has statistical mechanical parameters,
or ``False`` otherwise.
"""
return self.conformer is not None and (len(self.conformer.modes) > 0 or (len(self.molecule) > 0 and len(self.molecule[0].atoms) == 1))
if (len(self.molecule) > 0 and len(self.molecule[0].atoms) == 1):
#atomic molecules have no modes, check only E0
return self.conformer is not None and self.conformer.E0 is not None
else:
#polyatomic molecules should have modes and E0, so check both
return self.conformer is not None and len(self.conformer.modes) > 0 and self.conformer.E0 is not None

def hasThermo(self):
"""
Expand Down