Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python-based CCSD Amplitudes #40

Open
dgasmith opened this issue Jul 10, 2020 · 0 comments
Open

Python-based CCSD Amplitudes #40

dgasmith opened this issue Jul 10, 2020 · 0 comments

Comments

@dgasmith
Copy link

Psi4 added the ability to pull CCSD amplitudes directly from the Python layer:

Ne = psi4.geometry("""
 0 1
 Ne 0.0 0.0 0.0
 symmetry c1
 """)
psi4.set_options({'basis': 'cc-pvdz', 'freeze_core': 'false'})

_, wfn = psi4.energy('ccsd', return_wfn=True, molecule=Ne)
amps = wfn.get_amplitudes()

TIjAb = amps['tIjAb'].to_array()
TIA = amps['tIA'].to_array()

Full PR here. #39 reminded me of this and may simplify the T2 acquisition procedure greatly.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant