2020-07-02 14:27:38 +02:00
|
|
|
subroutine unrestricted_lda_correlation_potential(DFA,nEns,wEns,nGrid,weight,nBas,AO,rho,Fc)
|
2019-03-13 11:07:31 +01:00
|
|
|
|
|
|
|
! Select LDA correlation potential
|
|
|
|
|
|
|
|
implicit none
|
|
|
|
include 'parameters.h'
|
|
|
|
|
|
|
|
! Input variables
|
|
|
|
|
|
|
|
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)
|
|
|
|
integer,intent(in) :: nBas
|
|
|
|
double precision,intent(in) :: AO(nBas,nGrid)
|
|
|
|
double precision,intent(in) :: rho(nGrid,nspin)
|
|
|
|
|
|
|
|
! Output variables
|
|
|
|
|
|
|
|
double precision,intent(out) :: Fc(nBas,nBas,nspin)
|
|
|
|
|
|
|
|
! Select correlation functional
|
|
|
|
|
|
|
|
select case (DFA)
|
|
|
|
|
|
|
|
! Hartree-Fock
|
|
|
|
|
|
|
|
case ('HF')
|
|
|
|
|
|
|
|
Fc(:,:,:) = 0d0
|
|
|
|
|
2020-07-08 11:26:47 +02:00
|
|
|
case ('W38')
|
2019-03-13 11:07:31 +01:00
|
|
|
|
2020-07-02 14:27:38 +02:00
|
|
|
call UW38_lda_correlation_potential(nGrid,weight(:),nBas,AO(:,:),rho(:,:),Fc(:,:,:))
|
2019-03-13 11:07:31 +01:00
|
|
|
|
2021-02-25 15:02:16 +01:00
|
|
|
case ('PW92')
|
|
|
|
|
|
|
|
call UPW92_lda_correlation_potential(nGrid,weight(:),nBas,AO(:,:),rho(:,:),Fc(:,:,:))
|
2019-03-13 11:07:31 +01:00
|
|
|
|
2021-02-25 10:55:08 +01:00
|
|
|
case ('VWN3')
|
|
|
|
|
|
|
|
call UVWN3_lda_correlation_potential(nGrid,weight(:),nBas,AO(:,:),rho(:,:),Fc(:,:,:))
|
|
|
|
|
2020-07-08 11:26:47 +02:00
|
|
|
case ('VWN5')
|
2019-03-13 11:07:31 +01:00
|
|
|
|
2020-07-02 14:27:38 +02:00
|
|
|
call UVWN5_lda_correlation_potential(nGrid,weight(:),nBas,AO(:,:),rho(:,:),Fc(:,:,:))
|
2019-03-13 11:07:31 +01:00
|
|
|
|
2020-07-08 11:26:47 +02:00
|
|
|
case ('C16')
|
2019-03-13 11:07:31 +01:00
|
|
|
|
2020-07-02 14:27:38 +02:00
|
|
|
call UC16_lda_correlation_potential(nGrid,weight(:),nBas,AO(:,:),rho(:,:),Fc(:,:,:))
|
2019-03-13 11:07:31 +01:00
|
|
|
|
|
|
|
case default
|
|
|
|
|
|
|
|
call print_warning('!!! LDA correlation functional not available !!!')
|
|
|
|
stop
|
|
|
|
|
|
|
|
end select
|
|
|
|
|
2020-07-02 14:27:38 +02:00
|
|
|
end subroutine unrestricted_lda_correlation_potential
|