mirror of
https://github.com/pfloos/quack
synced 2024-11-13 01:23:59 +01:00
59 lines
1.4 KiB
Fortran
59 lines
1.4 KiB
Fortran
subroutine lda_exchange_potential(DFA,LDA_centered,nEns,wEns,aCC_w1,aCC_w2,nGrid,weight,nBas,AO,rho,Fx)
|
|
|
|
! Select LDA correlation potential
|
|
|
|
implicit none
|
|
|
|
include 'parameters.h'
|
|
|
|
! Input variables
|
|
|
|
logical,intent(in) :: LDA_centered
|
|
character(len=12),intent(in) :: DFA
|
|
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)
|
|
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)
|
|
|
|
case ('RS51')
|
|
|
|
call RS51_lda_exchange_potential(nGrid,weight,nBas,AO,rho,Fx)
|
|
|
|
case ('US51')
|
|
|
|
call US51_lda_exchange_potential(nGrid,weight,nBas,AO,rho,Fx)
|
|
|
|
case ('RMFL20')
|
|
|
|
call RMFL20_lda_exchange_potential(LDA_centered,nEns,wEns,nGrid,weight,nBas,AO,rho,Fx)
|
|
|
|
case ('RCC')
|
|
|
|
call RCC_lda_exchange_potential(nEns,wEns,aCC_w1,aCC_w2,nGrid,weight,nBas,AO,rho,Fx)
|
|
|
|
case ('UCC')
|
|
|
|
call UCC_lda_exchange_potential(nEns,wEns,aCC_w1,aCC_w2,nGrid,weight,nBas,AO,rho,Fx)
|
|
|
|
case default
|
|
|
|
call print_warning('!!! LDA exchange functional not available !!!')
|
|
stop
|
|
|
|
end select
|
|
|
|
end subroutine lda_exchange_potential
|