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
|
2020-03-31 12:39:26 +02:00
|
|
|
integer :: iG
|
|
|
|
double precision :: r
|
2020-03-17 22:39:04 +01:00
|
|
|
double precision :: dExdw(nEns)
|
|
|
|
double precision,external :: Kronecker_delta
|
2020-03-17 11:29:29 +01:00
|
|
|
|
2021-02-15 17:27:06 +01:00
|
|
|
double precision,parameter :: Cx0 = - (4d0/3d0)*(1d0/pi)**(1d0/3d0)
|
|
|
|
double precision,parameter :: Cx1 = - (176d0/105d0)*(1d0/pi)**(1d0/3d0)
|
|
|
|
|
2020-03-17 11:29:29 +01:00
|
|
|
! Output variables
|
|
|
|
|
|
|
|
double precision,intent(out) :: ExDD(nEns)
|
|
|
|
|
2020-03-29 18:34:09 +02:00
|
|
|
! Compute correlation energy for ground- and doubly-excited states
|
2020-03-17 11:29:29 +01:00
|
|
|
|
2020-03-31 12:39:26 +02:00
|
|
|
dExdw(:) = 0d0
|
|
|
|
|
|
|
|
do iG=1,nGrid
|
|
|
|
|
|
|
|
r = max(0d0,rhow(iG))
|
|
|
|
|
|
|
|
if(r > threshold) then
|
2020-04-06 19:40:42 +02:00
|
|
|
|
|
|
|
dExdw(1) = 0d0
|
|
|
|
dExdw(2) = dExdw(2) + weight(iG)*(Cx1 - Cx0)*r**(4d0/3d0)
|
|
|
|
|
2020-03-31 12:39:26 +02:00
|
|
|
end if
|
|
|
|
|
|
|
|
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
|
2020-04-06 19:40:42 +02:00
|
|
|
do jEns=2,nEns
|
2020-03-17 11:29:29 +01:00
|
|
|
|
2020-04-06 19:40:42 +02:00
|
|
|
ExDD(iEns) = ExDD(iEns) + (Kronecker_delta(iEns,jEns) - wEns(jEns))*dExdw(jEns)
|
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
|