4
1
mirror of https://github.com/pfloos/quack synced 2024-07-11 22:03:50 +02:00
quack/src/eDFT/unrestricted_gga_exchange_energy.f90

45 lines
992 B
Fortran
Raw Normal View History

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
2021-10-25 12:20:25 +02:00
integer,intent(in) :: DFA
2019-03-13 11:07:31 +01:00
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)
2021-10-25 12:20:25 +02:00
double precision,intent(in) :: drho(ncart,nGrid)
2019-03-13 11:07:31 +01:00
! Output variables
double precision :: Ex
select case (DFA)
2021-10-25 12:20:25 +02:00
case (1)
2019-03-13 11:07:31 +01:00
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
2021-10-25 12:20:25 +02:00
case (2)
2019-03-13 11:07:31 +01:00
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-10-25 12:20:25 +02:00
case (3)
2021-02-12 10:41:01 +01:00
call UPBE_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
2020-07-06 20:57:27 +02:00
end subroutine unrestricted_gga_exchange_energy