2015-03-02 13:58:00 +01:00
|
|
|
program full_ci
|
|
|
|
implicit none
|
|
|
|
integer :: i,k
|
2015-05-06 18:26:36 +02:00
|
|
|
integer :: N_det_old
|
2015-03-02 13:58:00 +01:00
|
|
|
|
|
|
|
|
|
|
|
double precision, allocatable :: pt2(:), norm_pert(:), H_pert_diag(:)
|
|
|
|
integer :: N_st, degree
|
|
|
|
N_st = N_states
|
|
|
|
allocate (pt2(N_st), norm_pert(N_st),H_pert_diag(N_st))
|
|
|
|
character*(64) :: perturbation
|
|
|
|
|
2015-05-06 18:26:36 +02:00
|
|
|
N_det_old = 0
|
2015-03-02 13:58:00 +01:00
|
|
|
pt2 = 1.d0
|
|
|
|
diag_algorithm = "Lapack"
|
2015-05-12 15:14:54 +02:00
|
|
|
if (N_det > N_det_max) then
|
2015-03-02 13:58:00 +01:00
|
|
|
call diagonalize_CI
|
|
|
|
call save_wavefunction
|
|
|
|
psi_det = psi_det_sorted
|
|
|
|
psi_coef = psi_coef_sorted
|
2015-05-12 15:14:54 +02:00
|
|
|
N_det = N_det_max
|
2015-03-02 13:58:00 +01:00
|
|
|
soft_touch N_det psi_det psi_coef
|
|
|
|
call diagonalize_CI
|
|
|
|
call save_wavefunction
|
|
|
|
print *, 'N_det = ', N_det
|
|
|
|
print *, 'N_states = ', N_states
|
|
|
|
print *, 'PT2 = ', pt2
|
|
|
|
print *, 'E = ', CI_energy
|
|
|
|
print *, 'E+PT2 = ', CI_energy+pt2
|
|
|
|
print *, '-----'
|
|
|
|
endif
|
|
|
|
|
2015-05-12 15:14:54 +02:00
|
|
|
do while (N_det < N_det_max.and.maxval(abs(pt2(1:N_st))) > pt2_max)
|
2015-05-06 18:26:36 +02:00
|
|
|
N_det_old = N_det
|
2015-04-09 10:57:15 +02:00
|
|
|
call H_apply_CAS_SD(pt2, norm_pert, H_pert_diag, N_st)
|
2015-03-02 13:58:00 +01:00
|
|
|
|
|
|
|
PROVIDE psi_coef
|
|
|
|
PROVIDE psi_det
|
|
|
|
PROVIDE psi_det_sorted
|
|
|
|
|
2015-05-12 15:14:54 +02:00
|
|
|
if (N_det > N_det_max) then
|
2015-03-02 13:58:00 +01:00
|
|
|
psi_det = psi_det_sorted
|
|
|
|
psi_coef = psi_coef_sorted
|
2015-05-12 15:14:54 +02:00
|
|
|
N_det = N_det_max
|
2015-03-02 13:58:00 +01:00
|
|
|
soft_touch N_det psi_det psi_coef
|
|
|
|
endif
|
|
|
|
call diagonalize_CI
|
|
|
|
call save_wavefunction
|
|
|
|
print *, 'N_det = ', N_det
|
|
|
|
print *, 'N_states = ', N_states
|
|
|
|
print *, 'PT2 = ', pt2
|
|
|
|
print *, 'E = ', CI_energy
|
|
|
|
print *, 'E+PT2 = ', CI_energy+pt2
|
|
|
|
print *, '-----'
|
2015-06-03 18:33:35 +02:00
|
|
|
call ezfio_set_cas_sd_energy(CI_energy)
|
2015-03-02 13:58:00 +01:00
|
|
|
if (abort_all) then
|
|
|
|
exit
|
|
|
|
endif
|
2015-05-06 18:26:36 +02:00
|
|
|
if (N_det == N_det_old) then
|
|
|
|
exit
|
|
|
|
endif
|
2015-03-02 13:58:00 +01:00
|
|
|
enddo
|
2015-04-02 10:13:33 +02:00
|
|
|
|
2015-04-02 11:40:16 +02:00
|
|
|
integer :: exc_max, degree_min
|
2015-04-02 10:13:33 +02:00
|
|
|
exc_max = 0
|
2015-04-02 11:40:16 +02:00
|
|
|
print *, 'CAS determinants : ', N_det_generators
|
2015-04-09 10:57:15 +02:00
|
|
|
do i=1,min(N_det_generators,10)
|
2015-04-02 10:13:33 +02:00
|
|
|
do k=i,N_det_generators
|
2015-04-02 10:26:45 +02:00
|
|
|
call get_excitation_degree(psi_det_generators(1,1,k),psi_det_generators(1,1,i),degree,N_int)
|
2015-04-02 10:13:33 +02:00
|
|
|
exc_max = max(exc_max,degree)
|
|
|
|
enddo
|
2015-04-02 10:26:45 +02:00
|
|
|
call debug_det(psi_det_generators(1,1,i),N_int)
|
2015-04-02 10:13:33 +02:00
|
|
|
print *, ''
|
|
|
|
enddo
|
|
|
|
print *, 'Max excitation degree in the CAS :', exc_max
|
2015-03-02 13:58:00 +01:00
|
|
|
end
|