-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
062a580
commit ee94001
Showing
1 changed file
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
import numpy as np | ||
from pyscf import lib | ||
from mrh.my_pyscf.mcscf.lasci import get_space_info | ||
from mrh.my_pyscf.lassi.citools import get_lroots | ||
from mrh.my_pyscf.lassi.spaces import SingleLASRootspace | ||
from mrh.my_pyscf.lassi.op_o1.utilities import lst_hopping_index | ||
from mrh.my_pyscf.lassi import op_o0, op_o1 | ||
|
||
op = (op_o0, op_o1) | ||
|
||
def case_contract_hlas_ci (ks, las, h0, h1, h2, ci_fr, nelec_frs): | ||
hopping_index, zerop_index, onep_index = lst_hopping_index (nelec_frs) | ||
symm_index = np.all (hopping_index.sum (0) == 0, axis=0) | ||
twop_index = symm_index & (np.abs (hopping_index).sum ((0,1)) == 4) | ||
twoc_index = twop_index & (np.abs (hopping_index.sum (1)).sum (0) == 4) | ||
ocos_index = twop_index & (np.abs (hopping_index.sum (1)).sum (0) == 2) | ||
ones_index = twop_index & (np.abs (hopping_index.sum (1)).sum (0) == 0) | ||
twoc2_index = twoc_index & (np.count_nonzero (hopping_index.sum (1), axis=0) == 2) | ||
twoc3_index = twoc_index & (np.count_nonzero (hopping_index.sum (1), axis=0) == 3) | ||
twoc4_index = twoc_index & (np.count_nonzero (hopping_index.sum (1), axis=0) == 4) | ||
interactions = ['null', '1c', '1s', '1c1s', '2c_2', '2c_3', '2c_4'] | ||
interidx = (onep_index.astype (int) + 2*ones_index.astype (int) | ||
+ 3*ocos_index.astype (int) + 4*twoc2_index.astype (int) | ||
+ 5*twoc3_index.astype (int) + 6*twoc4_index.astype (int)) | ||
|
||
nelec = nelec_frs | ||
|
||
spaces = [SingleLASRootspace (las, m, s, c, 0) for c,m,s,w in zip (*get_space_info (las))] | ||
|
||
lroots = get_lroots (ci_fr) | ||
lroots_prod = np.prod (lroots, axis=0) | ||
nj = np.cumsum (lroots_prod) | ||
ni = nj - lroots_prod | ||
ndim = nj[-1] | ||
for opt in range (2): | ||
ham = op[opt].ham (las, h1, h2, ci_fr, nelec)[0] | ||
hket_fr_pabq = op[opt].contract_ham_ci (las, h1, h2, ci_fr, nelec, ci_fr, nelec) | ||
for f, (ci_r, hket_r_pabq) in enumerate (zip (ci_fr, hket_fr_pabq)): | ||
current_order = list (range (las.nfrags)) + [las.nfrags] | ||
current_order.insert (0, current_order.pop (las.nfrags-1-f)) | ||
for r, (ci, hket_pabq) in enumerate (zip (ci_r, hket_r_pabq)): | ||
if ci.ndim < 3: ci = ci[None,:,:] | ||
proper_shape = np.append (lroots[::-1,r], ndim) | ||
current_shape = proper_shape[current_order] | ||
to_proper_order = list (np.argsort (current_order)) | ||
hket_pq = lib.einsum ('rab,pabq->rpq', ci.conj (), hket_pabq) | ||
hket_pq = hket_pq.reshape (current_shape) | ||
hket_pq = hket_pq.transpose (*to_proper_order) | ||
hket_pq = hket_pq.reshape ((lroots_prod[r], ndim)) | ||
hket_ref = ham[ni[r]:nj[r]] | ||
for s, (k, l) in enumerate (zip (ni, nj)): | ||
hket_pq_s = hket_pq[:,k:l] | ||
hket_ref_s = hket_ref[:,k:l] | ||
# TODO: opt>0 for things other than single excitation | ||
#if opt>0 and not spaces[r].is_single_excitation_of (spaces[s]): continue | ||
#elif opt==1: print (r,s, round (lib.fp (hket_pq_s)-lib.fp (hket_ref_s),3)) | ||
with ks.subTest (opt=opt, frag=f, bra_space=r, ket_space=s, | ||
intyp=interactions[interidx[r,s]], | ||
dneleca=nelec[:,r,0]-nelec[:,s,0], | ||
dnelecb=nelec[:,r,1]-nelec[:,s,1]): | ||
ks.assertAlmostEqual (lib.fp (hket_pq_s), lib.fp (hket_ref_s), 8) | ||
|
||
|
||
|