2020-08-02 13:09:30 +02:00
|
|
|
subroutine restricted_exchange_derivative_discontinuity(rung,DFA,nEns,wEns,aCC_w1,aCC_w2,nGrid,weight,rhow,drhow,ExDD,Cx_choice)
|
2020-03-16 22:08:04 +01:00
|
|
|
|
|
|
|
! Compute the exchange part of the derivative discontinuity
|
|
|
|
|
|
|
|
implicit none
|
|
|
|
include 'parameters.h'
|
|
|
|
|
|
|
|
! Input variables
|
|
|
|
|
|
|
|
integer,intent(in) :: rung
|
|
|
|
character(len=12),intent(in) :: DFA
|
|
|
|
integer,intent(in) :: nEns
|
|
|
|
double precision,intent(in) :: wEns(nEns)
|
2020-07-02 18:49:42 +02:00
|
|
|
double precision,intent(in) :: aCC_w1(3)
|
|
|
|
double precision,intent(in) :: aCC_w2(3)
|
2020-03-16 22:08:04 +01:00
|
|
|
integer,intent(in) :: nGrid
|
|
|
|
double precision,intent(in) :: weight(nGrid)
|
|
|
|
double precision,intent(in) :: rhow(nGrid)
|
|
|
|
double precision,intent(in) :: drhow(ncart,nGrid)
|
2020-08-02 13:09:30 +02:00
|
|
|
integer,intent(in) :: Cx_choice
|
2020-03-16 22:08:04 +01:00
|
|
|
|
|
|
|
! Local variables
|
|
|
|
|
|
|
|
|
|
|
|
! Output variables
|
|
|
|
|
|
|
|
double precision,intent(out) :: ExDD(nEns)
|
|
|
|
|
|
|
|
select case (rung)
|
|
|
|
|
|
|
|
! Hartree calculation
|
|
|
|
|
|
|
|
case(0)
|
|
|
|
|
|
|
|
ExDD(:) = 0d0
|
|
|
|
|
|
|
|
! LDA functionals
|
|
|
|
|
|
|
|
case(1)
|
|
|
|
|
2020-08-02 13:09:30 +02:00
|
|
|
call restricted_lda_exchange_derivative_discontinuity(DFA,nEns,wEns(:),aCC_w1,aCC_w2,nGrid,weight(:),&
|
|
|
|
rhow(:),ExDD(:),Cx_choice)
|
2020-03-16 22:08:04 +01:00
|
|
|
|
|
|
|
! GGA functionals
|
|
|
|
|
|
|
|
case(2)
|
|
|
|
|
2020-07-06 20:57:27 +02:00
|
|
|
call restricted_gga_exchange_derivative_discontinuity(DFA,nEns,wEns(:),nGrid,weight(:),rhow(:),drhow(:,:),ExDD(:))
|
2020-03-16 22:08:04 +01:00
|
|
|
|
|
|
|
! Hybrid functionals
|
|
|
|
|
|
|
|
case(4)
|
|
|
|
|
|
|
|
call print_warning('!!! exchange part of derivative discontinuity NYI for hybrids !!!')
|
|
|
|
stop
|
|
|
|
|
|
|
|
! Hartree-Fock calculation
|
|
|
|
|
|
|
|
case(666)
|
|
|
|
|
|
|
|
ExDD(:) = 0d0
|
|
|
|
|
|
|
|
end select
|
|
|
|
|
2020-07-06 20:57:27 +02:00
|
|
|
end subroutine restricted_exchange_derivative_discontinuity
|