2023-02-07 17:28:11 +01:00
|
|
|
|
2023-07-02 15:29:21 +02:00
|
|
|
! ---
|
|
|
|
|
2024-03-12 18:23:09 +01:00
|
|
|
subroutine diagonalize_CI_tc_bi_ortho(ndet, E_tc, norm )
|
2023-07-02 15:29:21 +02:00
|
|
|
|
2023-02-07 17:28:11 +01:00
|
|
|
BEGIN_DOC
|
2023-07-02 15:29:21 +02:00
|
|
|
! Replace the coefficients of the CI states by the coefficients of the
|
|
|
|
! eigenstates of the CI matrix
|
2023-02-07 17:28:11 +01:00
|
|
|
END_DOC
|
2023-07-02 15:29:21 +02:00
|
|
|
|
|
|
|
use selection_types
|
|
|
|
implicit none
|
|
|
|
integer, intent(inout) :: ndet ! number of determinants from before
|
2024-03-12 14:05:38 +01:00
|
|
|
double precision, intent(inout) :: E_tc(N_states), norm(N_states) ! E and norm from previous wave function
|
|
|
|
integer :: i, j,k
|
2023-07-02 15:29:21 +02:00
|
|
|
|
2023-07-02 21:49:25 +02:00
|
|
|
PROVIDE mo_l_coef mo_r_coef
|
|
|
|
|
2024-03-12 17:45:50 +01:00
|
|
|
do k = 1, N_states
|
|
|
|
E_tc(k) = eigval_right_tc_bi_orth(k)
|
|
|
|
norm(k) = norm_ground_left_right_bi_orth(k)
|
|
|
|
enddo
|
2023-07-02 15:29:21 +02:00
|
|
|
|
2023-05-31 18:11:54 +02:00
|
|
|
psi_energy(1:N_states) = eigval_right_tc_bi_orth(1:N_states) - nuclear_repulsion
|
2023-05-11 10:42:12 +02:00
|
|
|
psi_s2(1:N_states) = s2_eigvec_tc_bi_orth(1:N_states)
|
|
|
|
|
2023-07-02 15:29:21 +02:00
|
|
|
ndet = N_det
|
|
|
|
do j = 1, N_states
|
|
|
|
do i = 1, N_det
|
2023-02-07 17:28:11 +01:00
|
|
|
psi_l_coef_bi_ortho(i,j) = leigvec_tc_bi_orth(i,j)
|
|
|
|
psi_r_coef_bi_ortho(i,j) = reigvec_tc_bi_orth(i,j)
|
2023-07-02 15:29:21 +02:00
|
|
|
psi_coef(i,j) = dabs(psi_l_coef_bi_ortho(i,j) * psi_r_coef_bi_ortho(i,j))
|
2023-02-07 17:28:11 +01:00
|
|
|
enddo
|
|
|
|
enddo
|
2023-07-02 21:49:25 +02:00
|
|
|
SOFT_TOUCH eigval_left_tc_bi_orth eigval_right_tc_bi_orth leigvec_tc_bi_orth reigvec_tc_bi_orth norm_ground_left_right_bi_orth
|
2023-05-11 10:42:12 +02:00
|
|
|
SOFT_TOUCH psi_l_coef_bi_ortho psi_r_coef_bi_ortho psi_coef psi_energy psi_s2
|
2023-02-07 17:28:11 +01:00
|
|
|
|
2023-07-02 15:29:21 +02:00
|
|
|
call save_tc_bi_ortho_wavefunction()
|
|
|
|
|
2023-02-07 17:28:11 +01:00
|
|
|
end
|
|
|
|
|
2023-07-02 15:29:21 +02:00
|
|
|
! ---
|
|
|
|
|