2020-03-17 11:29:29 +01:00
|
|
|
subroutine RMFL20_lda_exchange_derivative_discontinuity(nEns,wEns,nGrid,weight,rhow,ExDD)
|
|
|
|
|
|
|
|
! Compute the restricted version of the eLDA exchange part of the derivative discontinuity
|
|
|
|
|
|
|
|
implicit none
|
|
|
|
include 'parameters.h'
|
|
|
|
|
|
|
|
! Input variables
|
|
|
|
|
|
|
|
integer,intent(in) :: nEns
|
|
|
|
double precision,intent(in) :: wEns(nEns)
|
|
|
|
integer,intent(in) :: nGrid
|
|
|
|
double precision,intent(in) :: weight(nGrid)
|
|
|
|
double precision,intent(in) :: rhow(nGrid)
|
|
|
|
|
|
|
|
! Local variables
|
|
|
|
|
2020-03-17 22:39:04 +01:00
|
|
|
integer :: iEns,jEns
|
|
|
|
double precision :: Cx(nEns)
|
|
|
|
double precision :: dExdw(nEns)
|
|
|
|
double precision,external :: Kronecker_delta
|
2020-03-17 11:29:29 +01:00
|
|
|
|
|
|
|
! Output variables
|
|
|
|
|
|
|
|
double precision,intent(out) :: ExDD(nEns)
|
|
|
|
|
|
|
|
! Weight-dependent Cx coefficient for RMFL20 exchange functional
|
|
|
|
|
2020-03-18 16:06:29 +01:00
|
|
|
Cx(1) = Cx0
|
|
|
|
Cx(2) = Cx1
|
2020-03-17 11:29:29 +01:00
|
|
|
|
|
|
|
! Compute correlation energy for ground, singly-excited and doubly-excited states
|
|
|
|
|
2020-03-17 22:39:04 +01:00
|
|
|
do iEns=1,nEns
|
2020-03-17 11:29:29 +01:00
|
|
|
|
2020-03-17 22:39:04 +01:00
|
|
|
call restricted_elda_exchange_energy(nEns,Cx(iEns),nGrid,weight(:),rhow(:),dExdw(iEns))
|
2020-03-17 11:29:29 +01:00
|
|
|
|
2020-03-17 22:39:04 +01:00
|
|
|
end do
|
2020-03-17 11:29:29 +01:00
|
|
|
|
2020-03-17 22:39:04 +01:00
|
|
|
ExDD(:) = 0d0
|
2020-03-17 11:29:29 +01:00
|
|
|
|
2020-03-17 22:39:04 +01:00
|
|
|
do iEns=1,nEns
|
|
|
|
do jEns=1,nEns
|
2020-03-17 11:29:29 +01:00
|
|
|
|
2020-03-17 22:39:04 +01:00
|
|
|
ExDD(iEns) = ExDD(iEns) + (Kronecker_delta(iEns,jEns) - wEns(jEns))*(dExdw(jEns) - dExdw(1))
|
2020-03-17 11:29:29 +01:00
|
|
|
|
2020-03-17 22:39:04 +01:00
|
|
|
end do
|
2020-03-17 11:29:29 +01:00
|
|
|
end do
|
|
|
|
|
|
|
|
end subroutine RMFL20_lda_exchange_derivative_discontinuity
|