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

69 lines
1.5 KiB
Fortran
Raw Normal View History

2020-07-02 14:27:38 +02:00
subroutine unrestricted_correlation_energy(rung,DFA,nEns,wEns,nGrid,weight,rho,drho,Ec)
2019-03-13 11:07:31 +01:00
2020-07-02 14:27:38 +02:00
! Compute the unrestricted version of the correlation energy
2019-03-13 11:07:31 +01:00
implicit none
include 'parameters.h'
! Input variables
integer,intent(in) :: rung
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 (rung)
! Hartree calculation
case(0)
Ec(:) = 0d0
! LDA functionals
case(1)
2020-07-06 15:42:21 +02:00
call unrestricted_lda_correlation_energy(DFA,nEns,wEns,nGrid,weight,rho,Ec)
2019-03-13 11:07:31 +01:00
! GGA functionals
case(2)
2020-07-06 15:42:21 +02:00
call unrestricted_gga_correlation_energy(DFA,nEns,wEns,nGrid,weight,rho,drho,Ec)
2019-03-13 11:07:31 +01:00
! Hybrid functionals
case(4)
aC = 0.81d0
2020-07-06 15:42:21 +02:00
call unrestricted_lda_correlation_energy(DFA,nEns,wEns,nGrid,weight,rho,EcLDA)
call unrestricted_gga_correlation_energy(DFA,nEns,wEns,nGrid,weight,rho,drho,EcGGA)
2020-07-02 14:27:38 +02:00
Ec(:) = EcLDA(:) + aC*(EcGGA(:) - EcLDA(:))
2019-03-13 11:07:31 +01:00
! Hartree-Fock calculation
case(666)
Ec(:) = 0d0
end select
2020-07-02 14:27:38 +02:00
end subroutine unrestricted_correlation_energy