10
0
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-06-27 23:52:24 +02:00
QuantumPackage/src/cipsi/stochastic_cipsi.irp.f

146 lines
4.2 KiB
Fortran
Raw Normal View History

2019-01-25 11:39:31 +01:00
subroutine run_stochastic_cipsi
2020-08-28 00:10:46 +02:00
use selection_types
2019-01-25 11:39:31 +01:00
implicit none
BEGIN_DOC
! Selected Full Configuration Interaction with Stochastic selection and PT2.
END_DOC
integer :: i,j,k
2020-08-28 00:10:46 +02:00
double precision, allocatable :: rpt2(:), zeros(:)
2019-01-25 11:39:31 +01:00
integer :: to_select
2020-08-28 00:10:46 +02:00
type(pt2_type) :: pt2_data
logical, external :: qp_stop
2019-01-25 11:39:31 +01:00
double precision :: rss
double precision, external :: memory_of_double
2020-08-23 02:07:20 +02:00
PROVIDE H_apply_buffer_allocated
2019-01-25 11:39:31 +01:00
2019-06-28 00:04:12 +02:00
N_iter = 1
2019-01-25 11:39:31 +01:00
threshold_generators = 1.d0
SOFT_TOUCH threshold_generators
rss = memory_of_double(N_states)*4.d0
call check_mem(rss,irp_here)
2020-08-28 00:10:46 +02:00
allocate (zeros(N_states), rpt2(N_states))
2020-08-28 15:39:01 +02:00
call pt2_alloc(pt2_data, N_states)
2019-01-25 11:39:31 +01:00
double precision :: hf_energy_ref
logical :: has
double precision :: relative_error
relative_error=PT2_relative_error
2019-06-05 18:57:17 +02:00
zeros = 0.d0
2019-01-25 11:39:31 +01:00
rpt2 = -huge(1.e0)
2020-08-28 15:39:01 +02:00
pt2_data % pt2 = -huge(1.e0)
2020-08-28 00:10:46 +02:00
pt2_data % norm2 = 0.d0
pt2_data % 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
double precision :: correlation_energy_ratio
correlation_energy_ratio = 0.d0
do while ( &
(N_det < N_det_max) .and. &
2020-08-28 00:10:46 +02:00
(maxval(abs(pt2_data % pt2(1:N_states))) > pt2_max) .and. &
(maxval(abs(pt2_data % variance(1:N_states))) > variance_max) .and. &
2019-01-25 11:39:31 +01:00
(correlation_energy_ratio <= correlation_energy_ratio_max) &
)
write(*,'(A)') '--------------------------------------------------------------------------------'
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-08-28 00:10:46 +02:00
pt2_data % pt2 = 0.d0
pt2_data % variance = 0.d0
pt2_data % norm2 = 0.d0
2020-08-28 15:39:01 +02:00
call ZMQ_pt2(psi_energy_with_nucl_rep,pt2_data,relative_error,to_select) ! Stochastic PT2 and selection
2019-01-25 11:39:31 +01:00
2019-06-05 18:57:17 +02:00
do k=1,N_states
2020-08-28 00:10:46 +02:00
rpt2(k) = pt2_data % pt2(k)/(1.d0 + pt2_data % norm2(k))
2019-06-05 18:57:17 +02:00
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')
2020-08-28 00:10:46 +02:00
call print_summary(psi_energy_with_nucl_rep, &
2020-08-28 15:39:01 +02:00
pt2_data, N_det,N_occ_pattern,N_states,psi_s2)
2019-01-25 11:39:31 +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
2020-06-12 23:45:23 +02:00
if (qp_stop()) exit
2019-01-25 11:39:31 +01:00
! Add selected determinants
call copy_H_apply_buffer_to_wf()
2019-10-24 13:55:38 +02:00
! call save_wavefunction
2019-01-25 11:39:31 +01:00
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)
2020-08-23 02:07:20 +02:00
if (qp_stop()) exit
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
2020-08-28 00:10:46 +02:00
pt2_data % pt2(:) = 0.d0
pt2_data % variance(:) = 0.d0
pt2_data % norm2(:) = 0.d0
2020-08-28 15:39:01 +02:00
call ZMQ_pt2(psi_energy_with_nucl_rep, pt2_data, relative_error, 0) ! Stochastic PT2
2019-01-25 11:39:31 +01:00
do k=1,N_states
2020-08-28 00:10:46 +02:00
rpt2(k) = pt2_data % pt2(k)/(1.d0 + pt2_data % norm2(k))
2019-01-25 11:39:31 +01:00
enddo
Develop (#15) * fixed laplacian of aos * corrected the laplacians of aos * added dft_one_e * added new feature for new dft functionals * changed the configure to add new functionals * changed the configure * added dft_one_e/README.rst * added README.rst in new_functionals * added source/programmers_guide/new_ks.rst * Thesis Yann * Added gmp installation in configure * improved qp_e_conv_fci * Doc * Typos * Added variance_max * Fixed completion in qp_create * modif TODO * fixed DFT potential for n_states gt 1 * improved pot pbe * trying to improve sr PBE * fixed potential pbe * fixed the vxc smashed for pbe sr and normal * Comments in selection * bug fixed by peter * Fixed bug with zero beta electrons * Update README.rst * Update e_xc_new_func.irp.f * Update links.rst * Update quickstart.rst * Update quickstart.rst * updated cipsi * Fixed energies of non-expected s2 (#9) * Moved diag_algorithm in Davdison * Add print_ci_vector in tools (#11) * Fixed energies of non-expected s2 * Moved diag_algorithm in Davdison * Fixed travis * Added print_ci_vector * Documentation * Cleaned qp_set_mo_class.ml * Removed Core in taskserver * Merge develop-toto and manus (#12) * Fixed energies of non-expected s2 * Moved diag_algorithm in Davdison * Fixed travis * Added print_ci_vector * Documentation * Cleaned qp_set_mo_class.ml * Removed Core in taskserver * Frozen core for heavy atoms * Improved molden module * In sync with manus * Fixed some of the documentation errors * Develop toto (#13) * Fixed energies of non-expected s2 * Moved diag_algorithm in Davdison * Fixed travis * Added print_ci_vector * Documentation * Cleaned qp_set_mo_class.ml * Removed Core in taskserver * Frozen core for heavy atoms * Improved molden module * In sync with manus * Fixed some of the documentation errors * Develop manus (#14) * modified printing for rpt2 * Comment * Fixed plugins * Scripting for functionals * Documentation * Develop (#10) * fixed laplacian of aos * corrected the laplacians of aos * added dft_one_e * added new feature for new dft functionals * changed the configure to add new functionals * changed the configure * added dft_one_e/README.rst * added README.rst in new_functionals * added source/programmers_guide/new_ks.rst * Thesis Yann * Added gmp installation in configure * improved qp_e_conv_fci * Doc * Typos * Added variance_max * Fixed completion in qp_create * modif TODO * fixed DFT potential for n_states gt 1 * improved pot pbe * trying to improve sr PBE * fixed potential pbe * fixed the vxc smashed for pbe sr and normal * Comments in selection * bug fixed by peter * Fixed bug with zero beta electrons * Update README.rst * Update e_xc_new_func.irp.f * Update links.rst * Update quickstart.rst * Update quickstart.rst * updated cipsi * Fixed energies of non-expected s2 (#9) * Moved diag_algorithm in Davdison * some modifs * modified gfortran_debug.cfg * fixed automatization of functionals * modified e_xc_general.irp.f * minor modifs in ref_bitmask.irp.f * modifying functionals * rs_ks_scf and ks_scf compiles with the automatic handling of functionals * removed prints * fixed configure * fixed the new functionals * Merge toto * modified automatic functionals * Changed python into python2 * from_xyz suppressed * Cleaning repo * Update README.md * Update README.md * Contributors * Update GITHUB.md * bibtex
2019-03-07 16:29:06 +01:00
call save_energy(psi_energy_with_nucl_rep, rpt2)
2020-08-28 00:10:46 +02:00
call print_summary(psi_energy_with_nucl_rep, &
2020-08-28 15:39:01 +02:00
pt2_data , N_det, N_occ_pattern, N_states, psi_s2)
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
2020-08-28 15:39:01 +02:00
call pt2_dealloc(pt2_data)
2019-01-25 11:39:31 +01:00
end