4
1
mirror of https://github.com/pfloos/quack synced 2024-06-24 14:12:19 +02:00
quack/src/eDFT/lda_correlation_energy.f90

53 lines
1.1 KiB
Fortran

subroutine 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
integer,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)
case (1)
call W38_lda_correlation_energy(nGrid,weight,rho,Ec)
case (2)
call PW92_lda_correlation_energy(nGrid,weight,rho,Ec)
case (3)
call VWN3_lda_correlation_energy(nGrid,weight,rho,Ec)
case (4)
call VWN5_lda_correlation_energy(nGrid,weight,rho,Ec)
case (5)
call C16_lda_correlation_energy(nGrid,weight,rho,Ec)
case default
call print_warning('!!! LDA correlation functional not available !!!')
stop
end select
end subroutine lda_correlation_energy