2020-04-09 14:31:50 +02:00
|
|
|
subroutine self_energy_Tmatrix_diag(alpha,eta,nBas,nC,nO,nV,nR,nOO,nVV,e,Omega1,rho1,Omega2,rho2,SigT)
|
2019-10-06 22:35:36 +02:00
|
|
|
|
|
|
|
! Compute diagonal of the correlation part of the T-matrix self-energy
|
|
|
|
|
|
|
|
implicit none
|
|
|
|
include 'parameters.h'
|
|
|
|
|
|
|
|
! Input variables
|
|
|
|
|
2020-04-09 14:31:50 +02:00
|
|
|
double precision,intent(in) :: alpha
|
2019-10-06 22:35:36 +02:00
|
|
|
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
|
2020-04-09 14:31:50 +02:00
|
|
|
integer,intent(in) :: nOO
|
|
|
|
integer,intent(in) :: nVV
|
2019-10-06 22:35:36 +02:00
|
|
|
double precision,intent(in) :: e(nBas)
|
2020-04-09 14:31:50 +02:00
|
|
|
double precision,intent(in) :: Omega1(nVV)
|
|
|
|
double precision,intent(in) :: rho1(nBas,nO,nVV)
|
|
|
|
double precision,intent(in) :: Omega2(nOO)
|
|
|
|
double precision,intent(in) :: rho2(nBas,nV,nOO)
|
2019-10-06 22:35:36 +02:00
|
|
|
|
|
|
|
! Local variables
|
|
|
|
|
|
|
|
integer :: i,j,k,l,a,b,c,d,p,cd,kl
|
|
|
|
double precision :: eps
|
|
|
|
|
|
|
|
! Output variables
|
|
|
|
|
|
|
|
double precision,intent(out) :: SigT(nBas)
|
|
|
|
|
2019-10-20 08:18:58 +02:00
|
|
|
!----------------------------------------------
|
|
|
|
! Singlet part of the T-matrix self-energy
|
|
|
|
!----------------------------------------------
|
|
|
|
|
|
|
|
! Occupied part of the T-matrix self-energy
|
2019-10-06 22:35:36 +02:00
|
|
|
|
|
|
|
do p=nC+1,nBas-nR
|
|
|
|
do i=nC+1,nO
|
2020-04-09 14:31:50 +02:00
|
|
|
do cd=1,nVV
|
|
|
|
eps = e(p) + e(i) - Omega1(cd)
|
|
|
|
SigT(p) = SigT(p) + alpha*rho1(p,i,cd)**2/eps
|
2019-10-06 22:35:36 +02:00
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
|
|
|
|
! Virtual part of the T-matrix self-energy
|
|
|
|
|
|
|
|
do p=nC+1,nBas-nR
|
2020-03-14 23:00:44 +01:00
|
|
|
do a=1,nV-nR
|
2020-04-09 14:31:50 +02:00
|
|
|
do kl=1,nOO
|
|
|
|
eps = e(p) + e(nO+a) - Omega2(kl)
|
|
|
|
SigT(p) = SigT(p) + alpha*rho2(p,a,kl)**2/eps
|
2019-10-06 22:35:36 +02:00
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
|
|
|
|
end subroutine self_energy_Tmatrix_diag
|