Last active
January 1, 2016 15:29
-
-
Save amarvutha/8164046 to your computer and use it in GitHub Desktop.
Diatomic molecule energy calculation with PSI4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! Energy of LuI molecule | |
memory 500 mb | |
molecule LuI { | |
Lu | |
I 1 R | |
R = 1.5 | |
} | |
LuI.set_molecular_charge(0) | |
LuI.set_multiplicity(1) | |
set { | |
reference rhf # restricted hartree fock | |
basis ugbs # universal gaussian basis set | |
guess core # sad = superposition of atomic densities | |
df_basis_scf ugbs | |
scf_type df # density fitted algorithm | |
} | |
energy('scf') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment