2015-04-01 13:23:02 +02:00
|
|
|
|
2015-04-09 23:59:06 +02:00
|
|
|
BEGIN_PROVIDER [ double precision, lambda_mrcc, (N_states,psi_det_size) ]
|
2015-04-01 13:23:02 +02:00
|
|
|
implicit none
|
|
|
|
BEGIN_DOC
|
|
|
|
! cm/<Psi_0|H|D_m>
|
|
|
|
END_DOC
|
|
|
|
integer :: i,k
|
|
|
|
double precision :: ihpsi(N_states)
|
2015-04-09 22:32:25 +02:00
|
|
|
do i=1,N_det_non_cas
|
2015-04-09 23:59:06 +02:00
|
|
|
call i_h_psi(psi_non_cas(1,1,i), psi_cas, psi_cas_coef, N_int, N_det_cas, &
|
|
|
|
size(psi_cas_coef,1), n_states, ihpsi)
|
2015-04-01 13:23:02 +02:00
|
|
|
double precision :: hij
|
|
|
|
do k=1,N_states
|
2015-04-10 17:26:07 +02:00
|
|
|
if (dabs(ihpsi(k)) > 1.d-5) then
|
|
|
|
lambda_mrcc(k,i) = psi_non_cas_coef(i,k)/ihpsi(k)
|
|
|
|
lambda_mrcc(k,i) = min( lambda_mrcc (k,i),0.d0 )
|
|
|
|
else
|
|
|
|
lambda_mrcc(k,i) = 0.d0
|
|
|
|
endif
|
2015-04-01 13:23:02 +02:00
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
END_PROVIDER
|
|
|
|
|
2015-04-03 14:26:14 +02:00
|
|
|
|
|
|
|
|
|
|
|
BEGIN_PROVIDER [ character*(32), dressing_type ]
|
|
|
|
implicit none
|
|
|
|
BEGIN_DOC
|
|
|
|
! [ Simple | MRCC ]
|
|
|
|
END_DOC
|
|
|
|
dressing_type = "MRCC"
|
|
|
|
END_PROVIDER
|
|
|
|
|
2015-04-09 22:32:25 +02:00
|
|
|
BEGIN_PROVIDER [ double precision, delta_ij_non_cas, (N_det_non_cas, N_det_non_cas,N_states) ]
|
2015-04-03 14:26:14 +02:00
|
|
|
implicit none
|
|
|
|
BEGIN_DOC
|
|
|
|
! Dressing matrix in SD basis
|
|
|
|
END_DOC
|
2015-04-09 22:32:25 +02:00
|
|
|
delta_ij_non_cas = 0.d0
|
|
|
|
call H_apply_mrcc_simple(delta_ij_non_cas,N_det_non_cas)
|
2015-04-03 14:26:14 +02:00
|
|
|
END_PROVIDER
|
|
|
|
|
|
|
|
BEGIN_PROVIDER [ double precision, delta_ij, (N_det,N_det,N_states) ]
|
|
|
|
implicit none
|
|
|
|
BEGIN_DOC
|
|
|
|
! Dressing matrix in N_det basis
|
|
|
|
END_DOC
|
|
|
|
integer :: i,j,m
|
|
|
|
delta_ij = 0.d0
|
2015-04-09 21:46:37 +02:00
|
|
|
if (dressing_type == "MRCC") then
|
|
|
|
call H_apply_mrcc(delta_ij,N_det)
|
|
|
|
else if (dressing_type == "Simple") then
|
|
|
|
do m=1,N_states
|
2015-04-09 22:32:25 +02:00
|
|
|
do j=1,N_det_non_cas
|
|
|
|
do i=1,N_det_non_cas
|
|
|
|
delta_ij(idx_non_cas(i),idx_non_cas(j),m) = delta_ij_non_cas(i,j,m)
|
2015-04-09 21:46:37 +02:00
|
|
|
enddo
|
|
|
|
enddo
|
2015-04-03 14:26:14 +02:00
|
|
|
enddo
|
2015-04-09 21:46:37 +02:00
|
|
|
endif
|
2015-04-03 14:26:14 +02:00
|
|
|
END_PROVIDER
|
|
|
|
|
|
|
|
BEGIN_PROVIDER [ double precision, h_matrix_dressed, (N_det,N_det) ]
|
|
|
|
implicit none
|
|
|
|
BEGIN_DOC
|
|
|
|
! Dressed H with Delta_ij
|
|
|
|
END_DOC
|
|
|
|
integer :: i, j
|
|
|
|
do j=1,N_det
|
|
|
|
do i=1,N_det
|
|
|
|
h_matrix_dressed(i,j) = h_matrix_all_dets(i,j) + delta_ij(i,j,1)
|
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
|
|
|
|
END_PROVIDER
|
|
|
|
|
|
|
|
|
|
|
|
BEGIN_PROVIDER [ double precision, CI_electronic_energy_dressed, (N_states_diag) ]
|
|
|
|
&BEGIN_PROVIDER [ double precision, CI_eigenvectors_dressed, (N_det,N_states_diag) ]
|
|
|
|
&BEGIN_PROVIDER [ double precision, CI_eigenvectors_s2_dressed, (N_states_diag) ]
|
|
|
|
implicit none
|
|
|
|
BEGIN_DOC
|
|
|
|
! Eigenvectors/values of the CI matrix
|
|
|
|
END_DOC
|
|
|
|
integer :: i,j
|
|
|
|
|
|
|
|
do j=1,N_states_diag
|
|
|
|
do i=1,N_det
|
|
|
|
CI_eigenvectors_dressed(i,j) = psi_coef(i,j)
|
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
|
|
|
|
if (diag_algorithm == "Davidson") then
|
|
|
|
|
|
|
|
stop 'use Lapack'
|
|
|
|
! call davidson_diag(psi_det,CI_eigenvectors_dressed,CI_electronic_energy_dressed, &
|
2015-04-20 10:12:08 +02:00
|
|
|
! size(CI_eigenvectors_dressed,1),N_det,N_states_diag,N_int,output_determinants)
|
2015-04-03 14:26:14 +02:00
|
|
|
|
|
|
|
else if (diag_algorithm == "Lapack") then
|
|
|
|
|
|
|
|
double precision, allocatable :: eigenvectors(:,:), eigenvalues(:)
|
|
|
|
allocate (eigenvectors(size(H_matrix_dressed,1),N_det))
|
|
|
|
allocate (eigenvalues(N_det))
|
|
|
|
call lapack_diag(eigenvalues,eigenvectors, &
|
|
|
|
H_matrix_dressed,size(H_matrix_dressed,1),N_det)
|
|
|
|
CI_electronic_energy_dressed(:) = 0.d0
|
|
|
|
do i=1,N_det
|
|
|
|
CI_eigenvectors_dressed(i,1) = eigenvectors(i,1)
|
|
|
|
enddo
|
|
|
|
integer :: i_state
|
|
|
|
double precision :: s2
|
|
|
|
i_state = 0
|
|
|
|
do j=1,N_det
|
|
|
|
call get_s2_u0(psi_det,eigenvectors(1,j),N_det,N_det,s2)
|
|
|
|
if(dabs(s2-expected_s2).le.0.3d0)then
|
|
|
|
i_state += 1
|
|
|
|
do i=1,N_det
|
|
|
|
CI_eigenvectors_dressed(i,i_state) = eigenvectors(i,j)
|
|
|
|
enddo
|
|
|
|
CI_electronic_energy_dressed(i_state) = eigenvalues(j)
|
|
|
|
CI_eigenvectors_s2_dressed(i_state) = s2
|
|
|
|
endif
|
|
|
|
if (i_state.ge.N_states_diag) then
|
|
|
|
exit
|
|
|
|
endif
|
|
|
|
enddo
|
|
|
|
deallocate(eigenvectors,eigenvalues)
|
|
|
|
endif
|
|
|
|
|
|
|
|
END_PROVIDER
|
|
|
|
|
|
|
|
BEGIN_PROVIDER [ double precision, CI_energy_dressed, (N_states_diag) ]
|
|
|
|
implicit none
|
|
|
|
BEGIN_DOC
|
|
|
|
! N_states lowest eigenvalues of the dressed CI matrix
|
|
|
|
END_DOC
|
|
|
|
|
|
|
|
integer :: j
|
|
|
|
character*(8) :: st
|
2015-04-20 10:12:08 +02:00
|
|
|
call write_time(output_determinants)
|
2015-04-03 14:26:14 +02:00
|
|
|
do j=1,N_states_diag
|
|
|
|
CI_energy_dressed(j) = CI_electronic_energy_dressed(j) + nuclear_repulsion
|
|
|
|
enddo
|
|
|
|
|
|
|
|
END_PROVIDER
|
|
|
|
|
2015-04-09 21:46:37 +02:00
|
|
|
subroutine diagonalize_CI_dressed
|
|
|
|
implicit none
|
|
|
|
BEGIN_DOC
|
|
|
|
! Replace the coefficients of the CI states by the coefficients of the
|
|
|
|
! eigenstates of the CI matrix
|
|
|
|
END_DOC
|
|
|
|
integer :: i,j
|
|
|
|
do j=1,N_states_diag
|
|
|
|
do i=1,N_det
|
|
|
|
psi_coef(i,j) = CI_eigenvectors_dressed(i,j)
|
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
SOFT_TOUCH psi_coef
|
|
|
|
|
|
|
|
end
|