4
1
mirror of https://github.com/pfloos/quack synced 2024-06-02 11:25:28 +02:00
quack/src/GW/GW_ppBSE_static_kernel_B.f90

134 lines
2.8 KiB
Fortran
Raw Normal View History

2023-07-24 15:01:54 +02:00
subroutine GW_ppBSE_static_kernel_B(ispin,eta,nBas,nC,nO,nV,nR,nS,nOO,nVV,lambda,ERI,Om,rho,KB)
2022-08-17 14:32:14 +02:00
! Compute the VVOO block of the static screening W for the pp-BSE
implicit none
include 'parameters.h'
! Input variables
integer,intent(in) :: ispin
integer,intent(in) :: nBas
integer,intent(in) :: nC
integer,intent(in) :: nO
integer,intent(in) :: nV
integer,intent(in) :: nR
integer,intent(in) :: nS
integer,intent(in) :: nOO
integer,intent(in) :: nVV
double precision,intent(in) :: eta
double precision,intent(in) :: lambda
double precision,intent(in) :: ERI(nBas,nBas,nBas,nBas)
2023-07-21 13:04:29 +02:00
double precision,intent(in) :: Om(nS)
2022-08-17 14:32:14 +02:00
double precision,intent(in) :: rho(nBas,nBas,nS)
! Local variables
2022-08-17 16:53:59 +02:00
double precision,external :: Kronecker_delta
2022-08-17 14:32:14 +02:00
double precision :: chi
double precision :: eps
integer :: a,b,i,j,ab,ij,m
! Output variables
2023-07-24 15:01:54 +02:00
double precision,intent(out) :: KB(nVV,nOO)
2022-08-17 14:32:14 +02:00
! Initialization
2023-07-24 15:01:54 +02:00
KB(:,:) = 0d0
2022-08-17 14:32:14 +02:00
!---------------!
! Singlet block !
!---------------!
if(ispin == 1) then
ab = 0
do a=nO+1,nBas-nR
do b=a,nBas-nR
ab = ab + 1
ij = 0
do i=nC+1,nO
do j=i,nO
ij = ij + 1
chi = 0d0
do m=1,nS
2023-07-21 13:04:29 +02:00
eps = Om(m)**2 + eta**2
2023-07-24 15:01:54 +02:00
chi = chi - rho(i,a,m)*rho(j,b,m)*Om(m)/eps &
+ rho(i,b,m)*rho(a,j,m)*Om(m)/eps
2023-12-03 18:47:30 +01:00
end do
2022-08-17 14:32:14 +02:00
2023-07-24 15:01:54 +02:00
KB(ab,ij) = 2d0*lambda*chi/sqrt((1d0 + Kronecker_delta(a,b))*(1d0 + Kronecker_delta(i,j)))
2022-08-17 14:32:14 +02:00
end do
end do
end do
end do
end if
!---------------!
! Triplet block !
!---------------!
if(ispin == 2) then
ab = 0
do a=nO+1,nBas-nR
do b=a+1,nBas-nR
ab = ab + 1
ij = 0
do i=nC+1,nO
do j=i+1,nO
ij = ij + 1
chi = 0d0
do m=1,nS
2023-07-21 13:04:29 +02:00
eps = Om(m)**2 + eta**2
2023-07-24 15:01:54 +02:00
chi = chi - rho(i,a,m)*rho(j,b,m)*Om(m)/eps &
+ rho(i,b,m)*rho(a,j,m)*Om(m)/eps
2023-12-03 18:47:30 +01:00
end do
2022-08-17 14:32:14 +02:00
2023-07-24 15:01:54 +02:00
KB(ab,ij) = 2d0*lambda*chi
2022-09-09 21:48:50 +02:00
end do
end do
end do
end do
end if
!---------------!
! SpinOrb block !
!---------------!
if(ispin == 4) then
ab = 0
do a=nO+1,nBas-nR
do b=a+1,nBas-nR
ab = ab + 1
ij = 0
do i=nC+1,nO
do j=i+1,nO
ij = ij + 1
chi = 0d0
do m=1,nS
2023-07-21 13:04:29 +02:00
eps = Om(m)**2 + eta**2
2023-07-24 15:01:54 +02:00
chi = chi - rho(i,a,m)*rho(j,b,m)*Om(m)/eps &
+ rho(i,b,m)*rho(a,j,m)*Om(m)/eps
2023-12-03 18:47:30 +01:00
end do
2022-09-09 21:48:50 +02:00
2023-07-24 15:01:54 +02:00
KB(ab,ij) = lambda*chi
2022-08-17 14:32:14 +02:00
end do
end do
end do
end do
end if
2023-07-20 15:54:24 +02:00
end subroutine