We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Psi4 added the ability to pull CCSD amplitudes directly from the Python layer:
Full PR here. #39 reminded me of this and may simplify the T2 acquisition procedure greatly.
The text was updated successfully, but these errors were encountered: