2022-11-29 12:11:09 +01:00
|
|
|
subroutine SRG_qsGW(maxSCF,thresh,max_diis,doACFDT,exchange_kernel,doXBS,BSE,BSE2,TDA_W,TDA, &
|
|
|
|
dBSE,dTDA,evDyn,singlet,triplet,eta,nNuc,ZNuc,rNuc,ENuc,nBas,nC,nO,nV,nR,nS,ERHF, &
|
|
|
|
S,X,T,V,Hc,ERI_AO,ERI_MO,dipole_int_AO,dipole_int_MO,PHF,cHF,eHF)
|
|
|
|
|
|
|
|
! Perform a quasiparticle self-consistent GW calculation
|
|
|
|
|
|
|
|
implicit none
|
|
|
|
include 'parameters.h'
|
|
|
|
|
|
|
|
! Input variables
|
|
|
|
|
|
|
|
integer,intent(in) :: maxSCF
|
|
|
|
integer,intent(in) :: max_diis
|
|
|
|
double precision,intent(in) :: thresh
|
|
|
|
logical,intent(in) :: doACFDT
|
|
|
|
logical,intent(in) :: exchange_kernel
|
|
|
|
logical,intent(in) :: doXBS
|
|
|
|
logical,intent(in) :: BSE
|
|
|
|
logical,intent(in) :: BSE2
|
|
|
|
logical,intent(in) :: TDA_W
|
|
|
|
logical,intent(in) :: TDA
|
|
|
|
logical,intent(in) :: dBSE
|
|
|
|
logical,intent(in) :: dTDA
|
|
|
|
logical,intent(in) :: evDyn
|
|
|
|
logical,intent(in) :: singlet
|
|
|
|
logical,intent(in) :: triplet
|
|
|
|
double precision,intent(in) :: eta
|
|
|
|
|
|
|
|
integer,intent(in) :: nNuc
|
|
|
|
double precision,intent(in) :: ZNuc(nNuc)
|
|
|
|
double precision,intent(in) :: rNuc(nNuc,ncart)
|
|
|
|
double precision,intent(in) :: ENuc
|
|
|
|
|
|
|
|
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) :: ERHF
|
|
|
|
double precision,intent(in) :: eHF(nBas)
|
|
|
|
double precision,intent(in) :: cHF(nBas,nBas)
|
|
|
|
double precision,intent(in) :: PHF(nBas,nBas)
|
|
|
|
double precision,intent(in) :: S(nBas,nBas)
|
|
|
|
double precision,intent(in) :: T(nBas,nBas)
|
|
|
|
double precision,intent(in) :: V(nBas,nBas)
|
|
|
|
double precision,intent(in) :: Hc(nBas,nBas)
|
|
|
|
double precision,intent(in) :: X(nBas,nBas)
|
|
|
|
double precision,intent(in) :: ERI_AO(nBas,nBas,nBas,nBas)
|
|
|
|
double precision,intent(inout):: ERI_MO(nBas,nBas,nBas,nBas)
|
|
|
|
double precision,intent(in) :: dipole_int_AO(nBas,nBas,ncart)
|
|
|
|
double precision,intent(in) :: dipole_int_MO(nBas,nBas,ncart)
|
|
|
|
|
|
|
|
! Local variables
|
|
|
|
|
|
|
|
integer :: nSCF
|
|
|
|
integer :: nBasSq
|
|
|
|
integer :: ispin
|
|
|
|
integer :: n_diis
|
|
|
|
double precision :: ET
|
|
|
|
double precision :: EV
|
|
|
|
double precision :: EJ
|
|
|
|
double precision :: Ex
|
|
|
|
double precision :: EqsGW
|
|
|
|
double precision :: EcRPA
|
|
|
|
double precision :: EcBSE(nspin)
|
|
|
|
double precision :: EcAC(nspin)
|
|
|
|
double precision :: EcGM
|
|
|
|
double precision :: Conv
|
|
|
|
double precision :: rcond
|
2023-03-14 14:11:01 +01:00
|
|
|
double precision :: tao,tao1,tao2,tsrg,tsrg1,tsrg2,tlr,tlr1,tlr2,t1,t2,tt,tmo1,tmo2,tmo,tex,tex1,tex2
|
2022-11-29 12:11:09 +01:00
|
|
|
double precision,external :: trace_matrix
|
|
|
|
double precision :: dipole(ncart)
|
|
|
|
|
2023-06-30 16:47:26 +02:00
|
|
|
logical :: print_W = .true.
|
2022-11-29 12:11:09 +01:00
|
|
|
double precision,allocatable :: error_diis(:,:)
|
|
|
|
double precision,allocatable :: F_diis(:,:)
|
|
|
|
double precision,allocatable :: OmRPA(:)
|
|
|
|
double precision,allocatable :: XpY_RPA(:,:)
|
|
|
|
double precision,allocatable :: XmY_RPA(:,:)
|
|
|
|
double precision,allocatable :: rho_RPA(:,:,:)
|
|
|
|
double precision,allocatable :: c(:,:)
|
|
|
|
double precision,allocatable :: cp(:,:)
|
|
|
|
double precision,allocatable :: eGW(:)
|
|
|
|
double precision,allocatable :: eOld(:)
|
|
|
|
double precision,allocatable :: P(:,:)
|
|
|
|
double precision,allocatable :: F(:,:)
|
|
|
|
double precision,allocatable :: Fp(:,:)
|
|
|
|
double precision,allocatable :: J(:,:)
|
|
|
|
double precision,allocatable :: K(:,:)
|
|
|
|
double precision,allocatable :: SigC(:,:)
|
|
|
|
double precision,allocatable :: Z(:)
|
|
|
|
double precision,allocatable :: error(:,:)
|
|
|
|
|
|
|
|
! Hello world
|
|
|
|
|
|
|
|
write(*,*)
|
|
|
|
write(*,*)'************************************************'
|
|
|
|
write(*,*)'| Self-consistent SRG-qsGW calculation |'
|
|
|
|
write(*,*)'************************************************'
|
|
|
|
write(*,*)
|
|
|
|
|
|
|
|
! Warning
|
|
|
|
|
|
|
|
write(*,*) '!! ERIs in MO basis will be overwritten in qsGW !!'
|
|
|
|
write(*,*)
|
|
|
|
|
|
|
|
! Stuff
|
|
|
|
|
|
|
|
nBasSq = nBas*nBas
|
|
|
|
|
|
|
|
! TDA for W
|
|
|
|
|
|
|
|
if(TDA_W) then
|
|
|
|
write(*,*) 'Tamm-Dancoff approximation for dynamic screening!'
|
|
|
|
write(*,*)
|
|
|
|
end if
|
|
|
|
|
|
|
|
! TDA
|
|
|
|
|
|
|
|
if(TDA) then
|
|
|
|
write(*,*) 'Tamm-Dancoff approximation activated!'
|
|
|
|
write(*,*)
|
|
|
|
end if
|
|
|
|
|
|
|
|
! Memory allocation
|
|
|
|
|
|
|
|
allocate(eGW(nBas),eOld(nBas),c(nBas,nBas),cp(nBas,nBas),P(nBas,nBas),F(nBas,nBas),Fp(nBas,nBas), &
|
|
|
|
J(nBas,nBas),K(nBas,nBas),SigC(nBas,nBas),Z(nBas),OmRPA(nS),XpY_RPA(nS,nS),XmY_RPA(nS,nS), &
|
|
|
|
rho_RPA(nBas,nBas,nS),error(nBas,nBas),error_diis(nBasSq,max_diis),F_diis(nBasSq,max_diis))
|
|
|
|
|
|
|
|
! Initialization
|
|
|
|
|
|
|
|
nSCF = -1
|
|
|
|
n_diis = 0
|
|
|
|
ispin = 1
|
|
|
|
Conv = 1d0
|
|
|
|
P(:,:) = PHF(:,:)
|
|
|
|
eGW(:) = eHF(:)
|
|
|
|
eOld(:) = eHF(:)
|
|
|
|
c(:,:) = cHF(:,:)
|
|
|
|
F_diis(:,:) = 0d0
|
|
|
|
error_diis(:,:) = 0d0
|
|
|
|
rcond = 0d0
|
|
|
|
|
2022-11-29 14:47:51 +01:00
|
|
|
print*,max_diis
|
|
|
|
|
2022-11-29 12:11:09 +01:00
|
|
|
!------------------------------------------------------------------------
|
|
|
|
! Main loop
|
|
|
|
!------------------------------------------------------------------------
|
|
|
|
|
|
|
|
do while(Conv > thresh .and. nSCF <= maxSCF)
|
|
|
|
|
|
|
|
! Increment
|
|
|
|
|
|
|
|
nSCF = nSCF + 1
|
|
|
|
|
|
|
|
! Buid Coulomb matrix
|
2023-03-14 14:11:01 +01:00
|
|
|
call wall_time(t1)
|
2022-11-29 12:11:09 +01:00
|
|
|
call Coulomb_matrix_AO_basis(nBas,P,ERI_AO,J)
|
|
|
|
|
|
|
|
! Compute exchange part of the self-energy
|
|
|
|
|
|
|
|
call exchange_matrix_AO_basis(nBas,P,ERI_AO,K)
|
2023-03-14 14:11:01 +01:00
|
|
|
call wall_time(t2)
|
|
|
|
tt=tt+t2-t1
|
2022-11-29 12:11:09 +01:00
|
|
|
|
|
|
|
! AO to MO transformation of two-electron integrals
|
|
|
|
|
2023-03-14 14:11:01 +01:00
|
|
|
call wall_time(tao1)
|
|
|
|
|
|
|
|
call AOtoMO_integral_transform(1,1,1,1,nBas,c,ERI_AO,ERI_MO)
|
|
|
|
|
|
|
|
call wall_time(tao2)
|
|
|
|
|
|
|
|
tao = tao + tao2 -tao1
|
2022-11-29 12:11:09 +01:00
|
|
|
|
|
|
|
! Compute linear response
|
|
|
|
|
2023-03-14 14:11:01 +01:00
|
|
|
call wall_time(tlr1)
|
|
|
|
|
2023-07-12 13:34:10 +02:00
|
|
|
call phLR(ispin,.true.,TDA_W,eta,nBas,nC,nO,nV,nR,nS,1d0,eGW,ERI_MO,EcRPA,OmRPA,XpY_RPA,XmY_RPA)
|
2023-03-14 14:11:01 +01:00
|
|
|
|
|
|
|
call wall_time(tlr2)
|
|
|
|
|
|
|
|
tlr = tlr + tlr2 -tlr1
|
|
|
|
|
2022-11-29 12:11:09 +01:00
|
|
|
if(print_W) call print_excitation('RPA@qsGW ',ispin,nS,OmRPA)
|
|
|
|
|
|
|
|
! Compute correlation part of the self-energy
|
|
|
|
|
2023-03-14 14:11:01 +01:00
|
|
|
call wall_time(tex1)
|
|
|
|
|
2023-07-04 10:51:03 +02:00
|
|
|
call GW_excitation_density(nBas,nC,nO,nR,nS,ERI_MO,XpY_RPA,rho_RPA)
|
2023-03-14 14:11:01 +01:00
|
|
|
|
|
|
|
call wall_time(tex2)
|
|
|
|
tex=tex+tex2-tex1
|
|
|
|
|
|
|
|
call wall_time(tsrg1)
|
2022-11-29 12:11:09 +01:00
|
|
|
call self_energy_correlation_SRG(eta,nBas,nC,nO,nV,nR,nS,eGW,OmRPA,rho_RPA,EcGM,SigC)
|
|
|
|
call renormalization_factor_SRG(eta,nBas,nC,nO,nV,nR,nS,eGW,OmRPA,rho_RPA,Z)
|
|
|
|
|
2023-03-14 14:11:01 +01:00
|
|
|
call wall_time(tsrg2)
|
|
|
|
|
|
|
|
tsrg = tsrg + tsrg2 -tsrg1
|
|
|
|
|
|
|
|
|
2022-11-29 12:11:09 +01:00
|
|
|
! Make correlation self-energy Hermitian and transform it back to AO basis
|
2023-03-14 14:11:01 +01:00
|
|
|
|
|
|
|
call wall_time(tmo1)
|
2022-11-29 12:11:09 +01:00
|
|
|
call MOtoAO_transform(nBas,S,c,SigC)
|
2023-03-14 14:11:01 +01:00
|
|
|
call wall_time(tmo2)
|
|
|
|
tmo = tmo + tmo2 - tmo1
|
|
|
|
! Solve the quasi-particle equation
|
2022-11-29 12:11:09 +01:00
|
|
|
|
|
|
|
F(:,:) = Hc(:,:) + J(:,:) + 0.5d0*K(:,:) + SigC(:,:)
|
|
|
|
|
|
|
|
! Compute commutator and convergence criteria
|
|
|
|
|
|
|
|
error = matmul(F,matmul(P,S)) - matmul(matmul(S,P),F)
|
|
|
|
|
|
|
|
! DIIS extrapolation
|
|
|
|
|
2022-11-29 14:47:51 +01:00
|
|
|
if(max_diis > 1) then
|
|
|
|
|
|
|
|
n_diis = min(n_diis+1,max_diis)
|
2022-11-29 12:11:09 +01:00
|
|
|
call DIIS_extrapolation(rcond,nBasSq,nBasSq,n_diis,error_diis,F_diis,error,F)
|
2022-11-29 14:47:51 +01:00
|
|
|
|
2022-11-29 12:11:09 +01:00
|
|
|
end if
|
|
|
|
|
|
|
|
! Diagonalize Hamiltonian in AO basis
|
|
|
|
|
|
|
|
Fp = matmul(transpose(X),matmul(F,X))
|
|
|
|
cp(:,:) = Fp(:,:)
|
|
|
|
call diagonalize_matrix(nBas,cp,eGW)
|
|
|
|
c = matmul(X,cp)
|
|
|
|
SigC = matmul(transpose(c),matmul(SigC,c))
|
|
|
|
|
|
|
|
! Compute new density matrix in the AO basis
|
|
|
|
|
|
|
|
P(:,:) = 2d0*matmul(c(:,1:nO),transpose(c(:,1:nO)))
|
|
|
|
|
|
|
|
! Save quasiparticles energy for next cycle
|
|
|
|
|
2022-11-29 14:47:51 +01:00
|
|
|
Conv = maxval(abs(error))
|
2022-11-29 12:11:09 +01:00
|
|
|
eOld(:) = eGW(:)
|
|
|
|
|
|
|
|
!------------------------------------------------------------------------
|
|
|
|
! Compute total energy
|
|
|
|
!------------------------------------------------------------------------
|
|
|
|
|
|
|
|
! Kinetic energy
|
|
|
|
|
|
|
|
ET = trace_matrix(nBas,matmul(P,T))
|
|
|
|
|
|
|
|
! Potential energy
|
|
|
|
|
|
|
|
EV = trace_matrix(nBas,matmul(P,V))
|
|
|
|
|
|
|
|
! Coulomb energy
|
|
|
|
|
|
|
|
EJ = 0.5d0*trace_matrix(nBas,matmul(P,J))
|
|
|
|
|
|
|
|
! Exchange energy
|
|
|
|
|
|
|
|
Ex = 0.25d0*trace_matrix(nBas,matmul(P,K))
|
|
|
|
|
|
|
|
! Total energy
|
|
|
|
|
|
|
|
EqsGW = ET + EV + EJ + Ex
|
|
|
|
|
|
|
|
! Print results
|
|
|
|
|
|
|
|
call dipole_moment(nBas,P,nNuc,ZNuc,rNuc,dipole_int_AO,dipole)
|
|
|
|
call print_qsGW(nBas,nO,nSCF,Conv,thresh,eHF,eGW,c,SigC,Z,ENuc,ET,EV,EJ,Ex,EcGM,EcRPA,EqsGW,dipole)
|
|
|
|
|
|
|
|
enddo
|
|
|
|
!------------------------------------------------------------------------
|
|
|
|
! End main loop
|
|
|
|
!------------------------------------------------------------------------
|
|
|
|
|
|
|
|
! Did it actually converge?
|
|
|
|
|
|
|
|
if(nSCF == maxSCF+1) then
|
|
|
|
|
|
|
|
write(*,*)
|
|
|
|
write(*,*)'!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!'
|
|
|
|
write(*,*)' Convergence failed '
|
|
|
|
write(*,*)'!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!'
|
|
|
|
write(*,*)
|
|
|
|
|
|
|
|
stop
|
|
|
|
|
2023-03-14 14:11:01 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
print *, "Wall time for Fock and exchange build", tt
|
|
|
|
print *, "Wall Time for AO to MO", tao
|
|
|
|
print *, "Wall Time for LR", tlr
|
|
|
|
print *, "Wall Time for excitation density", tex
|
|
|
|
print *, "Wall Time for SRG", tsrg
|
|
|
|
print *, "Wall time MO to AO Sigma", tmo
|
2022-11-29 12:11:09 +01:00
|
|
|
|
|
|
|
! Deallocate memory
|
|
|
|
|
|
|
|
deallocate(c,cp,P,F,Fp,J,K,SigC,Z,OmRPA,XpY_RPA,XmY_RPA,rho_RPA,error,error_diis,F_diis)
|
|
|
|
|
|
|
|
! Perform BSE calculation
|
|
|
|
|
|
|
|
if(BSE) then
|
|
|
|
|
2023-07-04 11:56:00 +02:00
|
|
|
call GW_phBSE(BSE2,TDA_W,TDA,dBSE,dTDA,evDyn,singlet,triplet,eta,nBas,nC,nO,nV,nR,nS,ERI_MO,dipole_int_MO,eGW,eGW,EcBSE)
|
2022-11-29 12:11:09 +01:00
|
|
|
|
|
|
|
if(exchange_kernel) then
|
|
|
|
|
|
|
|
EcBSE(1) = 0.5d0*EcBSE(1)
|
|
|
|
EcBSE(2) = 1.5d0*EcBSE(2)
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
write(*,*)
|
|
|
|
write(*,*)'-------------------------------------------------------------------------------'
|
|
|
|
write(*,'(2X,A50,F20.10)') 'Tr@BSE@qsGW correlation energy (singlet) =',EcBSE(1)
|
|
|
|
write(*,'(2X,A50,F20.10)') 'Tr@BSE@qsGW correlation energy (triplet) =',EcBSE(2)
|
|
|
|
write(*,'(2X,A50,F20.10)') 'Tr@BSE@qsGW correlation energy =',EcBSE(1) + EcBSE(2)
|
|
|
|
write(*,'(2X,A50,F20.10)') 'Tr@BSE@qsGW total energy =',ENuc + EqsGW + EcBSE(1) + EcBSE(2)
|
|
|
|
write(*,*)'-------------------------------------------------------------------------------'
|
|
|
|
write(*,*)
|
|
|
|
|
|
|
|
! Compute the BSE correlation energy via the adiabatic connection
|
|
|
|
|
|
|
|
if(doACFDT) then
|
|
|
|
|
|
|
|
write(*,*) '------------------------------------------------------'
|
|
|
|
write(*,*) 'Adiabatic connection version of BSE correlation energy'
|
|
|
|
write(*,*) '------------------------------------------------------'
|
|
|
|
write(*,*)
|
|
|
|
|
|
|
|
if(doXBS) then
|
|
|
|
|
|
|
|
write(*,*) '*** scaled screening version (XBS) ***'
|
|
|
|
write(*,*)
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
call ACFDT(exchange_kernel,doXBS,.true.,TDA_W,TDA,BSE,singlet,triplet,eta,nBas,nC,nO,nV,nR,nS,ERI_MO,eGW,eGW,EcAC)
|
|
|
|
|
|
|
|
write(*,*)
|
|
|
|
write(*,*)'-------------------------------------------------------------------------------'
|
|
|
|
write(*,'(2X,A50,F20.10)') 'AC@BSE@qsGW correlation energy (singlet) =',EcAC(1)
|
|
|
|
write(*,'(2X,A50,F20.10)') 'AC@BSE@qsGW correlation energy (triplet) =',EcAC(2)
|
|
|
|
write(*,'(2X,A50,F20.10)') 'AC@BSE@qsGW correlation energy =',EcAC(1) + EcAC(2)
|
|
|
|
write(*,'(2X,A50,F20.10)') 'AC@BSE@qsGW total energy =',ENuc + EqsGW + EcAC(1) + EcAC(2)
|
|
|
|
write(*,*)'-------------------------------------------------------------------------------'
|
|
|
|
write(*,*)
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
end subroutine SRG_qsGW
|