4
1
mirror of https://github.com/pfloos/quack synced 2024-06-22 13:12:19 +02:00
quack/src/GW/QP_graph.f90

86 lines
2.1 KiB
Fortran
Raw Normal View History

2023-06-30 16:47:26 +02:00
subroutine QP_graph(nBas,nC,nO,nV,nR,nS,eta,eHF,SigX,Vxc,Omega,rho,eGWlin,eGW,regularize)
2020-03-12 15:04:16 +01:00
! Compute the graphical solution of the QP equation
implicit none
include 'parameters.h'
! Input variables
integer,intent(in) :: nBas
integer,intent(in) :: nC
integer,intent(in) :: nO
integer,intent(in) :: nV
integer,intent(in) :: nR
integer,intent(in) :: nS
double precision,intent(in) :: eta
double precision,intent(in) :: eHF(nBas)
2021-02-15 22:15:30 +01:00
double precision,intent(in) :: SigX(nBas)
double precision,intent(in) :: Vxc(nBas)
2020-03-12 15:04:16 +01:00
double precision,intent(in) :: Omega(nS)
double precision,intent(in) :: rho(nBas,nBas,nS)
double precision,intent(in) :: eGWlin(nBas)
2023-06-30 16:47:26 +02:00
logical,intent(in) :: regularize
2020-03-12 15:04:16 +01:00
! Local variables
integer :: p
integer :: nIt
integer,parameter :: maxIt = 64
double precision,parameter :: thresh = 1d-6
double precision,external :: SigmaC,dSigmaC
2021-02-15 22:15:30 +01:00
double precision :: sigC,dsigC
2020-03-12 15:04:16 +01:00
double precision :: f,df
double precision :: w
! Output variables
double precision,intent(out) :: eGW(nBas)
! Run Newton's algorithm to find the root
do p=nC+1,nBas-nR
write(*,*) '-----------------'
write(*,'(A10,I3)') 'Orbital ',p
write(*,*) '-----------------'
w = eGWlin(p)
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-06-30 16:47:26 +02:00
sigC = SigmaC(p,w,eta,nBas,nC,nO,nV,nR,nS,eHF,Omega,rho,regularize)
dsigC = dSigmaC(p,w,eta,nBas,nC,nO,nV,nR,nS,eHF,Omega,rho,regularize)
2021-02-15 22:15:30 +01:00
f = w - eHF(p) - SigX(p) - sigC + Vxc(p)
df = 1d0 - dsigC
2020-03-12 15:04:16 +01:00
w = w - f/df
2021-02-15 22:15:30 +01:00
write(*,'(A3,I3,A1,1X,3F15.9)') 'It.',nIt,':',w*HaToeV,f,sigC
2020-03-12 15:04:16 +01:00
end do
if(nIt == maxIt) then
write(*,*) 'Newton root search has not converged!'
else
eGW(p) = w
write(*,'(A32,F16.10)') 'Quasiparticle energy (eV) ',eGW(p)*HaToeV
write(*,*)
end if
end do
end subroutine QP_graph