2020-04-01 22:59:52 +02:00
|
|
|
subroutine restricted_lda_correlation_energy(DFA,LDA_centered,nEns,wEns,nGrid,weight,rho,Ec)
|
2020-03-17 11:29:29 +01:00
|
|
|
|
|
|
|
! Select LDA correlation functional
|
|
|
|
|
|
|
|
implicit none
|
|
|
|
include 'parameters.h'
|
|
|
|
|
|
|
|
! Input variables
|
|
|
|
|
2020-04-01 22:59:52 +02:00
|
|
|
logical,intent(in) :: LDA_centered
|
2020-03-17 11:29:29 +01:00
|
|
|
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) :: Ec
|
|
|
|
|
|
|
|
! Select correlation functional
|
|
|
|
|
|
|
|
select case (DFA)
|
|
|
|
|
|
|
|
! Hartree-Fock
|
|
|
|
|
|
|
|
case ('HF')
|
|
|
|
|
|
|
|
Ec = 0d0
|
|
|
|
|
2020-07-08 11:26:47 +02:00
|
|
|
case ('VWN5')
|
2020-03-17 11:29:29 +01:00
|
|
|
|
|
|
|
call RVWN5_lda_correlation_energy(nGrid,weight(:),rho(:),Ec)
|
|
|
|
|
2020-07-08 11:26:47 +02:00
|
|
|
case ('MFL20')
|
2020-03-17 11:29:29 +01:00
|
|
|
|
2020-04-01 22:59:52 +02:00
|
|
|
call RMFL20_lda_correlation_energy(LDA_centered,nEns,wEns(:),nGrid,weight(:),rho(:),Ec)
|
2020-03-17 11:29:29 +01:00
|
|
|
|
|
|
|
case default
|
|
|
|
|
|
|
|
call print_warning('!!! LDA correlation functional not available !!!')
|
|
|
|
stop
|
|
|
|
|
|
|
|
end select
|
|
|
|
|
|
|
|
end subroutine restricted_lda_correlation_energy
|