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

43 lines
930 B
Fortran
Raw Normal View History

2019-03-13 11:07:31 +01:00
subroutine lda_exchange_energy(DFA,nEns,wEns,nGrid,weight,rho,Ex)
! Select LDA exchange functional
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)
! Output variables
double precision,intent(out) :: Ex
! Select correlation functional
select case (DFA)
! Slater's LDA correlation functional: Slater, Phys. Rev. 81 (1951) 385
case ('S51')
call S51_lda_exchange_energy(nGrid,weight,rho,Ex)
2020-03-15 08:23:01 +01:00
case ('MFL20')
call RMFL20_lda_exchange_energy(nEns,wEns,nGrid,weight,rho,Ex)
2019-03-13 11:07:31 +01:00
case default
call print_warning('!!! LDA exchange functional not available !!!')
stop
end select
end subroutine lda_exchange_energy