mirror of
https://github.com/pfloos/quack
synced 2025-05-06 15:14:55 +02:00
248 lines
8.9 KiB
Fortran
248 lines
8.9 KiB
Fortran
subroutine complex_cRG0W0(dotest,doACFDT,exchange_kernel,doXBS,dophBSE,dophBSE2,TDA_W,TDA,dBSE,dTDA,doppBSE,singlet,triplet, &
|
|
linearize,eta,doSRG,nBas,nOrb,nC,nO,nV,nR,nS,ENuc,ERHF,ERI,CAP,dipole_int,eHF)
|
|
|
|
! Perform a fully complex G0W0 calculation with CAP
|
|
|
|
implicit none
|
|
include 'parameters.h'
|
|
include 'quadrature.h'
|
|
|
|
! Input variables
|
|
|
|
logical,intent(in) :: dotest
|
|
|
|
logical,intent(in) :: doACFDT
|
|
logical,intent(in) :: exchange_kernel
|
|
logical,intent(in) :: doXBS
|
|
logical,intent(in) :: dophBSE
|
|
logical,intent(in) :: dophBSE2
|
|
logical,intent(in) :: doppBSE
|
|
logical,intent(in) :: TDA_W
|
|
logical,intent(in) :: TDA
|
|
logical,intent(in) :: dBSE
|
|
logical,intent(in) :: dTDA
|
|
logical,intent(in) :: singlet
|
|
logical,intent(in) :: triplet
|
|
logical,intent(in) :: linearize
|
|
double precision,intent(in) :: eta
|
|
logical,intent(in) :: doSRG
|
|
|
|
integer,intent(in) :: nBas
|
|
integer,intent(in) :: nOrb
|
|
integer,intent(in) :: nC
|
|
integer,intent(in) :: nO
|
|
integer,intent(in) :: nV
|
|
integer,intent(in) :: nR
|
|
integer,intent(in) :: nS
|
|
double precision,intent(in) :: ENuc
|
|
complex*16,intent(in) :: ERHF
|
|
complex*16,intent(in) :: ERI(nOrb,nOrb,nOrb,nOrb)
|
|
complex*16,intent(in) :: CAP(nOrb,nOrb)
|
|
complex*16,intent(in) :: dipole_int(nOrb,nOrb,ncart)
|
|
complex*16,intent(in) :: eHF(nOrb)
|
|
|
|
! Local variables
|
|
|
|
logical :: print_W = .false.
|
|
logical :: plot_self = .false.
|
|
logical :: dRPA_W
|
|
integer :: isp_W
|
|
integer :: p
|
|
double precision :: flow
|
|
complex*16 :: EcRPA
|
|
complex*16 :: EcBSE(nspin)
|
|
complex*16 :: EcGM
|
|
complex*16,allocatable :: Aph(:,:)
|
|
complex*16,allocatable :: Bph(:,:)
|
|
double precision,allocatable :: Re_SigC(:)
|
|
double precision,allocatable :: Im_SigC(:)
|
|
double precision,allocatable :: Re_Z(:)
|
|
double precision,allocatable :: Im_Z(:)
|
|
complex*16,allocatable :: Om(:)
|
|
double precision,allocatable :: Re_Om(:)
|
|
double precision,allocatable :: Im_Om(:)
|
|
complex*16,allocatable :: XpY(:,:)
|
|
complex*16,allocatable :: XmY(:,:)
|
|
complex*16,allocatable :: rho(:,:,:)
|
|
|
|
|
|
double precision,allocatable :: Re_eGWlin(:)
|
|
double precision, allocatable :: Im_eGWlin(:)
|
|
double precision,allocatable :: Re_eGW(:)
|
|
double precision,allocatable :: Im_eGW(:)
|
|
double precision, allocatable :: Re_eHF(:)
|
|
double precision, allocatable :: Im_eHF(:)
|
|
|
|
! Hello world
|
|
|
|
write(*,*)
|
|
write(*,*)'***************************************'
|
|
write(*,*)'* Restricted complex G0W0 Calculation *'
|
|
write(*,*)'***************************************'
|
|
write(*,*)
|
|
|
|
! Spin manifold and TDA for dynamical screening
|
|
|
|
isp_W = 1
|
|
dRPA_W = .true.
|
|
|
|
if(TDA_W) then
|
|
write(*,*) 'Tamm-Dancoff approximation for dynamical screening!'
|
|
write(*,*)
|
|
end if
|
|
|
|
! SRG regularization
|
|
|
|
flow = 500d0
|
|
|
|
if(doSRG) then
|
|
! Not implemented
|
|
write(*,*) '*** SRG regularized G0W0 scheme ***'
|
|
write(*,*) '!!! No SRG with cRG0W0 !!!'
|
|
write(*,*)
|
|
|
|
end if
|
|
|
|
! Memory allocation
|
|
|
|
allocate(Aph(nS,nS),Bph(nS,nS),Re_SigC(nOrb),Im_SigC(nOrb),Re_Z(nOrb),Im_Z(nOrb),Om(nS),XpY(nS,nS),XmY(nS,nS),rho(nOrb,nOrb,nS), &
|
|
Re_eGW(nOrb),Im_eGW(nOrb),Re_eGWlin(nOrb),Im_eGWlin(nOrb),Re_eHF(nOrb),Im_eHF(nOrb),Re_Om(nS),Im_Om(nS))
|
|
Re_eHF(:) = real(eHF(:))
|
|
Im_eHF(:) = aimag(eHF(:))
|
|
!-------------------!
|
|
! Compute screening !
|
|
!-------------------!
|
|
|
|
call complex_phRLR_A(isp_W,dRPA_W,nOrb,nC,nO,nV,nR,nS,1d0,eHF,ERI,Aph)
|
|
if(.not.TDA_W) call complex_phRLR_B(isp_W,dRPA_W,nOrb,nC,nO,nV,nR,nS,1d0,ERI,Bph)
|
|
|
|
call complex_phRLR(TDA_W,nS,Aph,Bph,EcRPA,Om,XpY,XmY)
|
|
Re_Om(:) = real(Om(:))
|
|
Im_Om(:) = aimag(Om(:))
|
|
|
|
!if(print_W) call print_excitation_energies('phRPA@RHF','singlet',nS,Om)
|
|
|
|
!--------------------------!
|
|
! Compute spectral weights !
|
|
!--------------------------!
|
|
|
|
call complex_RGW_excitation_density(nOrb,nC,nO,nR,nS,ERI,XpY,rho)
|
|
!------------------------!
|
|
! Compute GW self-energy !
|
|
!------------------------!
|
|
call complex_RGW_self_energy_diag(eta,nBas,nOrb,nC,nO,nV,nR,nS,Re_eHF,Im_eHF,Om,rho,EcGM,Re_SigC,Im_SigC,Re_Z,Im_Z)
|
|
|
|
!-----------------------------------!
|
|
! Solve the quasi-particle equation !
|
|
!-----------------------------------!
|
|
|
|
! Linearized or graphical solution?
|
|
Re_eGWlin(:) = Re_eHF(:) + Re_Z(:)*Re_SigC(:) - Im_Z(:)*Im_SigC(:)
|
|
Im_eGWlin(:) = Im_eHF(:) + Re_Z(:)*Im_SigC(:) + Im_Z(:)*Re_SigC(:)
|
|
|
|
if(linearize) then
|
|
|
|
write(*,*) ' *** Quasiparticle energies obtained by linearization *** '
|
|
write(*,*)
|
|
|
|
Re_eGW(:) = Re_eGWlin(:)
|
|
Im_eGW(:) = Im_eGWlin(:)
|
|
|
|
else
|
|
|
|
write(*,*) ' *** Quasiparticle energies obtained by root search *** '
|
|
write(*,*)
|
|
write(*,*) "ROOT SEARCH NOT IMPLEMENTED YET"
|
|
call complex_RGW_QP_graph(doSRG,eta,flow,nOrb,nC,nO,nV,nR,nS, &
|
|
Re_eHF,Im_eHF,Om,rho,Re_eGWlin,Im_eGWlin,Re_eHF,Im_eHF, &
|
|
Re_eGW,Im_eGW,Re_Z,Im_Z)
|
|
end if
|
|
|
|
! Plot self-energy, renormalization factor, and spectral function
|
|
!
|
|
! if(plot_self) call RGW_plot_self_energy(nOrb,eta,nC,nO,nV,nR,nS,eHF,eHF,Om,rho)
|
|
!
|
|
!! Cumulant expansion
|
|
!
|
|
!! call RGWC(dotest,eta,nOrb,nC,nO,nV,nR,nS,Om,rho,eHF,eHF,eGW,Z)
|
|
!
|
|
!! Compute the RPA correlation energy
|
|
!
|
|
! call phRLR_A(isp_W,dRPA_W,nOrb,nC,nO,nV,nR,nS,1d0,Re_eGW,ERI,Aph)
|
|
! if(.not.TDA_W) call phRLR_B(isp_W,dRPA_W,nOrb,nC,nO,nV,nR,nS,1d0,ERI,Bph)
|
|
!
|
|
! call phRLR(TDA_W,nS,Aph,Bph,EcRPA,Om,XpY,XmY)
|
|
!
|
|
!!--------------!
|
|
!! Dump results !
|
|
!!--------------!
|
|
!
|
|
call print_complex_cRG0W0(nOrb,nO,Re_eHF,Im_eHF,ENuc,ERHF,Re_SigC,Im_SigC,Re_Z,Im_Z,Re_eGW,Im_eGW,EcRPA,EcGM)
|
|
!!---------------------------!
|
|
!! Perform phBSE calculation !
|
|
!!---------------------------!
|
|
!!
|
|
!! if(dophBSE) then
|
|
!!
|
|
!! call RGW_phBSE(dophBSE2,exchange_kernel,TDA_W,TDA,dBSE,dTDA,singlet,triplet,eta, &
|
|
!! nOrb,nC,nO,nV,nR,nS,ERI,dipole_int,eHF,Re_eGW,EcBSE)
|
|
!!
|
|
!! write(*,*)
|
|
!! write(*,*)'-------------------------------------------------------------------------------'
|
|
!! write(*,'(2X,A50,F20.10,A3)') 'Tr@BSE@G0W0@RHF correlation energy (singlet) = ',EcBSE(1),' au'
|
|
!! write(*,'(2X,A50,F20.10,A3)') 'Tr@BSE@G0W0@RHF correlation energy (triplet) = ',EcBSE(2),' au'
|
|
!! write(*,'(2X,A50,F20.10,A3)') 'Tr@BSE@G0W0@RHF correlation energy = ',sum(EcBSE),' au'
|
|
!! write(*,'(2X,A50,F20.10,A3)') 'Tr@BSE@G0W0@RHF total energy = ',ENuc + ERHF + sum(EcBSE),' au'
|
|
!! write(*,*)'-------------------------------------------------------------------------------'
|
|
!! write(*,*)
|
|
!!
|
|
!! ! Compute the BSE correlation energy via the adiabatic connection fluctuation dissipation theorem
|
|
!!
|
|
!! if(doACFDT) then
|
|
!!
|
|
!! call RGW_phACFDT(exchange_kernel,doXBS,TDA_W,TDA,singlet,triplet,eta,nOrb,nC,nO,nV,nR,nS,ERI,eHF,Re_eGW,EcBSE)
|
|
!!
|
|
!! write(*,*)
|
|
!! write(*,*)'-------------------------------------------------------------------------------'
|
|
!! write(*,'(2X,A50,F20.10,A3)') 'AC@phBSE@G0W0@RHF correlation energy (singlet) = ',EcBSE(1),' au'
|
|
!! write(*,'(2X,A50,F20.10,A3)') 'AC@phBSE@G0W0@RHF correlation energy (triplet) = ',EcBSE(2),' au'
|
|
!! write(*,'(2X,A50,F20.10,A3)') 'AC@phBSE@G0W0@RHF correlation energy = ',sum(EcBSE),' au'
|
|
!! write(*,'(2X,A50,F20.10,A3)') 'AC@phBSE@G0W0@RHF total energy = ',ENuc + ERHF + sum(EcBSE),' au'
|
|
!! write(*,*)'-------------------------------------------------------------------------------'
|
|
!! write(*,*)
|
|
!!
|
|
!! end if
|
|
!!
|
|
!! end if
|
|
!!
|
|
!!!---------------------------!
|
|
!!! Perform ppBSE calculation !
|
|
!!!---------------------------!
|
|
!!
|
|
!! if(doppBSE) then
|
|
!!
|
|
!! call RGW_ppBSE(TDA_W,TDA,dBSE,dTDA,singlet,triplet,eta,nOrb,nC,nO,nV,nR,nS,ERI,dipole_int,eHF,Re_eGW,EcBSE)
|
|
!!
|
|
!! write(*,*)
|
|
!! write(*,*)'-------------------------------------------------------------------------------'
|
|
!! write(*,'(2X,A50,F20.10,A3)') 'Tr@ppBSE@G0W0@RHF correlation energy (singlet) = ',EcBSE(1),' au'
|
|
!! write(*,'(2X,A50,F20.10,A3)') 'Tr@ppBSE@G0W0@RHF correlation energy (triplet) = ',EcBSE(2),' au'
|
|
!! write(*,'(2X,A50,F20.10,A3)') 'Tr@ppBSE@G0W0@RHF correlation energy = ',sum(EcBSE),' au'
|
|
!! write(*,'(2X,A50,F20.10,A3)') 'Tr@ppBSE@G0W0@RHF total energy = ',ENuc + ERHF + sum(EcBSE),' au'
|
|
!! write(*,*)'-------------------------------------------------------------------------------'
|
|
!! write(*,*)
|
|
!!
|
|
!! end if
|
|
!!
|
|
!!! Testing zone
|
|
!!
|
|
!! if(dotest) then
|
|
!!
|
|
!! call dump_test_value('R','G0W0 correlation energy',EcRPA)
|
|
!! call dump_test_value('R','G0W0 HOMO energy',Re_eGW(nO))
|
|
!! call dump_test_value('R','G0W0 LUMO energy',Re_eGW(nO+1))
|
|
!!
|
|
!! end if
|
|
!!
|
|
end subroutine
|