4
1
mirror of https://github.com/pfloos/quack synced 2024-06-23 13:42:19 +02:00
quack/src/eDFT/unrestricted_hybrid_correlation_energy.f90

59 lines
1.5 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
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)
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)
case('HF')
Ec(:) = 0d0
2021-02-15 17:27:06 +01:00
case('B3LYP')
2021-02-14 22:52:17 +01:00
aC = 0.81d0
2021-02-25 10:55:08 +01:00
call unrestricted_lda_correlation_energy('VWN3 ',nEns,wEns,nGrid,weight,rho,EcLDA)
2021-02-14 22:52:17 +01:00
call unrestricted_gga_correlation_energy('LYP ',nEns,wEns,nGrid,weight,rho,drho,EcGGA)
Ec(:) = EcLDA(:) + aC*(EcGGA(:) - EcLDA(:))
2021-02-15 17:27:06 +01:00
case('BHHLYP')
call unrestricted_gga_correlation_energy('LYP ',nEns,wEns,nGrid,weight,rho,drho,Ec)
2021-02-14 22:52:17 +01:00
2021-02-15 17:27:06 +01:00
case('PBE')
2021-02-14 22:52:17 +01:00
2021-02-15 17:27:06 +01:00
call unrestricted_gga_correlation_energy('PBE ',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