10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-30 00:44:28 +02:00
quantum_package/plugins/Perturbation/perturbation.template.f

197 lines
7.1 KiB
FortranFixed
Raw Normal View History

2014-05-18 22:46:38 +02:00
BEGIN_SHELL [ /usr/bin/env python ]
import perturbation
END_SHELL
2015-12-16 15:05:57 +01:00
subroutine perturb_buffer_$PERT(i_generator,buffer,buffer_size,e_2_pert_buffer,coef_pert_buffer,sum_e_2_pert,sum_norm_pert,sum_H_pert_diag,N_st,Nint,key_mask,fock_diag_tmp)
2014-05-18 22:46:38 +02:00
implicit none
BEGIN_DOC
! Applly pertubration ``$PERT`` to the buffer of determinants generated in the H_apply
! routine.
END_DOC
2014-05-27 17:30:44 +02:00
integer, intent(in) :: Nint, N_st, buffer_size, i_generator
2014-05-18 22:46:38 +02:00
integer(bit_kind), intent(in) :: buffer(Nint,2,buffer_size)
2015-11-19 14:38:41 +01:00
integer(bit_kind),intent(in) :: key_mask(Nint,2)
double precision, intent(in) :: fock_diag_tmp(2,0:mo_tot_num)
2014-05-21 16:37:54 +02:00
double precision, intent(inout) :: sum_norm_pert(N_st),sum_e_2_pert(N_st)
double precision, intent(inout) :: coef_pert_buffer(N_st,buffer_size),e_2_pert_buffer(N_st,buffer_size),sum_H_pert_diag(N_st)
2014-05-28 23:12:00 +02:00
double precision :: c_pert(N_st), e_2_pert(N_st), H_pert_diag(N_st)
2015-11-19 14:38:41 +01:00
integer :: i,k, c_ref, ni, ex
2014-06-02 15:18:45 +02:00
integer, external :: connected_to_ref
2014-06-02 16:42:33 +02:00
logical, external :: is_in_wavefunction
2014-05-18 22:46:38 +02:00
2015-11-27 15:20:15 +01:00
integer(bit_kind), allocatable :: minilist(:,:,:)
integer, allocatable :: idx_minilist(:)
integer :: N_minilist
2015-11-19 14:38:41 +01:00
2015-11-27 15:20:15 +01:00
integer(bit_kind), allocatable :: minilist_gen(:,:,:)
2015-11-19 20:57:44 +01:00
integer :: N_minilist_gen
logical :: fullMatch
2015-11-19 21:20:43 +01:00
logical, external :: is_connected_to
2015-12-16 15:05:57 +01:00
integer(bit_kind), allocatable :: microlist(:,:,:,:)
integer, allocatable :: idx_microlist(:,:), N_microlist(:)
integer :: mobiles(2), smallerlist
2015-11-19 14:38:41 +01:00
2015-11-27 15:20:15 +01:00
allocate( minilist(Nint,2,N_det_selectors), &
minilist_gen(Nint,2,N_det_generators), &
2015-12-16 15:05:57 +01:00
idx_minilist(N_det_selectors))
2015-11-19 14:38:41 +01:00
2015-11-19 20:57:44 +01:00
2014-05-18 22:46:38 +02:00
ASSERT (Nint > 0)
ASSERT (Nint == N_int)
ASSERT (buffer_size >= 0)
ASSERT (minval(sum_norm_pert) >= 0.d0)
ASSERT (N_st > 0)
2015-11-19 14:38:41 +01:00
2015-12-16 16:41:22 +01:00
2015-11-19 20:57:44 +01:00
call create_minilist_find_previous(key_mask, psi_det_generators, miniList_gen, i_generator-1, N_minilist_gen, fullMatch, Nint)
2015-12-16 15:05:57 +01:00
2015-11-19 20:57:44 +01:00
if(fullMatch) then
2015-11-27 15:20:15 +01:00
deallocate( minilist, minilist_gen, idx_minilist )
2015-11-19 20:57:44 +01:00
return
end if
2015-12-16 16:41:22 +01:00
call create_minilist(key_mask, psi_selectors, minilist, idx_miniList, N_det_selectors, N_minilist, Nint) !! deplacer apres fullmatch ??
2015-12-16 15:05:57 +01:00
allocate( microlist(Nint,2,N_minilist, mo_tot_num*2), &
idx_microlist(N_minilist, mo_tot_num*2), &
N_microlist(mo_tot_num*2) )
2015-12-16 16:41:22 +01:00
if(key_mask(1,1) /= 0) then
call create_microlist(minilist, N_minilist, key_mask, microlist, idx_microlist, N_microlist,Nint)
do i=1,mo_tot_num*2
do k=1,N_microlist(i)
idx_microlist(k,i) = idx_minilist(idx_microlist(k,i))
end do
end do
end if
2015-11-19 20:57:44 +01:00
2015-11-24 11:40:49 +01:00
do i=1,buffer_size
2015-11-19 14:38:41 +01:00
2015-11-19 21:20:43 +01:00
if(is_connected_to(buffer(1,1,i), miniList_gen, Nint, N_minilist_gen)) then
2015-11-19 20:57:44 +01:00
cycle
2015-11-19 21:20:43 +01:00
end if
2014-05-18 22:46:38 +02:00
2015-07-29 18:27:07 +02:00
if (is_in_wavefunction(buffer(1,1,i),Nint)) then
2014-09-06 00:51:55 +02:00
cycle
endif
2015-03-19 21:14:52 +01:00
2015-12-16 15:05:57 +01:00
2015-12-16 16:41:22 +01:00
if(key_mask(1,1) /= 0) then
call getMobiles(buffer(1,1,i), key_mask, mobiles, Nint)
if(N_microlist(mobiles(1)) < N_microlist(mobiles(2))) then
smallerlist = mobiles(1)
else
smallerlist = mobiles(2)
end if
call pt2_$PERT(psi_det_generators(1,1,i_generator),buffer(1,1,i), fock_diag_tmp, &
c_pert,e_2_pert,H_pert_diag,Nint,N_microlist(smallerlist),n_st,microlist(:,:,:,smallerList),idx_microlist(:,smallerlist),N_microlist(smallerlist))
else
call pt2_$PERT(psi_det_generators(1,1,i_generator),buffer(1,1,i), fock_diag_tmp, &
c_pert,e_2_pert,H_pert_diag,Nint,N_minilist,n_st,minilist,idx_minilist,N_minilist)
2015-12-16 15:05:57 +01:00
end if
!det_ref,det_pert,fock_diag_tmp,c_pert,e_2_pert,H_pert_diag,Nint,ndet,N_st,minilist,idx_minilist,N_minilist ;
! call pt2_$PERT(psi_det_generators(1,1,i_generator),buffer(1,1,i), fock_diag_tmp, &
! c_pert,e_2_pert,H_pert_diag,Nint,N_minilist,n_st,minilist,idx_minilist,N_minilist)
2015-03-19 21:14:52 +01:00
do k = 1,N_st
2015-11-24 11:40:49 +01:00
e_2_pert_buffer(k,i) = e_2_pert(k)
coef_pert_buffer(k,i) = c_pert(k)
sum_norm_pert(k) = sum_norm_pert(k) + c_pert(k) * c_pert(k)
sum_e_2_pert(k) = sum_e_2_pert(k) + e_2_pert(k)
sum_H_pert_diag(k) = sum_H_pert_diag(k) + H_pert_diag(k)
2015-03-19 21:14:52 +01:00
enddo
2015-11-24 11:40:49 +01:00
enddo
2015-11-27 15:20:15 +01:00
deallocate( minilist, minilist_gen, idx_minilist )
2015-12-16 15:05:57 +01:00
deallocate( microlist, idx_microlist, N_microlist )
2015-03-19 21:14:52 +01:00
end
2015-11-24 17:46:31 +01:00
subroutine perturb_buffer_by_mono_$PERT(i_generator,buffer,buffer_size,e_2_pert_buffer,coef_pert_buffer,sum_e_2_pert,sum_norm_pert,sum_H_pert_diag,N_st,Nint,key_mask,fock_diag_tmp)
2015-03-19 21:14:52 +01:00
implicit none
BEGIN_DOC
! Applly pertubration ``$PERT`` to the buffer of determinants generated in the H_apply
! routine.
END_DOC
integer, intent(in) :: Nint, N_st, buffer_size, i_generator
integer(bit_kind), intent(in) :: buffer(Nint,2,buffer_size)
2015-11-24 17:46:31 +01:00
integer(bit_kind),intent(in) :: key_mask(Nint,2)
double precision, intent(in) :: fock_diag_tmp(2,0:mo_tot_num)
2015-03-19 21:14:52 +01:00
double precision, intent(inout) :: sum_norm_pert(N_st),sum_e_2_pert(N_st)
double precision, intent(inout) :: coef_pert_buffer(N_st,buffer_size),e_2_pert_buffer(N_st,buffer_size),sum_H_pert_diag(N_st)
double precision :: c_pert(N_st), e_2_pert(N_st), H_pert_diag(N_st)
2015-11-24 17:46:31 +01:00
integer :: i,k, c_ref, ni, ex
2015-03-19 21:14:52 +01:00
integer, external :: connected_to_ref_by_mono
logical, external :: is_in_wavefunction
2015-11-27 15:20:15 +01:00
integer(bit_kind), allocatable :: minilist(:,:,:)
integer, allocatable :: idx_minilist(:)
integer :: N_minilist
2015-11-24 17:46:31 +01:00
2015-11-27 15:20:15 +01:00
integer(bit_kind), allocatable :: minilist_gen(:,:,:)
2015-11-24 17:46:31 +01:00
integer :: N_minilist_gen
logical :: fullMatch
logical, external :: is_connected_to
2015-11-27 15:20:15 +01:00
allocate( minilist(Nint,2,N_det_selectors), &
minilist_gen(Nint,2,N_det_generators), &
idx_minilist(N_det_selectors) )
2015-11-24 17:46:31 +01:00
2015-03-19 21:14:52 +01:00
ASSERT (Nint > 0)
ASSERT (Nint == N_int)
ASSERT (buffer_size >= 0)
ASSERT (minval(sum_norm_pert) >= 0.d0)
ASSERT (N_st > 0)
2015-11-24 17:46:31 +01:00
call create_minilist(key_mask, psi_selectors, miniList, idx_miniList, N_det_selectors, N_minilist, Nint)
call create_minilist_find_previous(key_mask, psi_det_generators, miniList_gen, i_generator-1, N_minilist_gen, fullMatch, Nint)
if(fullMatch) then
2015-11-27 15:20:15 +01:00
deallocate( minilist, minilist_gen, idx_minilist )
2015-11-24 17:46:31 +01:00
return
end if
do i=1,buffer_size
c_ref = connected_to_ref_by_mono(buffer(1,1,i),psi_det_generators,Nint,i_generator,N_det)
2014-09-06 00:51:55 +02:00
2015-03-19 21:14:52 +01:00
if (c_ref /= 0) then
cycle
endif
2015-07-29 18:27:07 +02:00
if (is_in_wavefunction(buffer(1,1,i),Nint)) then
2015-03-19 21:14:52 +01:00
cycle
endif
2015-11-24 17:46:31 +01:00
call pt2_$PERT(psi_det_generators(1,1,i_generator),buffer(1,1,i), fock_diag_tmp, &
c_pert,e_2_pert,H_pert_diag,Nint,N_minilist,n_st,minilist,idx_minilist,N_minilist)
2014-05-18 22:46:38 +02:00
do k = 1,N_st
2015-11-24 17:46:31 +01:00
e_2_pert_buffer(k,i) = e_2_pert(k)
coef_pert_buffer(k,i) = c_pert(k)
sum_norm_pert(k) = sum_norm_pert(k) + c_pert(k) * c_pert(k)
sum_e_2_pert(k) = sum_e_2_pert(k) + e_2_pert(k)
sum_H_pert_diag(k) = sum_H_pert_diag(k) + H_pert_diag(k)
2014-05-18 22:46:38 +02:00
enddo
2015-11-24 17:46:31 +01:00
enddo
2015-11-27 15:20:15 +01:00
deallocate( minilist, minilist_gen, idx_minilist )
2014-05-18 22:46:38 +02:00
end