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

88 lines
2.2 KiB
Fortran
Raw Normal View History

subroutine unrestricted_exchange_energy(rung,DFA,LDA_centered,nEns,wEns,aCC_w1,aCC_w2,nGrid,weight,nBas,P,FxHF, &
rho,drho,Ex,Cx_choice)
2019-03-13 11:07:31 +01:00
! Compute the exchange energy
implicit none
include 'parameters.h'
! Input variables
integer,intent(in) :: rung
character(len=12),intent(in) :: DFA
logical,intent(in) :: LDA_centered
2019-03-13 11:07:31 +01:00
integer,intent(in) :: nEns
double precision,intent(in) :: wEns(nEns)
double precision,intent(in) :: aCC_w1(3)
double precision,intent(in) :: aCC_w2(3)
2019-03-13 11:07:31 +01:00
integer,intent(in) :: nGrid
double precision,intent(in) :: weight(nGrid)
integer,intent(in) :: nBas
double precision,intent(in) :: P(nBas,nBas)
double precision,intent(in) :: FxHF(nBas,nBas)
double precision,intent(in) :: rho(nGrid)
2020-03-14 23:00:44 +01:00
double precision,intent(in) :: drho(ncart,nGrid)
integer,intent(in) :: Cx_choice
2019-03-13 11:07:31 +01:00
! Local variables
2021-02-12 10:41:01 +01:00
double precision :: ExLDA,ExGGA,ExMGGA,ExHF
2019-03-13 11:07:31 +01:00
double precision :: cX,aX,aC
! Output variables
double precision,intent(out) :: Ex
select case (rung)
! Hartree calculation
case(0)
Ex = 0d0
! LDA functionals
case(1)
call unrestricted_lda_exchange_energy(DFA,LDA_centered,nEns,wEns,aCC_w1,aCC_w2,nGrid,weight,&
rho,ExLDA,Cx_choice)
2019-03-13 11:07:31 +01:00
Ex = ExLDA
! GGA functionals
case(2)
2020-07-06 20:57:27 +02:00
call unrestricted_gga_exchange_energy(DFA,nEns,wEns,nGrid,weight,rho,drho,ExGGA)
2019-03-13 11:07:31 +01:00
Ex = ExGGA
2021-02-12 10:41:01 +01:00
! MGGA functionals
case(3)
call unrestricted_mgga_exchange_energy(DFA,nEns,wEns,nGrid,weight,rho,drho,ExMGGA)
Ex = ExMGGA
2019-03-13 11:07:31 +01:00
! Hybrid functionals
case(4)
cX = 0.20d0
aX = 0.72d0
aC = 0.81d0
call unrestricted_lda_exchange_energy(DFA,nEns,wEns,nGrid,weight,rho,ExLDA,Cx_choice)
2020-07-06 20:57:27 +02:00
call unrestricted_gga_exchange_energy(DFA,nEns,wEns,nGrid,weight,rho,drho,ExGGA)
call unrestricted_fock_exchange_energy(nBas,P,FxHF,ExHF)
2019-03-13 11:07:31 +01:00
Ex = ExLDA &
+ cX*(ExHF - ExLDA) &
+ aX*(ExGGA - ExLDA)
end select
2020-07-06 20:57:27 +02:00
end subroutine unrestricted_exchange_energy