Skip to content

Instantly share code, notes, and snippets.

@cstein
Created July 5, 2012 03:16
Show Gist options
  • Save cstein/3050950 to your computer and use it in GitHub Desktop.
Save cstein/3050950 to your computer and use it in GitHub Desktop.
Running a GAMESS calculation using an Open Babel molecule
from qm import Gamess
from util import loadOBMoleculeFromFile
mol = loadOBMoleculeFromFile('myfile.xyz')
method = Gamess(mol)
E = method.getEnergy()
print E
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment