2020-07-06 20:57:27 +02:00
|
|
|
subroutine unrestricted_gga_exchange_energy(DFA,nEns,wEns,nGrid,weight,rho,drho,Ex)
|
2019-03-13 11:07:31 +01:00
|
|
|
|
|
|
|
! 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-07-06 20:57:27 +02:00
|
|
|
call UG96_gga_exchange_energy(nGrid,weight,rho,drho,Ex)
|
2019-03-13 11:07:31 +01:00
|
|
|
|
|
|
|
case ('B88')
|
|
|
|
|
2020-07-06 20:57:27 +02:00
|
|
|
call UB88_gga_exchange_energy(nGrid,weight,rho,drho,Ex)
|
2019-03-13 11:07:31 +01:00
|
|
|
|
2021-02-12 10:41:01 +01:00
|
|
|
case ('PBE')
|
|
|
|
|
|
|
|
call UPBE_gga_exchange_energy(nGrid,weight,rho,drho,Ex)
|
|
|
|
|
2019-03-13 11:07:31 +01:00
|
|
|
case default
|
|
|
|
|
2020-04-06 22:27:13 +02:00
|
|
|
call print_warning('!!! GGA exchange energy 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_energy
|