Skip to content

Python-based CCSD Amplitudes  #40

@dgasmith

Description

@dgasmith

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions