mirror of
https://github.com/pfloos/quack
synced 2024-12-25 13:53:41 +01:00
47 lines
1.2 KiB
Fortran
47 lines
1.2 KiB
Fortran
|
subroutine unrestricted_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 ('S51')
|
||
|
|
||
|
call US51_lda_exchange_potential(nGrid,weight,nBas,AO,rho,Fx)
|
||
|
|
||
|
case ('CC')
|
||
|
|
||
|
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 unrestricted_lda_exchange_potential
|