2020-04-01 22:59:52 +02:00
|
|
|
subroutine restricted_correlation_potential(rung,DFA,LDA_centered,nEns,wEns,nGrid,weight,nBas,AO,dAO,rho,drho,Fc)
|
2020-03-15 16:30:18 +01:00
|
|
|
|
|
|
|
! Compute the correlation potential
|
|
|
|
|
|
|
|
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-15 16:30:18 +01:00
|
|
|
integer,intent(in) :: nEns
|
|
|
|
double precision,intent(in) :: wEns(nEns)
|
|
|
|
integer,intent(in) :: nGrid
|
|
|
|
double precision,intent(in) :: weight(nGrid)
|
|
|
|
integer,intent(in) :: nBas
|
|
|
|
double precision,intent(in) :: AO(nBas,nGrid)
|
|
|
|
double precision,intent(in) :: dAO(ncart,nBas,nGrid)
|
|
|
|
double precision,intent(in) :: rho(nGrid)
|
|
|
|
double precision,intent(in) :: drho(ncart,nGrid)
|
|
|
|
|
|
|
|
! Local variables
|
|
|
|
|
|
|
|
double precision,allocatable :: FcLDA(:,:)
|
|
|
|
|
|
|
|
! Output variables
|
|
|
|
|
|
|
|
double precision,intent(out) :: Fc(nBas,nBas)
|
|
|
|
|
|
|
|
! Memory allocation
|
|
|
|
|
|
|
|
select case (rung)
|
|
|
|
|
|
|
|
! Hartree calculation
|
|
|
|
|
|
|
|
case(0)
|
|
|
|
|
|
|
|
Fc(:,:) = 0d0
|
|
|
|
|
|
|
|
! LDA functionals
|
|
|
|
|
|
|
|
case(1)
|
|
|
|
|
2020-04-01 22:59:52 +02:00
|
|
|
call restricted_lda_correlation_potential(DFA,LDA_centered,nEns,wEns(:),nGrid,weight(:),nBas,AO(:,:),rho(:),Fc(:,:))
|
2020-03-15 16:30:18 +01:00
|
|
|
|
|
|
|
! GGA functionals
|
|
|
|
|
|
|
|
case(2)
|
|
|
|
|
2020-03-16 23:28:56 +01:00
|
|
|
call print_warning('!!! restricted correlation potentials NYI for GGAs !!!')
|
|
|
|
stop
|
2020-03-15 16:30:18 +01:00
|
|
|
|
|
|
|
! Hybrid functionals
|
|
|
|
|
|
|
|
case(4)
|
|
|
|
|
2020-03-16 23:28:56 +01:00
|
|
|
call print_warning('!!! restricted correlation potentials NYI for Hybrids !!!')
|
|
|
|
stop
|
2020-03-15 16:30:18 +01:00
|
|
|
|
|
|
|
! Hartree-Fock calculation
|
|
|
|
|
|
|
|
case(666)
|
|
|
|
|
|
|
|
Fc(:,:) = 0d0
|
|
|
|
|
|
|
|
end select
|
|
|
|
|
|
|
|
end subroutine restricted_correlation_potential
|