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

50 lines
1.0 KiB
Fortran
Raw Normal View History

2021-02-11 22:32:48 +01:00
subroutine UPBE_gga_exchange_energy(nGrid,weight,rho,drho,Ex)
! Compute PBE GGA exchange energy
implicit none
include 'parameters.h'
! Input variables
integer,intent(in) :: nGrid
double precision,intent(in) :: weight(nGrid)
double precision,intent(in) :: rho(nGrid)
double precision,intent(in) :: drho(3,nGrid)
! Local variables
integer :: iG
2021-02-15 17:27:06 +01:00
double precision :: mupbe,kappa
2021-02-12 10:41:01 +01:00
double precision :: r,g,s2
2021-02-11 22:32:48 +01:00
! Output variables
double precision :: Ex
! Coefficients for PBE exchange functional
2021-02-12 10:41:01 +01:00
mupbe = ((1d0/2d0**(1d0/3d0))/(2d0*(3d0*pi**2)**(1d0/3d0)))**2*0.21951d0
2021-02-11 22:32:48 +01:00
kappa = 0.804d0
! Compute GGA exchange energy
Ex = 0d0
do iG=1,nGrid
r = max(0d0,rho(iG))
if(r > threshold) then
g = drho(1,iG)**2 + drho(2,iG)**2 + drho(3,iG)**2
2021-02-12 10:41:01 +01:00
s2 = g/r**(8d0/3d0)
2021-02-11 22:32:48 +01:00
2021-02-15 17:27:06 +01:00
Ex = Ex + weight(iG)*CxLSDA*r**(4d0/3d0)*(1d0 + kappa - kappa/(1d0 + mupbe*s2/kappa))
2021-02-11 22:32:48 +01:00
end if
end do
end subroutine UPBE_gga_exchange_energy