2020-08-02 13:09:30 +02:00
|
|
|
subroutine unrestricted_lda_exchange_energy(DFA,LDA_centered,nEns,wEns,aCC_w1,aCC_w2,nGrid,weight,rho,Ex,Cx_choice)
|
2019-03-13 11:07:31 +01:00
|
|
|
|
|
|
|
! Select LDA exchange functional
|
|
|
|
|
|
|
|
implicit none
|
|
|
|
include 'parameters.h'
|
|
|
|
|
|
|
|
! Input variables
|
|
|
|
|
|
|
|
character(len=12),intent(in) :: DFA
|
2020-04-01 22:59:52 +02:00
|
|
|
logical,intent(in) :: LDA_centered
|
2019-03-13 11:07:31 +01:00
|
|
|
integer,intent(in) :: nEns
|
|
|
|
double precision,intent(in) :: wEns(nEns)
|
2020-07-02 15:40:30 +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)
|
|
|
|
double precision,intent(in) :: rho(nGrid)
|
2020-08-02 13:09:30 +02:00
|
|
|
integer,intent(in) :: Cx_choice
|
2019-03-13 11:07:31 +01:00
|
|
|
|
|
|
|
! Output variables
|
|
|
|
|
|
|
|
double precision,intent(out) :: Ex
|
|
|
|
|
|
|
|
! Select correlation functional
|
|
|
|
|
|
|
|
select case (DFA)
|
|
|
|
|
2020-07-06 20:57:27 +02:00
|
|
|
case ('S51')
|
2020-03-15 14:33:53 +01:00
|
|
|
|
2020-07-06 15:42:21 +02:00
|
|
|
call US51_lda_exchange_energy(nGrid,weight,rho,Ex)
|
2020-03-15 14:33:53 +01:00
|
|
|
|
2020-07-06 20:57:27 +02:00
|
|
|
case ('CC')
|
2020-07-02 14:27:38 +02:00
|
|
|
|
2020-08-02 13:09:30 +02:00
|
|
|
call UCC_lda_exchange_energy(nEns,wEns,aCC_w1,aCC_w2,nGrid,weight,rho,Ex,Cx_choice)
|
2020-07-02 14:27:38 +02:00
|
|
|
|
2019-03-13 11:07:31 +01:00
|
|
|
case default
|
|
|
|
|
2021-02-14 21:54:10 +01:00
|
|
|
call print_warning('!!! LDA exchange energy not available !!!')
|
|
|
|
|
2019-03-13 11:07:31 +01:00
|
|
|
stop
|
|
|
|
|
|
|
|
end select
|
|
|
|
|
2020-07-06 20:57:27 +02:00
|
|
|
end subroutine unrestricted_lda_exchange_energy
|