4
1
mirror of https://github.com/pfloos/quack synced 2024-06-01 02:45:32 +02:00
quack/src/GW/dSigmaC.f90

79 lines
2.2 KiB
Fortran
Raw Normal View History

2023-06-30 16:47:26 +02:00
double precision function dSigmaC(x,w,eta,nBas,nC,nO,nV,nR,nS,e,Omega,rho,regularize)
2020-02-12 12:25:24 +01:00
! Compute the derivative of the correlation part of the self-energy
implicit none
include 'parameters.h'
! Input variables
integer,intent(in) :: x
double precision,intent(in) :: w
double precision,intent(in) :: eta
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) :: e(nBas)
double precision,intent(in) :: Omega(nS)
double precision,intent(in) :: rho(nBas,nBas,nS)
2023-06-30 16:47:26 +02:00
logical,intent(in) :: regularize
2020-02-12 12:25:24 +01:00
! Local variables
integer :: i,j,a,b,p,jb
double precision :: eps
2023-06-30 16:47:26 +02:00
double precision :: Dpijb,Dpajb
2020-02-12 12:25:24 +01:00
! Initialize
dSigmaC = 0d0
2023-06-30 16:47:26 +02:00
if (regularize) then
! Occupied part of the correlation self-energy
do i=nC+1,nO
do jb=1,nS
eps = w - e(i) + Omega(jb)
Dpijb = e(p) - e(i) + Omega(jb)
dSigmaC = dSigmaC - 2d0*rho(p,i,jb)**2*(1d0-exp(-2*eta*Dpijb*Dpijb))/(eps**2)
enddo
enddo
! Virtual part of the correlation self-energy
do a=nO+1,nBas-nR
do jb=1,nS
eps = w - e(a) - Omega(jb)
Dpajb = e(p) - e(a) - Omega(jb)
dSigmaC = dSigmaC - 2d0*rho(p,a,jb)**2*(1d0-exp(-2*eta*Dpajb*Dpajb))/(eps**2)
enddo
enddo
2020-02-12 12:25:24 +01:00
2023-06-30 16:47:26 +02:00
else
! Occupied part of the correlation self-energy
do i=nC+1,nO
jb = 0
do j=nC+1,nO
do b=nO+1,nBas-nR
jb = jb + 1
eps = w - e(i) + Omega(jb)
dSigmaC = dSigmaC - 2d0*rho(x,i,jb)**2*(eps**2 - eta**2)/(eps**2 + eta**2)**2
enddo
enddo
enddo
2020-02-12 12:25:24 +01:00
! Virtual part of the correlation self-energy
2023-06-30 16:47:26 +02:00
do a=nO+1,nBas-nR
jb = 0
do j=nC+1,nO
do b=nO+1,nBas-nR
jb = jb + 1
eps = w - e(a) - Omega(jb)
dSigmaC = dSigmaC - 2d0*rho(x,a,jb)**2*(eps**2 - eta**2)/(eps**2 + eta**2)**2
enddo
enddo
enddo
end if
2020-02-12 12:25:24 +01:00
end function dSigmaC