2020-07-02 18:49:42 +02:00
|
|
|
subroutine lda_exchange_potential(DFA,LDA_centered,nEns,wEns,aCC_w1,aCC_w2,nGrid,weight,nBas,AO,rho,Fx)
|
2019-03-13 11:07:31 +01:00
|
|
|
|
|
|
|
! Select LDA correlation potential
|
|
|
|
|
|
|
|
implicit none
|
|
|
|
|
|
|
|
include 'parameters.h'
|
|
|
|
|
|
|
|
! Input variables
|
|
|
|
|
2020-04-01 22:59:52 +02:00
|
|
|
logical,intent(in) :: LDA_centered
|
2019-03-13 11:07:31 +01:00
|
|
|
character(len=12),intent(in) :: DFA
|
|
|
|
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)
|
2019-03-13 11:07:31 +01:00
|
|
|
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)
|
|
|
|
|
|
|
|
! Output variables
|
|
|
|
|
|
|
|
double precision,intent(out) :: Fx(nBas,nBas)
|
|
|
|
|
|
|
|
! Select exchange functional
|
|
|
|
|
|
|
|
select case (DFA)
|
|
|
|
|
2020-03-15 14:33:53 +01:00
|
|
|
case ('RS51')
|
|
|
|
|
|
|
|
call RS51_lda_exchange_potential(nGrid,weight,nBas,AO,rho,Fx)
|
|
|
|
|
2020-07-02 14:27:38 +02:00
|
|
|
case ('US51')
|
2019-03-13 11:07:31 +01:00
|
|
|
|
2020-07-02 14:27:38 +02:00
|
|
|
call US51_lda_exchange_potential(nGrid,weight,nBas,AO,rho,Fx)
|
2019-03-13 11:07:31 +01:00
|
|
|
|
2020-03-15 14:33:53 +01:00
|
|
|
case ('RMFL20')
|
|
|
|
|
2020-04-01 22:59:52 +02:00
|
|
|
call RMFL20_lda_exchange_potential(LDA_centered,nEns,wEns,nGrid,weight,nBas,AO,rho,Fx)
|
2020-03-15 14:33:53 +01:00
|
|
|
|
2020-05-05 16:45:10 +02:00
|
|
|
case ('RCC')
|
2020-04-06 19:40:42 +02:00
|
|
|
|
2020-07-02 18:49:42 +02:00
|
|
|
call RCC_lda_exchange_potential(nEns,wEns,aCC_w1,aCC_w2,nGrid,weight,nBas,AO,rho,Fx)
|
2020-04-06 19:40:42 +02:00
|
|
|
|
2020-07-02 14:27:38 +02:00
|
|
|
case ('UCC')
|
|
|
|
|
2020-07-02 18:49:42 +02:00
|
|
|
call UCC_lda_exchange_potential(nEns,wEns,aCC_w1,aCC_w2,nGrid,weight,nBas,AO,rho,Fx)
|
2020-07-02 14:27:38 +02:00
|
|
|
|
2019-03-13 11:07:31 +01:00
|
|
|
case default
|
|
|
|
|
|
|
|
call print_warning('!!! LDA exchange functional not available !!!')
|
|
|
|
stop
|
|
|
|
|
|
|
|
end select
|
|
|
|
|
|
|
|
end subroutine lda_exchange_potential
|