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

54 lines
1.2 KiB
Fortran
Raw Normal View History

subroutine gga_exchange_energy(DFA,nEns,wEns,nCC,aCC,nGrid,weight,rho,drho,Cx_choice,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) :: nCC
double precision,intent(in) :: aCC(nCC,nEns-1)
2019-03-13 11:07:31 +01:00
integer,intent(in) :: nGrid
double precision,intent(in) :: weight(nGrid)
double precision,intent(in) :: rho(nGrid)
integer,intent(in) :: Cx_choice
2021-10-25 12:20:25 +02:00
double precision,intent(in) :: drho(ncart,nGrid)
2019-03-13 11:07:31 +01:00
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
2022-01-07 09:13:38 +01:00
call G96_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
2022-01-07 09:13:38 +01:00
call B88_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
2022-01-07 09:13:38 +01:00
call PBE_gga_exchange_energy(nGrid,weight,rho,drho,Ex)
2021-02-12 10:41:01 +01:00
case (4)
call CC_B88_gga_exchange_energy(nEns,wEns,nCC,aCC,nGrid,weight,rho,drho,&
Cx_choice,Ex)
2021-02-12 10:41:01 +01:00
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
2022-01-07 09:13:38 +01:00
end subroutine gga_exchange_energy