mirror of
https://git.freebsd.org/ports.git
synced 2025-05-14 16:21:50 -04:00
4 lines
113 B
Python
4 lines
113 B
Python
from pyscf import gto, scf
|
|
mol = gto.M(atom='H 0 0 0; H 0 0 1.2', basis='cc-pvdz')
|
|
mf = scf.RHF(mol)
|
|
mf.kernel()
|