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

53 lines
1.1 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
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 UW38_lda_correlation_energy(nGrid,weight,rho,Ec)
case (2)
call UPW92_lda_correlation_energy(nGrid,weight,rho,Ec)
case (3)
call UVWN3_lda_correlation_energy(nGrid,weight,rho,Ec)
case (4)
call UVWN5_lda_correlation_energy(nGrid,weight,rho,Ec)
case (5)
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