4
1
mirror of https://github.com/pfloos/quack synced 2024-06-26 23:22:20 +02:00
quack/src/eDFT/gga_exchange_energy.f90

45 lines
973 B
Fortran
Raw Normal View History

2019-03-13 11:07:31 +01:00
subroutine gga_exchange_energy(DFA,nEns,wEns,nGrid,weight,rho,drho,Ex)
! Select GGA exchange functional for energy 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)
double precision,intent(in) :: rho(nGrid)
double precision,intent(in) :: drho(3,nGrid)
! Output variables
double precision :: Ex
select case (DFA)
case ('G96')
2020-03-28 22:52:45 +01:00
call G96_gga_exchange_energy(nGrid,weight,rho,drho,Ex)
case ('RB88')
call RB88_gga_exchange_energy(nGrid,weight,rho,drho,Ex)
2019-03-13 11:07:31 +01:00
case ('B88')
2020-03-28 22:52:45 +01:00
call B88_gga_exchange_energy(nGrid,weight,rho,drho,Ex)
2019-03-13 11:07:31 +01:00
case default
call print_warning('!!! GGA exchange energy not available !!!')
2019-03-13 11:07:31 +01:00
stop
end select
end subroutine gga_exchange_energy