2020-03-16 23:28:56 +01:00
|
|
|
subroutine exchange_individual_energy(rung,DFA,nEns,wEns,nGrid,weight,nBas, &
|
|
|
|
ERI,P,FxHF,rhow,drhow,rho,drho,Ex)
|
2020-03-16 22:08:04 +01:00
|
|
|
|
2020-03-16 23:28:56 +01:00
|
|
|
! Compute the exchange individual energy
|
2020-03-16 22:08:04 +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)
|
2020-03-16 23:28:56 +01:00
|
|
|
integer,intent(in) :: nBas
|
|
|
|
double precision,intent(in) :: ERI(nBas,nBas,nBas,nBas)
|
|
|
|
double precision,intent(in) :: P(nBas,nBas)
|
|
|
|
double precision,intent(in) :: FxHF(nBas,nBas)
|
2020-03-16 22:08:04 +01:00
|
|
|
double precision,intent(in) :: rhow(nGrid)
|
|
|
|
double precision,intent(in) :: drhow(ncart,nGrid)
|
|
|
|
double precision,intent(in) :: rho(nGrid)
|
|
|
|
double precision,intent(in) :: drho(ncart,nGrid)
|
|
|
|
|
|
|
|
! Local variables
|
|
|
|
|
|
|
|
double precision :: ExLDA
|
|
|
|
double precision :: ExHF
|
|
|
|
|
|
|
|
! Output variables
|
|
|
|
|
|
|
|
double precision,intent(out) :: Ex
|
|
|
|
|
|
|
|
select case (rung)
|
|
|
|
|
|
|
|
! Hartree calculation
|
|
|
|
|
|
|
|
case(0)
|
|
|
|
|
|
|
|
Ex = 0d0
|
|
|
|
|
|
|
|
! LDA functionals
|
|
|
|
|
|
|
|
case(1)
|
|
|
|
|
2020-03-16 23:28:56 +01:00
|
|
|
call lda_exchange_individual_energy(DFA,nEns,wEns,nGrid,weight,rhow,rho,ExLDA)
|
|
|
|
|
|
|
|
Ex = ExLDA
|
2020-03-16 22:08:04 +01:00
|
|
|
|
|
|
|
! GGA functionals
|
|
|
|
|
|
|
|
case(2)
|
|
|
|
|
|
|
|
call print_warning('!!! Individual energies NYI for GGAs !!!')
|
|
|
|
stop
|
|
|
|
|
|
|
|
! Hybrid functionals
|
|
|
|
|
|
|
|
case(4)
|
|
|
|
|
2020-03-16 23:28:56 +01:00
|
|
|
call print_warning('!!! Individual energies NYI for Hybrids !!!')
|
2020-03-16 22:08:04 +01:00
|
|
|
stop
|
|
|
|
|
|
|
|
! Hartree-Fock calculation
|
|
|
|
|
|
|
|
case(666)
|
|
|
|
|
2020-03-16 23:28:56 +01:00
|
|
|
call fock_exchange_potential(nBas,P,ERI,FxHF)
|
|
|
|
call fock_exchange_energy(nBas,P,FxHF,ExHF)
|
|
|
|
|
2020-03-16 22:08:04 +01:00
|
|
|
Ex = ExHF
|
|
|
|
|
|
|
|
end select
|
|
|
|
|
|
|
|
end subroutine exchange_individual_energy
|