-
Hi, @a-p25 and I are trying to output the one electron and two electron overlap integrals of a fragment in the fragment's localized orbital basis, after we have performed the fragmentation of a system - does anyone have any initial advice? The first thing we thought we'd try and do is look into the
We're now looking at getting these from the |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
Hi @hh2110 do you really mean overlap integrals? As in |
Beta Was this translation helpful? Give feedback.
-
I mean |
Beta Was this translation helpful? Give feedback.
-
So we have an example here: It dumps some cluster information to an HDF5 file - within a different group for each fragment. The 1- and 2-electron integrals, projected onto the cluster (=fragment+bath) space are in the fields If you only want these integrals in the fragment (without bath) space, you would have to do some extra work. Then you can perform |
Beta Was this translation helpful? Give feedback.
-
Yes, this is perfect thank you!Sorry, I meant I wanted the integrals in the cluster (fragment+bath) |
Beta Was this translation helpful? Give feedback.
So we have an example here:
https://github.com/BoothGroup/Vayesta/blob/master/examples/ewf/molecules/20-dump-clusters.py
which is specifically for users who would like to use Vayesta to define fragment and bath spaces but then use the resulting spaces and integrals within their own code.
It dumps some cluster information to an HDF5 file - within a different group for each fragment. The 1- and 2-electron integrals, projected onto the cluster (=fragment+bath) space are in the fields
hcore
anderis
.There is also
heff
, which ishcore
plus the Coulomb+exchange effective potential from frozen environment electrons.If you only want these integrals in the fragment (without bath) space, you woul…