10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-18 11:15:28 +02:00
quantum_package/src/Dets/determinants.irp.f

398 lines
9.9 KiB
FortranFixed
Raw Normal View History

2014-05-13 13:57:58 +02:00
use bitmasks
2014-06-27 10:16:40 +02:00
BEGIN_PROVIDER [ logical, read_wf ]
implicit none
BEGIN_DOC
! If true, read the wave function from the EZFIO file
END_DOC
read_wf = .False.
END_PROVIDER
2014-05-13 13:57:58 +02:00
BEGIN_PROVIDER [ integer, N_states ]
implicit none
BEGIN_DOC
! Number of states to consider
END_DOC
logical :: exists
PROVIDE ezfio_filename
call ezfio_has_determinants_n_states(exists)
if (exists) then
call ezfio_get_determinants_n_states(N_states)
else
N_states = 1
endif
2014-06-09 00:15:48 +02:00
call write_int(output_dets,N_states,'Number of states')
ASSERT (N_states > 0)
2014-05-13 13:57:58 +02:00
END_PROVIDER
BEGIN_PROVIDER [ integer, N_det ]
implicit none
BEGIN_DOC
! Number of determinants in the wave function
END_DOC
logical :: exists
2014-06-09 00:15:48 +02:00
character*64 :: label
PROVIDE ezfio_filename
2014-06-27 10:16:40 +02:00
if (read_wf) then
call ezfio_has_determinants_n_det(exists)
2014-06-09 00:15:48 +02:00
if (exists) then
if (exists) then
2014-06-27 10:16:40 +02:00
call ezfio_has_determinants_mo_label(exists)
if (exists) then
call ezfio_get_determinants_mo_label(label)
exists = (label == mo_label)
endif
2014-06-09 00:15:48 +02:00
endif
endif
2014-06-27 10:16:40 +02:00
if (exists) then
call ezfio_get_determinants_n_det(N_det)
else
N_det = 1
endif
else
N_det = 1
endif
2014-06-09 00:15:48 +02:00
call write_int(output_dets,N_det,'Number of determinants')
ASSERT (N_det > 0)
2014-05-13 13:57:58 +02:00
END_PROVIDER
BEGIN_PROVIDER [ integer, N_det_max_jacobi ]
implicit none
BEGIN_DOC
! Maximum number of determinants diagonalized my jacobi
END_DOC
logical :: exists
PROVIDE ezfio_filename
call ezfio_has_determinants_n_det_max_jacobi(exists)
if (exists) then
call ezfio_get_determinants_n_det_max_jacobi(N_det_max_jacobi)
else
2014-06-27 10:16:40 +02:00
N_det_max_jacobi = 5000
endif
2014-06-09 00:15:48 +02:00
call write_int(output_dets,N_det_max_jacobi,'Lapack diagonalization up to')
ASSERT (N_det_max_jacobi > 0)
END_PROVIDER
BEGIN_PROVIDER [ integer, psi_det_size ]
implicit none
BEGIN_DOC
! Size of the psi_det/psi_coef arrays
END_DOC
2014-06-08 00:22:33 +02:00
PROVIDE ezfio_filename
logical :: exists
call ezfio_has_determinants_n_det(exists)
if (exists) then
call ezfio_get_determinants_n_det(psi_det_size)
else
psi_det_size = 1
endif
psi_det_size = max(psi_det_size,10000)
2014-06-09 00:15:48 +02:00
call write_int(output_dets,psi_det_size,'Dimension of the psi arrays')
2014-06-08 00:22:33 +02:00
END_PROVIDER
2014-06-07 22:07:50 +02:00
BEGIN_PROVIDER [ integer(bit_kind), psi_det, (N_int,2,psi_det_size) ]
2014-05-13 13:57:58 +02:00
implicit none
BEGIN_DOC
2014-06-04 21:28:43 +02:00
! The wave function determinants. Initialized with Hartree-Fock if the EZFIO file
! is empty
2014-05-13 13:57:58 +02:00
END_DOC
2014-06-08 00:22:33 +02:00
integer :: i
2014-06-07 22:07:50 +02:00
logical :: exists
2014-06-09 00:15:48 +02:00
character*64 :: label
2014-06-27 10:16:40 +02:00
if (read_wf) then
call ezfio_has_determinants_N_int(exists)
2014-06-07 22:07:50 +02:00
if (exists) then
2014-06-27 10:16:40 +02:00
call ezfio_has_determinants_bit_kind(exists)
2014-06-07 22:07:50 +02:00
if (exists) then
2014-06-27 10:16:40 +02:00
call ezfio_has_determinants_N_det(exists)
2014-06-09 00:15:48 +02:00
if (exists) then
2014-06-27 10:16:40 +02:00
call ezfio_has_determinants_N_states(exists)
if (exists) then
call ezfio_has_determinants_psi_det(exists)
2014-06-09 00:15:48 +02:00
if (exists) then
2014-06-27 10:16:40 +02:00
call ezfio_has_determinants_mo_label(exists)
if (exists) then
call ezfio_get_determinants_mo_label(label)
exists = (label == mo_label)
endif
2014-06-09 00:15:48 +02:00
endif
2014-06-27 10:16:40 +02:00
endif
2014-06-09 00:15:48 +02:00
endif
2014-06-07 22:07:50 +02:00
endif
endif
2014-06-27 10:16:40 +02:00
if (exists) then
call read_dets(psi_det,N_int,N_det)
else
psi_det = 0_bit_kind
do i=1,N_int
psi_det(i,1,1) = HF_bitmask(i,1)
psi_det(i,2,1) = HF_bitmask(i,2)
enddo
endif
2014-06-07 22:07:50 +02:00
else
psi_det = 0_bit_kind
do i=1,N_int
psi_det(i,1,1) = HF_bitmask(i,1)
psi_det(i,2,1) = HF_bitmask(i,2)
enddo
endif
2014-05-13 13:57:58 +02:00
2014-06-04 21:28:43 +02:00
END_PROVIDER
2014-06-07 22:07:50 +02:00
subroutine read_dets(det,Nint,Ndet)
2014-06-08 00:22:33 +02:00
use bitmasks
2014-06-07 22:07:50 +02:00
implicit none
BEGIN_DOC
! Reads the determinants from the EZFIO file
END_DOC
integer, intent(in) :: Nint,Ndet
integer(bit_kind), intent(out) :: det(Nint,2,Ndet)
integer*8, allocatable :: psi_det_read(:,:,:)
double precision, allocatable :: psi_coef_read(:,:)
integer*8 :: det_8(100)
integer(bit_kind) :: det_bk((100*8)/bit_kind)
integer :: N_int2
integer :: i,k
equivalence (det_8, det_bk)
call ezfio_get_determinants_N_int(N_int2)
2014-06-08 00:22:33 +02:00
ASSERT (N_int2 == Nint)
2014-06-07 22:07:50 +02:00
call ezfio_get_determinants_bit_kind(k)
ASSERT (k == bit_kind)
2014-06-08 00:22:33 +02:00
N_int2 = (Nint*bit_kind)/8
allocate (psi_det_read(N_int2,2,Ndet))
2014-06-07 22:07:50 +02:00
call ezfio_get_determinants_psi_det (psi_det_read)
2014-06-08 00:22:33 +02:00
do i=1,Ndet
2014-06-07 22:07:50 +02:00
do k=1,N_int2
det_8(k) = psi_det_read(k,1,i)
enddo
2014-06-08 00:22:33 +02:00
do k=1,Nint
2014-06-07 22:07:50 +02:00
det(k,1,i) = det_bk(k)
enddo
do k=1,N_int2
det_8(k) = psi_det_read(k,2,i)
enddo
2014-06-08 00:22:33 +02:00
do k=1,Nint
2014-06-07 22:07:50 +02:00
det(k,2,i) = det_bk(k)
enddo
enddo
deallocate(psi_det_read)
end
2014-06-04 21:28:43 +02:00
2014-06-07 22:07:50 +02:00
BEGIN_PROVIDER [ double precision, psi_coef, (psi_det_size,N_states) ]
implicit none
BEGIN_DOC
! The wave function coefficients. Initialized with Hartree-Fock if the EZFIO file
! is empty
END_DOC
integer :: i,k, N_int2
logical :: exists
double precision, allocatable :: psi_coef_read(:,:)
2014-06-09 00:15:48 +02:00
character*(64) :: label
2014-06-07 22:07:50 +02:00
2014-06-27 10:16:40 +02:00
if (read_wf) then
call ezfio_has_determinants_psi_coef(exists)
2014-06-09 00:15:48 +02:00
if (exists) then
2014-06-27 10:16:40 +02:00
call ezfio_has_determinants_mo_label(exists)
if (exists) then
call ezfio_get_determinants_mo_label(label)
exists = (label == mo_label)
endif
2014-06-09 00:15:48 +02:00
endif
2014-06-07 22:07:50 +02:00
2014-06-27 10:16:40 +02:00
if (exists) then
allocate (psi_coef_read(N_det,N_states))
call ezfio_get_determinants_psi_coef(psi_coef_read)
do k=1,N_states
do i=1,N_det
psi_coef(i,k) = psi_coef_read(i,k)
enddo
2014-06-07 22:07:50 +02:00
enddo
2014-06-27 10:16:40 +02:00
deallocate(psi_coef_read)
else
psi_coef = 0.d0
do i=1,N_states
psi_coef(i,i) = 1.d0
enddo
endif
2014-06-07 22:07:50 +02:00
else
2014-06-04 21:28:43 +02:00
psi_coef = 0.d0
2014-06-07 22:07:50 +02:00
do i=1,N_states
psi_coef(i,i) = 1.d0
enddo
endif
2014-06-08 00:22:33 +02:00
2014-06-07 22:07:50 +02:00
2014-05-13 13:57:58 +02:00
END_PROVIDER
2014-05-29 01:38:46 +02:00
BEGIN_PROVIDER [ double precision, psi_average_norm_contrib, (N_det) ]
implicit none
BEGIN_DOC
! Contribution of determinants to the state-averaged density
END_DOC
integer :: i,j,k
double precision :: f
f = 1.d0/dble(N_states)
do i=1,N_det
psi_average_norm_contrib(i) = psi_coef(i,1)*psi_coef(i,1)*f
enddo
do k=2,N_states
do i=1,N_det
psi_average_norm_contrib(i) = psi_average_norm_contrib(i) + &
psi_coef(i,k)*psi_coef(i,k)*f
enddo
enddo
END_PROVIDER
BEGIN_PROVIDER [ integer(bit_kind), psi_det_sorted, (N_int,2,N_det) ]
&BEGIN_PROVIDER [ double precision, psi_coef_sorted, (N_det,N_states) ]
&BEGIN_PROVIDER [ double precision, psi_average_norm_contrib_sorted, (N_det) ]
implicit none
BEGIN_DOC
2014-06-02 15:18:45 +02:00
! Wave function sorted by determinants contribution to the norm (state-averaged)
2014-05-29 01:38:46 +02:00
END_DOC
integer :: i,j,k
integer, allocatable :: iorder(:)
allocate ( iorder(N_det) )
do i=1,N_det
psi_average_norm_contrib_sorted(i) = -psi_average_norm_contrib(i)
iorder(i) = i
enddo
call dsort(psi_average_norm_contrib_sorted,iorder,N_det)
!DIR$ IVDEP
do i=1,N_det
do j=1,N_int
psi_det_sorted(j,1,i) = psi_det(j,1,iorder(i))
psi_det_sorted(j,2,i) = psi_det(j,2,iorder(i))
enddo
do k=1,N_states
psi_coef_sorted(i,k) = psi_coef(iorder(i),k)
enddo
psi_average_norm_contrib_sorted(i) = -psi_average_norm_contrib_sorted(i)
enddo
deallocate(iorder)
END_PROVIDER
2014-06-02 15:18:45 +02:00
BEGIN_PROVIDER [ integer(bit_kind), psi_det_sorted_bit, (N_int,2,N_det) ]
&BEGIN_PROVIDER [ double precision, psi_coef_sorted_bit, (N_det,N_states) ]
implicit none
BEGIN_DOC
! Determinants on which we apply <i|H|psi> for perturbation.
!o They are sorted by determinants interpreted as integers. Useful
! to accelerate the search of a determinant
END_DOC
integer :: i,j,k
integer, allocatable :: iorder(:)
integer*8, allocatable :: bit_tmp(:)
integer*8, external :: det_search_key
allocate ( iorder(N_det), bit_tmp(N_det) )
do i=1,N_det
iorder(i) = i
!$DIR FORCEINLINE
bit_tmp(i) = det_search_key(psi_det(1,1,i),N_int)
enddo
call i8sort(bit_tmp,iorder,N_det)
!DIR$ IVDEP
do i=1,N_det
do j=1,N_int
psi_det_sorted_bit(j,1,i) = psi_det(j,1,iorder(i))
psi_det_sorted_bit(j,2,i) = psi_det(j,2,iorder(i))
enddo
do k=1,N_states
psi_coef_sorted_bit(i,k) = psi_coef(iorder(i),k)
enddo
enddo
deallocate(iorder)
END_PROVIDER
integer*8 function det_search_key(det,Nint)
use bitmasks
implicit none
BEGIN_DOC
! Return an integer*8 corresponding to a determinant index for searching
END_DOC
integer, intent(in) :: Nint
integer(bit_kind), intent(in) :: det(Nint,2)
integer :: i
det_search_key = iand(det(1,1),det(1,2))
do i=2,Nint
det_search_key = ieor(det_search_key,iand(det(i,1),det(i,2)))
enddo
end
2014-06-07 22:07:50 +02:00
subroutine save_wavefunction
implicit none
BEGIN_DOC
! Save the wave function into the EZFIO file
END_DOC
integer*8, allocatable :: psi_det_save(:,:,:)
double precision, allocatable :: psi_coef_save(:,:)
integer*8 :: det_8(100)
integer(bit_kind) :: det_bk((100*8)/bit_kind)
integer :: N_int2
equivalence (det_8, det_bk)
integer :: i,k
call ezfio_set_determinants_N_int(N_int)
call ezfio_set_determinants_bit_kind(bit_kind)
call ezfio_set_determinants_N_det(N_det)
call ezfio_set_determinants_N_states(N_states)
2014-06-09 00:15:48 +02:00
call ezfio_set_determinants_mo_label(mo_label)
2014-06-07 22:07:50 +02:00
N_int2 = (N_int*bit_kind)/8
allocate (psi_det_save(N_int2,2,N_det))
do i=1,N_det
do k=1,N_int
det_bk(k) = psi_det_sorted(k,1,i)
enddo
do k=1,N_int2
psi_det_save(k,1,i) = det_8(k)
enddo
do k=1,N_int
2014-06-09 00:15:48 +02:00
det_bk(k) = psi_det_sorted(k,2,i)
2014-06-07 22:07:50 +02:00
enddo
do k=1,N_int2
psi_det_save(k,2,i) = det_8(k)
enddo
enddo
call ezfio_set_determinants_psi_det(psi_det_save)
deallocate (psi_det_save)
allocate (psi_coef_save(N_det,N_states))
do k=1,N_states
do i=1,N_det
psi_coef_save(i,k) = psi_coef_sorted(i,k)
enddo
enddo
call ezfio_set_determinants_psi_coef(psi_coef_save)
2014-06-09 00:15:48 +02:00
call write_int(output_dets,N_det,'Saved determinants')
2014-06-07 22:07:50 +02:00
deallocate (psi_coef_save)
end