mirror of
https://github.com/pfloos/quack
synced 2024-11-13 01:23:59 +01:00
115 lines
2.5 KiB
Fortran
115 lines
2.5 KiB
Fortran
subroutine UCC_lda_exchange_individual_energy(nEns,wEns,aCC_w1,aCC_w2,nGrid,weight,rhow,rho,Cx_choice,doNcentered,kappa,Ex)
|
|
|
|
! Compute the unrestricted version of the curvature-corrected exchange functional
|
|
|
|
implicit none
|
|
include 'parameters.h'
|
|
|
|
! Input variables
|
|
|
|
integer,intent(in) :: nEns
|
|
double precision,intent(in) :: wEns(nEns)
|
|
double precision,intent(in) :: aCC_w1(3)
|
|
double precision,intent(in) :: aCC_w2(3)
|
|
integer,intent(in) :: nGrid
|
|
double precision,intent(in) :: weight(nGrid)
|
|
double precision,intent(in) :: rhow(nGrid)
|
|
double precision,intent(in) :: rho(nGrid)
|
|
integer,intent(in) :: Cx_choice
|
|
logical,intent(in) :: doNcentered
|
|
double precision,intent(in) :: kappa(nEns)
|
|
|
|
! Local variables
|
|
|
|
integer :: iG
|
|
double precision :: r,rI,alpha
|
|
double precision :: e_p,dedr
|
|
double precision :: nEli,nElw
|
|
|
|
double precision :: a1,b1,c1,w1
|
|
double precision :: a2,b2,c2,w2
|
|
double precision :: Fx1,Fx2,Cx
|
|
|
|
! Output variables
|
|
|
|
double precision,intent(out) :: Ex
|
|
|
|
! External variable
|
|
|
|
double precision,external :: electron_number
|
|
|
|
|
|
! Parameters for N -> N-1
|
|
|
|
a1 = aCC_w1(1)
|
|
b1 = aCC_w1(2)
|
|
c1 = aCC_w1(3)
|
|
|
|
! Parameters for N -> N+1
|
|
|
|
a2 = aCC_w2(1)
|
|
b2 = aCC_w2(2)
|
|
c2 = aCC_w2(3)
|
|
|
|
! Cx coefficient for unrestricted Slater LDA exchange
|
|
|
|
alpha = -(3d0/2d0)*(3d0/(4d0*pi))**(1d0/3d0)
|
|
|
|
w1 = wEns(2)
|
|
Fx1 = 1d0 - w1*(1d0 - w1)*(a1 + b1*(w1 - 0.5d0) + c1*(w1 - 0.5d0)**2)
|
|
|
|
w2 = wEns(3)
|
|
Fx2 = 1d0 - w2*(1d0 - w2)*(a2 + b2*(w2 - 0.5d0) + c2*(w2 - 0.5d0)**2)
|
|
|
|
select case (Cx_choice)
|
|
|
|
case(1)
|
|
Cx = alpha*Fx1
|
|
|
|
case(2)
|
|
Cx = alpha*Fx2
|
|
|
|
case(3)
|
|
Cx = alpha*Fx2*Fx1
|
|
|
|
end select
|
|
|
|
nEli = electron_number(nGrid,weight,rho)
|
|
|
|
nElw = electron_number(nGrid,weight,rhow)
|
|
|
|
|
|
! Compute LDA exchange matrix in the AO basis
|
|
|
|
Ex = 0d0
|
|
do iG=1,nGrid
|
|
|
|
r = max(0d0,rhow(iG))
|
|
rI = max(0d0,rho(iG))
|
|
|
|
if(r > threshold) then
|
|
|
|
e_p = Cx*r**(1d0/3d0)
|
|
dedr = 1d0/3d0*Cx*r**(-2d0/3d0)
|
|
|
|
if (doNcentered) then
|
|
Ex = Ex - weight(iG)*dedr*r*r*(nEli/nElw)
|
|
else
|
|
Ex = Ex - weight(iG)*dedr*r*r
|
|
end if
|
|
|
|
if(rI > threshold) then
|
|
|
|
if (doNcentered) then
|
|
Ex = Ex + weight(iG)*(e_p*rI + dedr*r*rI)
|
|
else
|
|
Ex = Ex + weight(iG)*((nEli/nElw)*e_p*rI + dedr*r*rI)
|
|
end if
|
|
endif
|
|
|
|
endif
|
|
|
|
enddo
|
|
|
|
end subroutine UCC_lda_exchange_individual_energy
|