2023-11-04 15:17:39 +01:00
|
|
|
subroutine GHF_search(maxSCF,thresh,max_diis,guess_type,mix,level_shift,nNuc,ZNuc,rNuc,ENuc, &
|
|
|
|
nBas,nBas2,nC,nO,nV,nR,S,T,V,Hc,ERI_AO,dipole_int_AO,X,EHF,e,c,P)
|
|
|
|
|
|
|
|
! Search for GHF solutions
|
|
|
|
|
|
|
|
implicit none
|
|
|
|
include 'parameters.h'
|
|
|
|
|
|
|
|
integer,intent(in) :: maxSCF
|
|
|
|
integer,intent(in) :: max_diis
|
|
|
|
integer,intent(in) :: guess_type
|
|
|
|
double precision,intent(in) :: thresh
|
|
|
|
double precision,intent(inout):: mix
|
|
|
|
double precision,intent(in) :: level_shift
|
|
|
|
|
|
|
|
integer,intent(in) :: nBas
|
|
|
|
integer,intent(in) :: nBas2
|
|
|
|
integer,intent(in) :: nC
|
|
|
|
integer,intent(in) :: nO
|
|
|
|
integer,intent(in) :: nV
|
|
|
|
integer,intent(in) :: nR
|
|
|
|
integer,intent(in) :: nNuc
|
|
|
|
double precision,intent(in) :: ZNuc(nNuc)
|
|
|
|
double precision,intent(in) :: rNuc(nNuc,ncart)
|
|
|
|
double precision,intent(in) :: ENuc
|
|
|
|
double precision,intent(in) :: S(nBas,nBas)
|
|
|
|
double precision,intent(in) :: T(nBas,nBas)
|
|
|
|
double precision,intent(in) :: V(nBas,nBas)
|
|
|
|
double precision,intent(in) :: Hc(nBas,nBas)
|
|
|
|
double precision,intent(in) :: X(nBas,nBas)
|
|
|
|
double precision,intent(in) :: ERI_AO(nBas,nBas,nBas,nBas)
|
|
|
|
double precision,intent(in) :: dipole_int_AO(nBas,nBas,ncart)
|
|
|
|
|
|
|
|
! Local variables
|
|
|
|
|
|
|
|
double precision :: start_HF ,end_HF ,t_HF
|
|
|
|
double precision :: start_stab ,end_stab ,t_stab
|
|
|
|
double precision :: start_AOtoMO ,end_AOtoMO ,t_AOtoMO
|
|
|
|
|
|
|
|
logical :: unstab
|
|
|
|
integer :: guess
|
|
|
|
double precision,allocatable :: ERI_MO(:,:,:,:)
|
|
|
|
double precision,allocatable :: ERI_tmp(:,:,:,:)
|
|
|
|
double precision,allocatable :: Ca(:,:),Cb(:,:)
|
|
|
|
integer :: nS
|
|
|
|
|
|
|
|
integer,parameter :: maxS = 20
|
|
|
|
integer :: ia,i,a,mu
|
|
|
|
integer :: ispin
|
|
|
|
|
|
|
|
double precision,allocatable :: Aph(:,:)
|
|
|
|
double precision,allocatable :: Bph(:,:)
|
|
|
|
double precision,allocatable :: AB(:,:)
|
|
|
|
double precision,allocatable :: Om(:)
|
2023-11-07 16:11:01 +01:00
|
|
|
double precision,allocatable :: R(:,:)
|
|
|
|
double precision,allocatable :: ExpR(:,:)
|
|
|
|
|
2023-11-04 15:17:39 +01:00
|
|
|
|
|
|
|
integer :: eig
|
|
|
|
double precision :: kick,step
|
|
|
|
|
|
|
|
! Output variables
|
|
|
|
|
|
|
|
double precision,intent(out) :: EHF
|
2023-11-07 16:11:01 +01:00
|
|
|
double precision,intent(out) :: e(nBas2)
|
|
|
|
double precision,intent(inout):: c(nBas2,nBas2)
|
|
|
|
double precision,intent(out) :: P(nBas2,nBas2)
|
2023-11-04 15:17:39 +01:00
|
|
|
|
|
|
|
! Memory allocation
|
|
|
|
|
|
|
|
write(*,*)
|
|
|
|
write(*,*) '****************************'
|
|
|
|
write(*,*) '* Search for GHF solutions *'
|
|
|
|
write(*,*) '****************************'
|
|
|
|
write(*,*)
|
|
|
|
|
|
|
|
!-------------------!
|
|
|
|
! Memory allocation !
|
|
|
|
!-------------------!
|
|
|
|
|
|
|
|
nS = (nO - nC)*(nV - nR)
|
|
|
|
|
2023-11-07 16:11:01 +01:00
|
|
|
allocate(ERI_MO(nBas2,nBas2,nBas2,nBas2),Aph(nS,nS),Bph(nS,nS),AB(nS,nS),Om(nS), &
|
|
|
|
R(nBas2,nBas2),ExpR(nBas2,nBas2))
|
2023-11-04 15:17:39 +01:00
|
|
|
|
|
|
|
!------------------!
|
|
|
|
! Search algorithm !
|
|
|
|
!------------------!
|
|
|
|
|
|
|
|
unstab = .true.
|
|
|
|
guess = 0
|
2023-11-04 15:43:01 +01:00
|
|
|
mix = 0d0
|
2023-11-04 15:17:39 +01:00
|
|
|
|
|
|
|
do while(unstab)
|
|
|
|
|
|
|
|
!---------------------!
|
|
|
|
! Hartree-Fock module !
|
|
|
|
!---------------------!
|
|
|
|
|
|
|
|
call wall_time(start_HF)
|
|
|
|
call GHF(maxSCF,thresh,max_diis,guess,mix,level_shift,nNuc,ZNuc,rNuc,ENuc, &
|
|
|
|
nBas,nBas2,nO,S,T,V,Hc,ERI_AO,dipole_int_AO,X,EHF,e,c,P)
|
|
|
|
call wall_time(end_HF)
|
|
|
|
|
|
|
|
t_HF = end_HF - start_HF
|
|
|
|
write(*,'(A65,1X,F9.3,A8)') 'Total CPU time for GHF = ',t_HF,' seconds'
|
|
|
|
write(*,*)
|
|
|
|
|
|
|
|
!----------------------------------!
|
|
|
|
! AO to MO integral transformation !
|
|
|
|
!----------------------------------!
|
|
|
|
|
|
|
|
call wall_time(start_AOtoMO)
|
|
|
|
write(*,*)
|
|
|
|
write(*,*) 'AO to MO transformation... Please be patient'
|
|
|
|
write(*,*)
|
|
|
|
|
|
|
|
allocate(Ca(nBas,nBas2),Cb(nBas,nBas2),ERI_tmp(nBas2,nBas2,nBas2,nBas2))
|
|
|
|
|
|
|
|
Ca(:,:) = c(1:nBas,1:nBas2)
|
|
|
|
Cb(:,:) = c(nBas+1:nBas2,1:nBas2)
|
|
|
|
|
|
|
|
! 4-index transform
|
|
|
|
|
|
|
|
call AOtoMO_integral_transform_GHF(nBas,nBas2,Ca,Ca,Ca,Ca,ERI_AO,ERI_tmp)
|
|
|
|
ERI_MO(:,:,:,:) = ERI_tmp(:,:,:,:)
|
|
|
|
|
|
|
|
call AOtoMO_integral_transform_GHF(nBas,nBas2,Ca,Cb,Ca,Cb,ERI_AO,ERI_tmp)
|
|
|
|
ERI_MO(:,:,:,:) = ERI_MO(:,:,:,:) + ERI_tmp(:,:,:,:)
|
|
|
|
|
|
|
|
call AOtoMO_integral_transform_GHF(nBas,nBas2,Cb,Ca,Cb,Ca,ERI_AO,ERI_tmp)
|
|
|
|
ERI_MO(:,:,:,:) = ERI_MO(:,:,:,:) + ERI_tmp(:,:,:,:)
|
|
|
|
|
|
|
|
call AOtoMO_integral_transform_GHF(nBas,nBas2,Cb,Cb,Cb,Cb,ERI_AO,ERI_tmp)
|
|
|
|
ERI_MO(:,:,:,:) = ERI_MO(:,:,:,:) + ERI_tmp(:,:,:,:)
|
2023-11-04 15:43:01 +01:00
|
|
|
|
2023-11-04 15:17:39 +01:00
|
|
|
deallocate(Ca,Cb,ERI_tmp)
|
2023-11-04 15:43:01 +01:00
|
|
|
call wall_time(end_AOtoMO)
|
2023-11-04 15:17:39 +01:00
|
|
|
|
|
|
|
t_AOtoMO = end_AOtoMO - start_AOtoMO
|
|
|
|
write(*,'(A65,1X,F9.3,A8)') 'Total CPU time for AO to MO transformation = ',t_AOtoMO,' seconds'
|
|
|
|
write(*,*)
|
|
|
|
|
|
|
|
!-------------------------------------------------------------!
|
|
|
|
! Stability analysis: Real GHF -> Real GHF
|
|
|
|
!-------------------------------------------------------------!
|
|
|
|
|
|
|
|
ispin = 3
|
|
|
|
|
2023-11-04 15:43:01 +01:00
|
|
|
call phLR_A(ispin,.false.,nBas2,nC,nO,nV,nR,nS,1d0,e,ERI_MO,Aph)
|
|
|
|
call phLR_B(ispin,.false.,nBas2,nC,nO,nV,nR,nS,1d0,ERI_MO,Bph)
|
2023-11-07 16:11:01 +01:00
|
|
|
|
|
|
|
AB(:,:) = Aph(:,:) + Bph(:,:)
|
2023-11-04 15:17:39 +01:00
|
|
|
|
|
|
|
call diagonalize_matrix(nS,AB,Om)
|
2023-11-07 16:11:01 +01:00
|
|
|
Om(:) = 2d0*Om(:)
|
2023-11-04 15:17:39 +01:00
|
|
|
|
|
|
|
write(*,*)'-------------------------------------------------------------'
|
|
|
|
write(*,*)'| Stability analysis: Real GHF -> Real GHF |'
|
|
|
|
write(*,*)'-------------------------------------------------------------'
|
|
|
|
write(*,'(1X,A1,1X,A5,1X,A1,1X,A23,1X,A1,1X,A23,1X,A1,1X)') &
|
|
|
|
'|','State','|',' Excitation energy (au) ','|',' Excitation energy (eV) ','|'
|
|
|
|
write(*,*)'-------------------------------------------------------------'
|
|
|
|
do ia=1,min(nS,maxS)
|
|
|
|
write(*,'(1X,A1,1X,I5,1X,A1,1X,F23.6,1X,A1,1X,F23.6,1X,A1,1X)') &
|
|
|
|
'|',ia,'|',Om(ia),'|',Om(ia)*HaToeV,'|'
|
|
|
|
enddo
|
|
|
|
write(*,*)'-------------------------------------------------------------'
|
|
|
|
|
|
|
|
if(minval(Om(:)) < 0d0) then
|
|
|
|
|
2023-11-04 15:43:01 +01:00
|
|
|
write(*,'(1X,A40,1X)') 'Too bad, GHF solution is unstable!'
|
2023-11-04 15:17:39 +01:00
|
|
|
write(*,'(1X,A40,1X,F15.10,A3)') 'Largest negative eigenvalue:',Om(1),' au'
|
2023-11-06 11:57:09 +01:00
|
|
|
write(*,'(1X,A40,1X,F15.10,A3)') 'E(GHF) = ',ENuc + EHF,' au'
|
2023-11-04 15:17:39 +01:00
|
|
|
write(*,*)
|
2023-11-04 15:43:01 +01:00
|
|
|
write(*,'(1X,A40,1X,A10)') 'Which one would you like to follow?','[Exit:0]'
|
2023-11-04 15:17:39 +01:00
|
|
|
read(*,*) eig
|
|
|
|
|
|
|
|
if(eig < 0 .or. eig > nS) then
|
2023-11-04 15:43:01 +01:00
|
|
|
write(*,'(1X,A40,1X,A10)') 'Invalid option...','Stop...'
|
2023-11-04 15:17:39 +01:00
|
|
|
write(*,*)
|
|
|
|
stop
|
|
|
|
end if
|
|
|
|
|
|
|
|
if(eig == 0) return
|
|
|
|
|
|
|
|
step = 1d0
|
|
|
|
|
2023-11-07 16:11:01 +01:00
|
|
|
! do mu=1,nBas2
|
|
|
|
! ia = 0
|
|
|
|
! do i=nC+1,nO
|
|
|
|
! kick = 0d0
|
|
|
|
! do a=nO+1,nBas2-nR
|
|
|
|
! ia = ia + 1
|
|
|
|
! kick = kick + AB(ia,eig)*c(mu,a)
|
|
|
|
! end do
|
|
|
|
! c(mu,i) = c(mu,i) + step*kick
|
|
|
|
! end do
|
|
|
|
! end do
|
|
|
|
|
|
|
|
R(:,:) = 0d0
|
|
|
|
ia = 0
|
|
|
|
do i=nC+1,nO
|
|
|
|
do a=nO+1,nBas2-nR
|
|
|
|
ia = ia + 1
|
|
|
|
R(a,i) = +AB(ia,eig)
|
|
|
|
R(i,a) = -AB(ia,eig)
|
2023-11-04 15:17:39 +01:00
|
|
|
end do
|
|
|
|
end do
|
|
|
|
|
2023-11-07 16:11:01 +01:00
|
|
|
call matrix_exponential(nBas2,R,ExpR)
|
|
|
|
c = matmul(c,ExpR)
|
|
|
|
|
2023-11-04 15:17:39 +01:00
|
|
|
else
|
|
|
|
|
2023-11-04 15:43:01 +01:00
|
|
|
write(*,'(1X,A40,1X)') 'Well done, GHF solution is stable!'
|
2023-11-04 15:17:39 +01:00
|
|
|
write(*,'(1X,A40,1X,F15.10,A3)') 'Smallest eigenvalue: ',Om(1),' au'
|
2023-11-06 11:57:09 +01:00
|
|
|
write(*,'(1X,A40,1X,F15.10,A3)') 'E(GHF) = ',ENuc + EHF,' au'
|
2023-11-04 15:17:39 +01:00
|
|
|
|
|
|
|
unstab = .false.
|
|
|
|
|
|
|
|
end if
|
|
|
|
write(*,*)'-------------------------------------------------------------'
|
|
|
|
write(*,*)
|
|
|
|
|
|
|
|
!---------------!
|
|
|
|
! End of Search !
|
|
|
|
!---------------!
|
|
|
|
end do
|
|
|
|
|
|
|
|
end subroutine
|