4
1
mirror of https://github.com/pfloos/quack synced 2024-06-23 13:42:19 +02:00
quack/src/eDFT/unrestricted_lda_exchange_energy.f90

46 lines
1.1 KiB
Fortran
Raw Normal View History

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
logical,intent(in) :: LDA_centered
2019-03-13 11:07:31 +01:00
integer,intent(in) :: nEns
double precision,intent(in) :: wEns(nEns)
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)
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
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