2019-01-25 11:39:31 +01:00
|
|
|
subroutine run_cipsi
|
|
|
|
implicit none
|
|
|
|
BEGIN_DOC
|
|
|
|
! Selected Full Configuration Interaction with deterministic selection and
|
|
|
|
! stochastic PT2.
|
|
|
|
END_DOC
|
|
|
|
integer :: i,j,k
|
2019-06-05 18:57:17 +02:00
|
|
|
double precision, allocatable :: pt2(:), variance(:), norm(:), rpt2(:), zeros(:)
|
2019-01-25 11:39:31 +01:00
|
|
|
integer :: n_det_before, to_select
|
|
|
|
|
|
|
|
double precision :: rss
|
|
|
|
double precision, external :: memory_of_double
|
|
|
|
rss = memory_of_double(N_states)*4.d0
|
|
|
|
call check_mem(rss,irp_here)
|
|
|
|
|
2019-06-28 00:04:12 +02:00
|
|
|
N_iter = 1
|
2019-06-05 18:57:17 +02:00
|
|
|
allocate (pt2(N_states), zeros(N_states), rpt2(N_states), norm(N_states), variance(N_states))
|
2019-01-25 11:39:31 +01:00
|
|
|
|
|
|
|
double precision :: hf_energy_ref
|
|
|
|
logical :: has
|
|
|
|
double precision :: relative_error
|
|
|
|
|
|
|
|
PROVIDE H_apply_buffer_allocated
|
|
|
|
|
|
|
|
relative_error=PT2_relative_error
|
|
|
|
|
2019-06-05 18:57:17 +02:00
|
|
|
zeros = 0.d0
|
2019-01-25 11:39:31 +01:00
|
|
|
pt2 = -huge(1.e0)
|
|
|
|
rpt2 = -huge(1.e0)
|
|
|
|
norm = 0.d0
|
2019-06-05 18:57:17 +02:00
|
|
|
variance = huge(1.e0)
|
2019-01-25 11:39:31 +01:00
|
|
|
|
|
|
|
if (s2_eig) then
|
|
|
|
call make_s2_eigenfunction
|
|
|
|
endif
|
|
|
|
call diagonalize_CI
|
|
|
|
call save_wavefunction
|
|
|
|
|
|
|
|
call ezfio_has_hartree_fock_energy(has)
|
|
|
|
if (has) then
|
|
|
|
call ezfio_get_hartree_fock_energy(hf_energy_ref)
|
|
|
|
else
|
|
|
|
hf_energy_ref = ref_bitmask_energy
|
|
|
|
endif
|
|
|
|
|
|
|
|
if (N_det > N_det_max) then
|
|
|
|
psi_det = psi_det_sorted
|
|
|
|
psi_coef = psi_coef_sorted
|
|
|
|
N_det = N_det_max
|
|
|
|
soft_touch N_det psi_det psi_coef
|
|
|
|
if (s2_eig) then
|
|
|
|
call make_s2_eigenfunction
|
|
|
|
endif
|
|
|
|
call diagonalize_CI
|
|
|
|
call save_wavefunction
|
|
|
|
endif
|
|
|
|
|
|
|
|
n_det_before = 0
|
|
|
|
|
|
|
|
double precision :: correlation_energy_ratio
|
|
|
|
double precision :: threshold_generators_save
|
|
|
|
threshold_generators_save = threshold_generators
|
|
|
|
double precision :: error(N_states)
|
|
|
|
logical, external :: qp_stop
|
|
|
|
|
|
|
|
correlation_energy_ratio = 0.d0
|
|
|
|
|
|
|
|
do while ( &
|
|
|
|
(N_det < N_det_max) .and. &
|
2019-06-04 11:14:42 +02:00
|
|
|
(maxval(abs(rpt2(1:N_states))) > pt2_max) .and. &
|
2019-06-05 18:57:17 +02:00
|
|
|
(maxval(variance(1:N_states)) > variance_max) .and. &
|
2019-01-25 11:39:31 +01:00
|
|
|
(correlation_energy_ratio <= correlation_energy_ratio_max) &
|
|
|
|
)
|
|
|
|
write(*,'(A)') '--------------------------------------------------------------------------------'
|
|
|
|
|
|
|
|
|
|
|
|
if (do_pt2) then
|
|
|
|
pt2 = 0.d0
|
|
|
|
variance = 0.d0
|
|
|
|
norm = 0.d0
|
|
|
|
threshold_generators = 1.d0
|
|
|
|
SOFT_TOUCH threshold_generators
|
|
|
|
call ZMQ_pt2(psi_energy_with_nucl_rep,pt2,relative_error,error, variance, &
|
|
|
|
norm, 0) ! Stochastic PT2
|
|
|
|
threshold_generators = threshold_generators_save
|
|
|
|
SOFT_TOUCH threshold_generators
|
|
|
|
endif
|
|
|
|
|
2019-06-05 18:57:17 +02:00
|
|
|
do k=1,N_states
|
|
|
|
rpt2(k) = pt2(k)/(1.d0 + norm(k))
|
|
|
|
enddo
|
2019-01-25 11:39:31 +01:00
|
|
|
|
|
|
|
correlation_energy_ratio = (psi_energy_with_nucl_rep(1) - hf_energy_ref) / &
|
2019-06-05 18:57:17 +02:00
|
|
|
(psi_energy_with_nucl_rep(1) + rpt2(1) - hf_energy_ref)
|
2019-01-25 11:39:31 +01:00
|
|
|
correlation_energy_ratio = min(1.d0,correlation_energy_ratio)
|
|
|
|
|
|
|
|
call write_double(6,correlation_energy_ratio, 'Correlation ratio')
|
|
|
|
call print_summary(psi_energy_with_nucl_rep(1:N_states),pt2,error,variance,norm,N_det,N_occ_pattern,N_states,psi_s2)
|
|
|
|
|
2019-02-22 19:19:58 +01:00
|
|
|
call save_energy(psi_energy_with_nucl_rep, rpt2)
|
2019-01-25 11:39:31 +01:00
|
|
|
|
|
|
|
call save_iterations(psi_energy_with_nucl_rep(1:N_states),rpt2,N_det)
|
|
|
|
call print_extrapolated_energy()
|
|
|
|
N_iter += 1
|
|
|
|
|
|
|
|
if (qp_stop()) exit
|
|
|
|
|
|
|
|
n_det_before = N_det
|
2019-06-05 18:57:17 +02:00
|
|
|
to_select = int(sqrt(dble(N_states))*dble(N_det)*selection_factor)
|
2019-01-25 11:39:31 +01:00
|
|
|
to_select = max(N_states_diag, to_select)
|
2020-03-07 11:40:42 +01:00
|
|
|
to_select = max(to_select,1)
|
2019-01-25 11:39:31 +01:00
|
|
|
call ZMQ_selection(to_select, pt2, variance, norm)
|
|
|
|
|
|
|
|
PROVIDE psi_coef
|
|
|
|
PROVIDE psi_det
|
|
|
|
PROVIDE psi_det_sorted
|
|
|
|
|
|
|
|
call diagonalize_CI
|
|
|
|
call save_wavefunction
|
2019-06-05 18:57:17 +02:00
|
|
|
call save_energy(psi_energy_with_nucl_rep, zeros)
|
2019-01-25 11:39:31 +01:00
|
|
|
if (qp_stop()) exit
|
2019-06-05 18:57:17 +02:00
|
|
|
print *, (N_det < N_det_max)
|
|
|
|
print *, (maxval(abs(rpt2(1:N_states))) > pt2_max)
|
|
|
|
print *, (maxval(variance(1:N_states)) > variance_max)
|
|
|
|
print *, (correlation_energy_ratio <= correlation_energy_ratio_max)
|
2019-01-25 11:39:31 +01:00
|
|
|
enddo
|
|
|
|
|
|
|
|
if (.not.qp_stop()) then
|
|
|
|
if (N_det < N_det_max) then
|
|
|
|
call diagonalize_CI
|
|
|
|
call save_wavefunction
|
2019-06-05 18:57:17 +02:00
|
|
|
call save_energy(psi_energy_with_nucl_rep, zeros)
|
2019-01-25 11:39:31 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
if (do_pt2) then
|
2019-06-05 18:57:17 +02:00
|
|
|
pt2(:) = 0.d0
|
|
|
|
variance(:) = 0.d0
|
|
|
|
norm(:) = 0.d0
|
2019-01-25 11:39:31 +01:00
|
|
|
threshold_generators = 1d0
|
|
|
|
SOFT_TOUCH threshold_generators
|
|
|
|
call ZMQ_pt2(psi_energy_with_nucl_rep, pt2,relative_error,error,variance, &
|
|
|
|
norm,0) ! Stochastic PT2
|
|
|
|
SOFT_TOUCH threshold_generators
|
|
|
|
endif
|
|
|
|
print *, 'N_det = ', N_det
|
|
|
|
print *, 'N_sop = ', N_occ_pattern
|
|
|
|
print *, 'N_states = ', N_states
|
|
|
|
print*, 'correlation_ratio = ', correlation_energy_ratio
|
|
|
|
|
|
|
|
|
|
|
|
do k=1,N_states
|
2019-06-04 11:15:43 +02:00
|
|
|
rpt2(k) = pt2(k)/(1.d0 + norm(k))
|
2019-01-25 11:39:31 +01:00
|
|
|
enddo
|
|
|
|
|
|
|
|
call print_summary(psi_energy_with_nucl_rep(1:N_states),pt2,error,variance,norm,N_det,N_occ_pattern,N_states,psi_s2)
|
2019-06-05 18:57:17 +02:00
|
|
|
call save_energy(psi_energy_with_nucl_rep, rpt2)
|
2019-01-25 11:39:31 +01:00
|
|
|
call save_iterations(psi_energy_with_nucl_rep(1:N_states),rpt2,N_det)
|
|
|
|
call print_extrapolated_energy()
|
|
|
|
endif
|
|
|
|
|
|
|
|
end
|