mirror of
https://github.com/pfloos/quack
synced 2024-11-13 17:43:58 +01:00
37 lines
834 B
Fortran
37 lines
834 B
Fortran
subroutine restricted_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 ('B88')
|
|
|
|
call RB88_gga_exchange_energy(nGrid,weight,rho,drho,Ex)
|
|
|
|
case default
|
|
|
|
call print_warning('!!! GGA exchange energy not available !!!')
|
|
stop
|
|
|
|
end select
|
|
|
|
end subroutine restricted_gga_exchange_energy
|