2021-11-24 10:25:48 +01:00
|
|
|
subroutine unrestricted_exchange_energy(rung,DFA,LDA_centered,nEns,wEns,nCC,aCC,nGrid,weight,nBas,P,FxHF, &
|
|
|
|
rho,drho,Ex,Cx_choice,doNcentered)
|
2019-03-13 11:07:31 +01:00
|
|
|
|
|
|
|
! Compute the exchange energy
|
|
|
|
|
|
|
|
implicit none
|
|
|
|
include 'parameters.h'
|
|
|
|
|
|
|
|
! Input variables
|
|
|
|
|
|
|
|
integer,intent(in) :: rung
|
2021-10-25 12:20:25 +02:00
|
|
|
integer,intent(in) :: DFA
|
2020-04-01 22:59:52 +02:00
|
|
|
logical,intent(in) :: LDA_centered
|
2019-03-13 11:07:31 +01:00
|
|
|
integer,intent(in) :: nEns
|
|
|
|
double precision,intent(in) :: wEns(nEns)
|
2021-11-24 10:25:48 +01:00
|
|
|
integer,intent(in) :: nCC
|
|
|
|
double precision,intent(in) :: aCC(nCC,nEns-1)
|
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)
|
2020-08-02 13:09:30 +02:00
|
|
|
integer,intent(in) :: Cx_choice
|
2021-11-24 10:25:48 +01:00
|
|
|
logical,intent(in) :: doNcentered
|
2019-03-13 11:07:31 +01:00
|
|
|
|
|
|
|
! Local variables
|
|
|
|
|
|
|
|
! Output variables
|
|
|
|
|
|
|
|
double precision,intent(out) :: Ex
|
|
|
|
|
|
|
|
select case (rung)
|
|
|
|
|
|
|
|
! Hartree calculation
|
|
|
|
|
|
|
|
case(0)
|
|
|
|
|
|
|
|
Ex = 0d0
|
|
|
|
|
|
|
|
! LDA functionals
|
|
|
|
|
|
|
|
case(1)
|
|
|
|
|
2021-11-24 10:25:48 +01:00
|
|
|
call unrestricted_lda_exchange_energy(DFA,LDA_centered,nEns,wEns,nCC,aCC,nGrid,weight,&
|
|
|
|
rho,Ex,Cx_choice,doNcentered)
|
2019-03-13 11:07:31 +01:00
|
|
|
|
|
|
|
! GGA functionals
|
|
|
|
|
|
|
|
case(2)
|
|
|
|
|
2021-02-14 21:54:10 +01:00
|
|
|
call unrestricted_gga_exchange_energy(DFA,nEns,wEns,nGrid,weight,rho,drho,Ex)
|
2019-03-13 11:07:31 +01:00
|
|
|
|
2021-02-12 10:41:01 +01:00
|
|
|
! MGGA functionals
|
|
|
|
|
|
|
|
case(3)
|
|
|
|
|
2021-02-14 21:54:10 +01:00
|
|
|
call unrestricted_mgga_exchange_energy(DFA,nEns,wEns,nGrid,weight,rho,drho,Ex)
|
2021-02-12 10:41:01 +01:00
|
|
|
|
2019-03-13 11:07:31 +01:00
|
|
|
! Hybrid functionals
|
|
|
|
|
|
|
|
case(4)
|
|
|
|
|
2021-11-24 10:25:48 +01:00
|
|
|
call unrestricted_hybrid_exchange_energy(DFA,LDA_centered,nEns,wEns,nCC,aCC,nGrid,weight,nBas,P,FxHF, &
|
2021-02-14 21:54:10 +01:00
|
|
|
rho,drho,Ex,Cx_choice)
|
2019-03-13 11:07:31 +01:00
|
|
|
|
|
|
|
end select
|
|
|
|
|
2020-07-06 20:57:27 +02:00
|
|
|
end subroutine unrestricted_exchange_energy
|