2019-03-13 11:07:31 +01:00
|
|
|
subroutine gga_exchange_potential(DFA,nEns,wEns,nGrid,weight,nBas,AO,dAO,rho,drho,Fx)
|
|
|
|
|
|
|
|
! Select GGA exchange functional for potential calculation
|
|
|
|
|
|
|
|
implicit none
|
|
|
|
include 'parameters.h'
|
|
|
|
|
|
|
|
! Input variables
|
|
|
|
|
|
|
|
character(len=12),intent(in) :: DFA
|
|
|
|
integer,intent(in) :: nEns
|
|
|
|
double precision,intent(in) :: wEns(nEns)
|
|
|
|
integer,intent(in) :: nGrid
|
|
|
|
double precision,intent(in) :: weight(nGrid)
|
|
|
|
integer,intent(in) :: nBas
|
|
|
|
double precision,intent(in) :: AO(nBas,nGrid)
|
|
|
|
double precision,intent(in) :: dAO(3,nBas,nGrid)
|
|
|
|
double precision,intent(in) :: rho(nGrid)
|
|
|
|
double precision,intent(in) :: drho(3,nGrid)
|
|
|
|
|
|
|
|
! Output variables
|
|
|
|
|
|
|
|
double precision,intent(out) :: Fx(nBas,nBas)
|
|
|
|
|
|
|
|
! Select GGA exchange functional
|
|
|
|
|
|
|
|
select case (DFA)
|
|
|
|
|
|
|
|
case ('G96')
|
|
|
|
|
2020-03-28 22:52:45 +01:00
|
|
|
call G96_gga_exchange_potential(nGrid,weight,nBas,AO,dAO,rho,drho,Fx)
|
2019-03-13 11:07:31 +01:00
|
|
|
|
2020-03-28 22:52:45 +01:00
|
|
|
case ('RB88')
|
|
|
|
|
|
|
|
call RB88_gga_exchange_potential(nGrid,weight,nBas,AO,dAO,rho,drho,Fx)
|
|
|
|
|
2019-03-13 11:07:31 +01:00
|
|
|
case ('B88')
|
|
|
|
|
2020-03-28 22:52:45 +01:00
|
|
|
call B88_gga_exchange_potential(nGrid,weight,nBas,AO,dAO,rho,drho,Fx)
|
2019-03-13 11:07:31 +01:00
|
|
|
|
|
|
|
case default
|
|
|
|
|
2020-04-06 22:27:13 +02:00
|
|
|
call print_warning('!!! GGA exchange potential not available !!!')
|
2019-03-13 11:07:31 +01:00
|
|
|
stop
|
|
|
|
|
|
|
|
end select
|
|
|
|
|
|
|
|
end subroutine gga_exchange_potential
|