4
1
mirror of https://github.com/pfloos/quack synced 2024-06-30 00:44:31 +02:00
quack/src/eDFT/unrestricted_hybrid_correlation_energy.f90

59 lines
1.4 KiB
Fortran
Raw Normal View History

2021-02-14 22:52:17 +01:00
subroutine unrestricted_hybrid_correlation_energy(DFA,nEns,wEns,nGrid,weight,rho,drho,Ec)
! Compute the unrestricted version of the correlation energy for hybrid functionals
implicit none
include 'parameters.h'
! Input variables
2021-10-25 12:20:25 +02:00
integer,intent(in) :: DFA
2021-02-14 22:52:17 +01:00
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)
double precision,intent(in) :: drho(ncart,nGrid,nspin)
! Local variables
double precision :: EcLDA(nsp)
double precision :: EcGGA(nsp)
double precision :: aC
! Output variables
double precision,intent(out) :: Ec(nsp)
select case (DFA)
2021-10-25 12:20:25 +02:00
case(1)
2021-02-14 22:52:17 +01:00
Ec(:) = 0d0
2021-10-25 12:20:25 +02:00
case(2)
2021-02-14 22:52:17 +01:00
aC = 0.81d0
2021-10-25 12:20:25 +02:00
call unrestricted_lda_correlation_energy(3,nEns,wEns,nGrid,weight,rho,EcLDA)
call unrestricted_gga_correlation_energy(1,nEns,wEns,nGrid,weight,rho,drho,EcGGA)
2021-02-14 22:52:17 +01:00
Ec(:) = EcLDA(:) + aC*(EcGGA(:) - EcLDA(:))
2021-10-25 12:20:25 +02:00
case(3)
2021-02-15 17:27:06 +01:00
2021-10-25 12:20:25 +02:00
call unrestricted_gga_correlation_energy(1,nEns,wEns,nGrid,weight,rho,drho,Ec)
2021-02-14 22:52:17 +01:00
2021-10-25 12:20:25 +02:00
case(4)
2021-02-14 22:52:17 +01:00
2021-10-25 12:20:25 +02:00
call unrestricted_gga_correlation_energy(2,nEns,wEns,nGrid,weight,rho,drho,Ec)
2021-02-14 22:52:17 +01:00
case default
call print_warning('!!! Hybrid correlation energy not available !!!')
stop
end select
end subroutine unrestricted_hybrid_correlation_energy