2023-07-27 21:23:40 +02:00
|
|
|
subroutine GF2_QP_graph(eta,nBas,nC,nO,nV,nR,nS,eHF,ERI,eGF,Z)
|
2023-06-30 19:17:35 +02:00
|
|
|
|
|
|
|
! Compute the graphical solution of the GF2 QP equation
|
|
|
|
|
|
|
|
implicit none
|
|
|
|
include 'parameters.h'
|
|
|
|
|
|
|
|
! Input variables
|
|
|
|
|
|
|
|
double precision,intent(in) :: eta
|
|
|
|
integer,intent(in) :: nBas,nC,nO,nV,nR,nS
|
|
|
|
double precision,intent(in) :: eHF(nBas)
|
|
|
|
double precision,intent(in) :: ERI(nBas,nBas,nBas,nBas)
|
|
|
|
|
|
|
|
! Local variables
|
|
|
|
|
|
|
|
integer :: p
|
|
|
|
integer :: nIt
|
|
|
|
integer,parameter :: maxIt = 64
|
|
|
|
double precision,parameter :: thresh = 1d-6
|
2023-07-27 17:43:18 +02:00
|
|
|
double precision,external :: GF2_SigC,GF2_dSigC
|
2023-08-24 11:18:12 +02:00
|
|
|
double precision :: SigC,dSigC
|
2023-06-30 19:17:35 +02:00
|
|
|
double precision :: f,df
|
|
|
|
double precision :: w
|
|
|
|
|
|
|
|
! Output variables
|
|
|
|
|
2023-07-27 17:43:18 +02:00
|
|
|
double precision,intent(out) :: eGF(nBas)
|
2023-07-27 21:23:40 +02:00
|
|
|
double precision,intent(out) :: Z(nBas)
|
2023-06-30 19:17:35 +02:00
|
|
|
|
|
|
|
! Run Newton's algorithm to find the root
|
|
|
|
|
|
|
|
do p=nC+1,nBas-nR
|
|
|
|
|
|
|
|
write(*,*) '-----------------'
|
|
|
|
write(*,'(A10,I3)') 'Orbital ',p
|
|
|
|
write(*,*) '-----------------'
|
|
|
|
|
2023-07-27 17:43:18 +02:00
|
|
|
w = eHF(p)
|
2023-06-30 19:17:35 +02:00
|
|
|
nIt = 0
|
|
|
|
f = 1d0
|
|
|
|
write(*,'(A3,I3,A1,1X,3F15.9)') 'It.',nIt,':',w*HaToeV,f
|
|
|
|
|
|
|
|
do while (abs(f) > thresh .and. nIt < maxIt)
|
|
|
|
|
|
|
|
nIt = nIt + 1
|
|
|
|
|
2023-08-24 11:18:12 +02:00
|
|
|
SigC = GF2_SigC(p,w,eta,nBas,nC,nO,nV,nR,nS,eHF,ERI)
|
|
|
|
dSigC = GF2_dSigC(p,w,eta,nBas,nC,nO,nV,nR,nS,eHF,ERI)
|
|
|
|
f = w - eHF(p) - SigC
|
|
|
|
df = 1d0/(1d0 - dSigC)
|
2023-06-30 19:17:35 +02:00
|
|
|
|
2023-07-27 21:23:40 +02:00
|
|
|
w = w - df*f
|
2023-06-30 19:17:35 +02:00
|
|
|
|
2023-07-27 21:23:40 +02:00
|
|
|
write(*,'(A3,I3,A1,1X,3F15.9)') 'It.',nIt,':',w*HaToeV,df,f
|
2023-06-30 19:17:35 +02:00
|
|
|
|
|
|
|
end do
|
|
|
|
|
|
|
|
if(nIt == maxIt) then
|
|
|
|
|
|
|
|
write(*,*) 'Newton root search has not converged!'
|
2023-07-27 21:23:40 +02:00
|
|
|
eGF(p) = eHF(p)
|
2023-06-30 19:17:35 +02:00
|
|
|
|
|
|
|
else
|
|
|
|
|
2023-07-27 17:43:18 +02:00
|
|
|
eGF(p) = w
|
2023-07-27 21:23:40 +02:00
|
|
|
Z(p) = df
|
2023-06-30 19:17:35 +02:00
|
|
|
|
2023-07-27 17:43:18 +02:00
|
|
|
write(*,'(A32,F16.10)') 'Quasiparticle energy (eV) ',eGF(p)*HaToeV
|
2023-06-30 19:17:35 +02:00
|
|
|
write(*,*)
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
end do
|
|
|
|
|
2023-07-18 14:59:18 +02:00
|
|
|
end subroutine
|