2020-09-29 09:43:01 +02:00
|
|
|
subroutine unrestricted_lda_exchange_derivative_discontinuity(DFA,nEns,wEns,aCC_w1,aCC_w2,nGrid,weight,rhow,&
|
2020-09-29 11:47:18 +02:00
|
|
|
Cx_choice,doNcentered,kappa,ExDD)
|
2020-03-16 22:08:04 +01:00
|
|
|
|
|
|
|
! Compute the exchange LDA part of the derivative discontinuity
|
|
|
|
|
|
|
|
implicit none
|
|
|
|
include 'parameters.h'
|
|
|
|
|
|
|
|
! Input variables
|
|
|
|
|
|
|
|
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)
|
2020-08-02 13:09:30 +02:00
|
|
|
integer,intent(in) :: Cx_choice
|
2020-09-29 11:47:18 +02:00
|
|
|
logical,intent(in) :: doNcentered
|
|
|
|
double precision,intent(in) :: kappa(nEns)
|
2020-03-16 22:08:04 +01:00
|
|
|
|
|
|
|
! Local variables
|
|
|
|
|
|
|
|
|
|
|
|
! Output variables
|
|
|
|
|
|
|
|
double precision,intent(out) :: ExDD(nEns)
|
|
|
|
|
2020-09-29 09:43:01 +02:00
|
|
|
! Select exchange functional
|
2020-03-16 22:08:04 +01:00
|
|
|
|
|
|
|
select case (DFA)
|
|
|
|
|
2020-07-06 20:57:27 +02:00
|
|
|
case ('S51')
|
2020-03-16 22:08:04 +01:00
|
|
|
|
|
|
|
ExDD(:) = 0d0
|
|
|
|
|
2020-07-06 20:57:27 +02:00
|
|
|
case ('CC')
|
2020-07-02 14:27:38 +02:00
|
|
|
|
2020-09-29 09:43:01 +02:00
|
|
|
call UCC_lda_exchange_derivative_discontinuity(nEns,wEns,aCC_w1,aCC_w2,nGrid,weight(:),rhow(:),&
|
2020-09-29 11:47:18 +02:00
|
|
|
Cx_choice,doNcentered,kappa,ExDD(:))
|
2020-07-02 14:27:38 +02:00
|
|
|
|
2020-03-16 22:08:04 +01:00
|
|
|
case default
|
|
|
|
|
2020-04-06 22:27:13 +02:00
|
|
|
call print_warning('!!! LDA exchange derivative discontinuity not available !!!')
|
2020-03-16 22:08:04 +01:00
|
|
|
stop
|
|
|
|
|
|
|
|
end select
|
|
|
|
|
2020-07-06 20:57:27 +02:00
|
|
|
end subroutine unrestricted_lda_exchange_derivative_discontinuity
|