mirror of
https://github.com/pfloos/quack
synced 2024-11-09 07:33:55 +01:00
49 lines
992 B
Fortran
49 lines
992 B
Fortran
subroutine unrestricted_gga_exchange_derivative_discontinuity(DFA,nEns,wEns,nGrid,weight,rhow,drhow,ExDD)
|
|
|
|
! Compute the exchange GGA part of the derivative discontinuity
|
|
|
|
implicit none
|
|
include 'parameters.h'
|
|
|
|
! Input variables
|
|
|
|
integer,intent(in) :: DFA
|
|
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)
|
|
double precision,intent(in) :: drhow(ncart,nGrid)
|
|
|
|
! Local variables
|
|
|
|
|
|
! Output variables
|
|
|
|
double precision,intent(out) :: ExDD(nEns)
|
|
|
|
! Select exchange functional
|
|
|
|
select case (DFA)
|
|
|
|
case (1)
|
|
|
|
ExDD(:) = 0d0
|
|
|
|
case (2)
|
|
|
|
ExDD(:) = 0d0
|
|
|
|
case (3)
|
|
|
|
ExDD(:) = 0d0
|
|
|
|
case default
|
|
|
|
call print_warning('!!! GGA exchange derivative discontinuity not available !!!')
|
|
stop
|
|
|
|
end select
|
|
|
|
end subroutine unrestricted_gga_exchange_derivative_discontinuity
|