4
1
mirror of https://github.com/pfloos/quack synced 2024-06-23 13:42:19 +02:00
quack/src/eDFT/unrestricted_gga_exchange_potential.f90

49 lines
1.2 KiB
Fortran
Raw Normal View History

2020-07-06 20:57:27 +02:00
subroutine unrestricted_gga_exchange_potential(DFA,nEns,wEns,nGrid,weight,nBas,AO,dAO,rho,drho,Fx)
2019-03-13 11:07:31 +01:00
! 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-07-06 20:57:27 +02:00
call UG96_gga_exchange_potential(nGrid,weight,nBas,AO,dAO,rho,drho,Fx)
2019-03-13 11:07:31 +01:00
case ('B88')
2020-07-06 20:57:27 +02:00
call UB88_gga_exchange_potential(nGrid,weight,nBas,AO,dAO,rho,drho,Fx)
2019-03-13 11:07:31 +01:00
2021-02-12 10:41:01 +01:00
case ('PBE')
call UPBE_gga_exchange_potential(nGrid,weight,nBas,AO,dAO,rho,drho,Fx)
2019-03-13 11:07:31 +01:00
case default
call print_warning('!!! GGA exchange potential not available !!!')
2019-03-13 11:07:31 +01:00
stop
end select
2020-07-06 20:57:27 +02:00
end subroutine unrestricted_gga_exchange_potential