Skip to content

Commit

Permalink
Update example
Browse files Browse the repository at this point in the history
  • Loading branch information
basilib committed Feb 26, 2024
1 parent 0631283 commit 63b5ac0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/ewf/molecules/42-fci-incluster-moments.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@
H 0.0000 0.7572 -0.4692
H 0.0000 -0.7572 -0.4692
"""
mol.basis = "cc-pVDZ"
mol.basis = "sto-6g"
mol.output = "pyscf.txt"
mol.build()

# Hartree-Fock
mf = pyscf.scf.RHF(mol)
mf.kernel()

# Embedded CCSD
emb = vayesta.ewf.EWF(mf, bath_options=dict(threshold=1e-6), solver_options=dict(n_moments=(5, 4), solve_lambda=True))
# Embedded FCI
emb = vayesta.ewf.EWF(mf, solver='FCI', bath_options=dict(threshold=1e-6), solver_options=dict(n_moments=(5, 4)))
emb.kernel()

# Reference full system CCSD:
Expand Down

0 comments on commit 63b5ac0

Please sign in to comment.