4
1
mirror of https://github.com/pfloos/quack synced 2024-06-30 00:44:31 +02:00
quack/src/eDFT/CC_lda_exchange_individual_energy.f90

132 lines
2.7 KiB
Fortran
Raw Normal View History

2022-01-07 09:13:38 +01:00
subroutine CC_lda_exchange_individual_energy(nEns,wEns,nCC,aCC,nGrid,weight,rhow,rho,Cx_choice,doNcentered,LZx,Ex)
2021-12-06 10:03:28 +01:00
2020-07-02 14:27:38 +02:00
! 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)
integer,intent(in) :: nCC
double precision,intent(in) :: aCC(nCC,nEns-1)
2020-07-02 14:27:38 +02:00
integer,intent(in) :: nGrid
double precision,intent(in) :: weight(nGrid)
2021-12-06 10:03:28 +01:00
double precision,intent(in) :: rhow(nGrid,nspin)
double precision,intent(in) :: rho(nGrid,nspin,nEns)
integer,intent(in) :: Cx_choice
2020-09-29 11:47:18 +02:00
logical,intent(in) :: doNcentered
2021-12-06 10:03:28 +01:00
2020-07-02 14:27:38 +02:00
! Local variables
2021-12-06 10:03:28 +01:00
integer :: iG,iEns,ispin
double precision :: r,rI
double precision :: e,dedr
2020-07-02 14:27:38 +02:00
2021-11-25 17:45:48 +01:00
double precision :: a1,b1,c1,d1,w1
double precision :: a2,b2,c2,d2,w2
2020-07-02 14:27:38 +02:00
double precision :: Fx1,Fx2,Cx
! Output variables
2021-12-06 15:27:39 +01:00
double precision,intent(out) :: LZx(nspin)
double precision,intent(out) :: Ex(nspin,nEns)
2020-07-02 14:27:38 +02:00
2021-11-25 17:45:48 +01:00
! Defining enhancements factor for weight-dependent functionals
if(doNcentered) then
2021-11-24 11:53:25 +01:00
! Parameters for first state
2020-07-02 14:27:38 +02:00
2021-11-25 17:45:48 +01:00
a1 = aCC(1,1)
b1 = aCC(2,1)
c1 = aCC(3,1)
d1 = aCC(4,1)
2020-07-02 14:27:38 +02:00
2021-11-24 11:53:25 +01:00
! Parameters for second state
2020-07-02 14:27:38 +02:00
2021-11-25 17:45:48 +01:00
a2 = aCC(1,2)
b2 = aCC(2,2)
c2 = aCC(3,2)
d2 = aCC(4,2)
2020-07-02 14:27:38 +02:00
2021-11-25 17:45:48 +01:00
w1 = wEns(2)
Fx1 = 1d0 + a1*w1 + b1*w1**2 + c1*w1**3 + d1*w1**4
2021-11-25 17:45:48 +01:00
w2 = wEns(3)
Fx2 = 1d0 + a2*w2 + b2*w2**2 + c2*w2**3 + d2*w2**4
else
2021-11-25 17:45:48 +01:00
! Parameters for first state
a1 = aCC(1,1)
b1 = aCC(2,1)
c1 = aCC(3,1)
! Parameters for second state
a2 = aCC(1,2)
b2 = aCC(2,2)
c2 = aCC(3,2)
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)
endif
2020-07-02 14:27:38 +02:00
select case (Cx_choice)
2020-09-29 11:47:18 +02:00
case(1)
2021-02-15 17:27:06 +01:00
Cx = CxLSDA*Fx1
2020-09-29 11:47:18 +02:00
case(2)
2021-02-15 17:27:06 +01:00
Cx = CxLSDA*Fx2
2020-09-29 11:47:18 +02:00
case(3)
2021-02-15 17:27:06 +01:00
Cx = CxLSDA*Fx2*Fx1
2021-02-15 17:27:06 +01:00
case default
Cx = CxLSDA
2021-02-15 17:27:06 +01:00
end select
2020-07-02 14:27:38 +02:00
! Compute LDA exchange matrix in the AO basis
2021-12-06 10:03:28 +01:00
Ex(:,:) = 0d0
2021-12-06 15:27:39 +01:00
LZx(:) = 0d0
2021-12-06 10:03:28 +01:00
do ispin=1,nspin
2021-12-06 10:03:28 +01:00
do iG=1,nGrid
2020-07-02 14:27:38 +02:00
2021-12-06 10:03:28 +01:00
r = max(0d0,rhow(iG,ispin))
2020-07-02 14:27:38 +02:00
2021-12-06 15:27:39 +01:00
if(r > threshold) then
2021-12-06 10:03:28 +01:00
2021-12-06 15:27:39 +01:00
e = Cx*r**(+1d0/3d0)
dedr = 1d0/3d0*Cx*r**(-2d0/3d0)
2021-12-06 10:03:28 +01:00
2021-12-06 15:27:39 +01:00
LZx(ispin) = LZx(ispin) - weight(iG)*dedr*r*r
2021-12-06 10:03:28 +01:00
2021-12-06 15:27:39 +01:00
do iEns=1,nEns
2021-12-06 10:03:28 +01:00
2021-12-06 15:27:39 +01:00
rI = max(0d0,rho(iG,ispin,iEns))
2021-12-06 10:03:28 +01:00
2021-12-06 15:27:39 +01:00
if(rI > threshold) Ex(ispin,iEns) = Ex(ispin,iEns) + weight(iG)*(e+dedr*r)*rI
2021-12-06 10:03:28 +01:00
2021-12-06 15:27:39 +01:00
end do
2021-12-06 10:03:28 +01:00
endif
2020-07-02 14:27:38 +02:00
2021-12-06 10:03:28 +01:00
enddo
2020-07-02 14:27:38 +02:00
enddo
2022-01-07 09:13:38 +01:00
end subroutine CC_lda_exchange_individual_energy