mirror of
https://gitlab.com/scemama/qp_plugins_scemama.git
synced 2024-11-07 14:43:41 +01:00
Fixed dressing
This commit is contained in:
parent
2eee95ba68
commit
e9bd3ee096
@ -7,13 +7,26 @@ program diagonalize_h
|
|||||||
END_DOC
|
END_DOC
|
||||||
read_wf = .True.
|
read_wf = .True.
|
||||||
touch read_wf
|
touch read_wf
|
||||||
|
call pre
|
||||||
call routine
|
call routine
|
||||||
call save_wavefunction_general(N_det,N_states,psi_det_sorted,size(psi_coef_sorted,1),psi_coef_sorted)
|
call save_wavefunction_general(N_det,N_states,psi_det_sorted,size(psi_coef_sorted,1),psi_coef_sorted)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
subroutine pre
|
||||||
|
implicit none
|
||||||
|
double precision, allocatable :: left(:,:), right(:,:), tmp(:,:), res(:,:)
|
||||||
|
allocate (left(1,1:N_det), right(1:N_det,1), tmp(1:N_det,1), res(1,1))
|
||||||
|
left(1,1:N_det) = psi_coef(1:N_det,1)
|
||||||
|
right(1:N_det,1) = psi_coef(1:N_det,1)
|
||||||
|
|
||||||
|
tmp(1:N_det,1:1) = matmul(h_matrix_dressed(1:N_det,1:N_det), right(1:N_det,1:1))
|
||||||
|
res(1:1,1:1) = matmul(left(1:1,1:N_det), tmp(1:N_det,1:1))
|
||||||
|
print *, 'E_in = ', res(1,1)
|
||||||
|
end
|
||||||
subroutine routine
|
subroutine routine
|
||||||
implicit none
|
implicit none
|
||||||
psi_coef(1:N_det,1) = ci_eigenvectors_dressed(1:N_det,1)
|
psi_coef(1:N_det,1) = ci_eigenvectors_dressed(1:N_det,1)
|
||||||
print*,'N_det = ',N_det
|
print*,'N_det = ',N_det
|
||||||
|
print *, 'E = ', ci_energy_dressed(1) + nuclear_repulsion
|
||||||
SOFT_TOUCH psi_coef
|
SOFT_TOUCH psi_coef
|
||||||
end
|
end
|
||||||
|
@ -3,21 +3,22 @@
|
|||||||
implicit none
|
implicit none
|
||||||
BEGIN_DOC
|
BEGIN_DOC
|
||||||
! \Delta_{state-specific}. \Psi
|
! \Delta_{state-specific}. \Psi
|
||||||
|
! Diagonal element is divided by 2 because Delta = D + D^t
|
||||||
END_DOC
|
END_DOC
|
||||||
|
|
||||||
integer :: i,ii,k,j, l
|
integer :: i,ii,k,j, l
|
||||||
double precision :: f, tmp
|
double precision :: f, tmp
|
||||||
double precision, external :: u_dot_v
|
|
||||||
logical, external :: detEq
|
|
||||||
|
|
||||||
dressing_column_h(:,:) = 0.d0
|
dressing_column_h(:,:) = 0.d0
|
||||||
dressing_column_s(:,:) = 0.d0
|
dressing_column_s(:,:) = 0.d0
|
||||||
|
|
||||||
l = dressed_column_idx(1)
|
l = dressed_column_idx(1)
|
||||||
do j = 1, n_det
|
do j = 1, n_det
|
||||||
dressing_column_h(j,1) = 0.5d0*dmc_delta_h(j)
|
dressing_column_h(j,1) = dmc_delta_h(j)
|
||||||
dressing_column_h(l,1) -= 0.5d0 * psi_coef(j,1) * dmc_delta_h(j) /psi_coef(l,1)
|
dressing_column_h(l,1) -= psi_coef(j,1) * dmc_delta_h(j) /psi_coef(l,1)
|
||||||
enddo
|
enddo
|
||||||
|
dressing_column_h(l,1) = dressing_column_h(l,1) * 0.5d0
|
||||||
|
|
||||||
END_PROVIDER
|
END_PROVIDER
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user