2020-07-06 20:57:27 +02:00
|
|
|
subroutine restricted_exchange_individual_energy(rung,DFA,LDA_centered,nEns,wEns,aCC_w1,aCC_w2,nGrid,weight,nBas, &
|
2020-08-02 13:09:30 +02:00
|
|
|
ERI,Pw,P,rhow,drhow,rho,drho,Ex,Cx_choice)
|
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
|
2020-04-01 22:59:52 +02:00
|
|
|
logical,intent(in) :: LDA_centered
|
2020-03-16 22:08:04 +01:00
|
|
|
integer,intent(in) :: nEns
|
|
|
|
double precision,intent(in) :: wEns(nEns)
|
2020-07-02 18:49:42 +02:00
|
|
|
double precision,intent(in) :: aCC_w1(3)
|
|
|
|
double precision,intent(in) :: aCC_w2(3)
|
2020-03-16 22:08:04 +01:00
|
|
|
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)
|
2020-04-01 22:59:52 +02:00
|
|
|
double precision,intent(in) :: Pw(nBas,nBas)
|
2020-03-16 23:28:56 +01:00
|
|
|
double precision,intent(in) :: P(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)
|
2020-08-02 13:09:30 +02:00
|
|
|
integer,intent(in) :: Cx_choice
|
2020-03-16 22:08:04 +01:00
|
|
|
|
|
|
|
! Local variables
|
|
|
|
|
|
|
|
double precision :: ExLDA
|
2020-04-06 22:27:13 +02:00
|
|
|
double precision :: ExGGA
|
2020-03-16 22:08:04 +01:00
|
|
|
double precision :: ExHF
|
|
|
|
|
|
|
|
! Output variables
|
|
|
|
|
|
|
|
double precision,intent(out) :: Ex
|
|
|
|
|
|
|
|
select case (rung)
|
|
|
|
|
|
|
|
! Hartree calculation
|
|
|
|
|
|
|
|
case(0)
|
|
|
|
|
|
|
|
Ex = 0d0
|
|
|
|
|
|
|
|
! LDA functionals
|
|
|
|
|
|
|
|
case(1)
|
|
|
|
|
2020-08-02 13:09:30 +02:00
|
|
|
call restricted_lda_exchange_individual_energy(DFA,LDA_centered,nEns,wEns,aCC_w1,aCC_w2,nGrid,weight,rhow,rho,ExLDA,Cx_choice)
|
2020-03-16 23:28:56 +01:00
|
|
|
|
|
|
|
Ex = ExLDA
|
2020-03-16 22:08:04 +01:00
|
|
|
|
|
|
|
! GGA functionals
|
|
|
|
|
|
|
|
case(2)
|
|
|
|
|
2020-07-06 20:57:27 +02:00
|
|
|
call restricted_gga_exchange_individual_energy(DFA,nEns,wEns,nGrid,weight,rhow,drhow,rho,drho,ExGGA)
|
2020-04-06 22:27:13 +02:00
|
|
|
|
|
|
|
Ex = ExGGA
|
2020-03-16 22:08:04 +01:00
|
|
|
|
|
|
|
! 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-07-06 20:57:27 +02:00
|
|
|
call restricted_fock_exchange_individual_energy(nBas,Pw,P,ERI,ExHF)
|
2020-03-16 23:28:56 +01:00
|
|
|
|
2020-03-16 22:08:04 +01:00
|
|
|
Ex = ExHF
|
|
|
|
|
|
|
|
end select
|
|
|
|
|
2020-07-06 20:57:27 +02:00
|
|
|
end subroutine restricted_exchange_individual_energy
|