-
Notifications
You must be signed in to change notification settings - Fork 25
Open
Labels
enhancementNew feature or requestNew feature or request
Description
pyscf:
from pyscf import gto
mol_h2o = gto.M(atom = 'N 0 0 0.2; N 0 0 0', basis = 'sto-3g')
from pyscf import scf
rhf_h2o = scf.RHF(mol_h2o)
e_h2o = rhf_h2o.kernel()
prints converged SCF energy = -52.6419222048247
fermi:
using Fermi
@molecule {
N 0.0 0.0 0.2
N 0.0 0.0 0.0
}
@set basis "sto-3g"
hfst = @energy rhf
prints -52.51997436116736
Can someone help me understand this energy difference?
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request