2020-07-02 14:27:38 +02:00
|
|
|
subroutine unrestricted_lda_correlation_energy(DFA,nEns,wEns,nGrid,weight,rho,Ec)
|
2019-03-13 11:07:31 +01:00
|
|
|
|
2020-07-02 14:27:38 +02:00
|
|
|
! Select the unrestrited version of the LDA correlation functional
|
2019-03-13 11:07:31 +01:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2020-07-02 14:27:38 +02:00
|
|
|
case ('UW38')
|
2019-03-13 11:07:31 +01:00
|
|
|
|
2020-07-02 14:27:38 +02:00
|
|
|
call UW38_lda_correlation_energy(nGrid,weight,rho,Ec)
|
2019-03-13 11:07:31 +01:00
|
|
|
|
|
|
|
! Vosko, Wilk and Nusair's functional V: Can. J. Phys. 58 (1980) 1200
|
|
|
|
|
2020-07-02 14:27:38 +02:00
|
|
|
case ('UVWN5')
|
2019-03-13 11:07:31 +01:00
|
|
|
|
2020-07-02 14:27:38 +02:00
|
|
|
call UVWN5_lda_correlation_energy(nGrid,weight,rho,Ec)
|
2019-03-13 11:07:31 +01:00
|
|
|
|
|
|
|
! Chachiyo's LDA correlation functional: Chachiyo, JCP 145 (2016) 021101
|
|
|
|
|
2020-07-02 14:27:38 +02:00
|
|
|
case ('UC16')
|
2019-03-13 11:07:31 +01:00
|
|
|
|
2020-07-02 14:27:38 +02:00
|
|
|
call UC16_lda_correlation_energy(nGrid,weight,rho,Ec)
|
2019-03-13 11:07:31 +01:00
|
|
|
|
|
|
|
case default
|
|
|
|
|
|
|
|
call print_warning('!!! LDA correlation functional not available !!!')
|
|
|
|
stop
|
|
|
|
|
|
|
|
end select
|
|
|
|
|
2020-07-02 14:27:38 +02:00
|
|
|
end subroutine unrestricted_lda_correlation_energy
|