4
1
mirror of https://github.com/pfloos/quack synced 2024-12-23 04:43:53 +01:00
quack/src/GT/GGTpp_ppBSE_static_kernel_C.f90
Antoine Marie 6c37311e38 ppBSE GT
2024-10-30 09:36:36 +01:00

75 lines
2.1 KiB
Fortran

subroutine GGTpp_ppBSE_static_kernel_C(eta,nOrb,nC,nO,nV,nR,nOO,nVV,lambda,ERI,eGF,Om1,rho1,Om2,rho2,T,KC_sta)
! Compute the VVVV block of the T-matrix static pp kernels
implicit none
include 'parameters.h'
! Input variables
double precision,intent(in) :: eta
integer,intent(in) :: nOrb
integer,intent(in) :: nC
integer,intent(in) :: nO
integer,intent(in) :: nV
integer,intent(in) :: nR
integer,intent(in) :: nOO
integer,intent(in) :: nVV
double precision,intent(in) :: lambda
double precision,intent(in) :: ERI(nOrb,nOrb,nOrb,nOrb)
double precision,intent(in) :: eGF(nOrb)
double precision,intent(in) :: Om1(nVV)
double precision,intent(in) :: rho1(nOrb,nOrb,nVV)
double precision,intent(in) :: Om2(nOO)
double precision,intent(in) :: rho2(nOrb,nOrb,nOO)
double precision,intent(in) :: T(nOrb,nOrb,nOrb,nOrb)
! Local variables
double precision :: dem,num
integer :: p,q,r,s,e,m
integer :: a,b,c,d,k,l
integer :: ab,kl,cd
! Output variables
double precision,intent(out) :: KC_sta(nVV,nVV)
! Initialization
KC_sta(:,:) = 0d0
! Computing the kernel
! This is the same code as for the GF(2) kernel with elements T instead of ERI
ab = 0
do a=nO+1,nOrb-nR
do b=a+1,nOrb-nR
ab = ab + 1
cd = 0
do c=nO+1,nOrb-nR
do d=c+1,nOrb-nR
cd = cd + 1
do m=nC+1,nO
do e=nO+1,nOrb-nR
dem = eGF(m) - eGF(e)
num = (T(a,m,c,e) - T(a,m,e,c)) * (T(e,b,m,d) - T(e,b,d,m))
num = num + (T(a,e,c,m) - T(a,e,m,c)) * (T(m,b,e,d) - T(m,b,d,e))
num = num - (T(b,m,c,e) - T(b,m,e,c)) * (T(e,a,m,d) - T(e,a,d,m))
num = num - (T(b,e,c,m) - T(b,e,m,c)) * (T(m,a,e,d) - T(m,a,d,e))
KC_sta(ab,cd) = KC_sta(ab,cd) + num*dem/(dem**2 + eta**2)
end do
end do
end do
end do
end do
end do
end subroutine