4
1
mirror of https://github.com/pfloos/quack synced 2024-06-21 12:42:15 +02:00
quack/src/eDFT/unrestricted_lda_correlation_energy.f90
2020-07-02 14:27:38 +02:00

55 lines
1.2 KiB
Fortran

subroutine unrestricted_lda_correlation_energy(DFA,nEns,wEns,nGrid,weight,rho,Ec)
! Select the unrestrited version of the LDA correlation 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,nspin)
! Output variables
double precision,intent(out) :: Ec(nsp)
! Select correlation functional
select case (DFA)
! Hartree-Fock
case ('HF')
Ec(:) = 0d0
case ('UW38')
call UW38_lda_correlation_energy(nGrid,weight,rho,Ec)
! Vosko, Wilk and Nusair's functional V: Can. J. Phys. 58 (1980) 1200
case ('UVWN5')
call UVWN5_lda_correlation_energy(nGrid,weight,rho,Ec)
! Chachiyo's LDA correlation functional: Chachiyo, JCP 145 (2016) 021101
case ('UC16')
call UC16_lda_correlation_energy(nGrid,weight,rho,Ec)
case default
call print_warning('!!! LDA correlation functional not available !!!')
stop
end select
end subroutine unrestricted_lda_correlation_energy