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

56 lines
1.3 KiB
Fortran
Raw Normal View History

subroutine lda_exchange_energy(DFA,LDA_centered,nEns,wEns,aCC_w1,aCC_w2,nGrid,weight,rho,Ex)
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)
! Output variables
double precision,intent(out) :: Ex
! Select correlation functional
select case (DFA)
2020-07-02 14:27:38 +02:00
case ('US51')
2020-03-15 14:33:53 +01:00
2020-07-02 14:27:38 +02:00
call US51_lda_exchange_energy(nGrid,weight,rho,Ex,wEns,nEns)
2020-03-15 14:33:53 +01:00
2020-03-16 22:08:04 +01:00
case ('RS51')
2019-03-13 11:07:31 +01:00
2020-03-16 22:08:04 +01:00
call RS51_lda_exchange_energy(nGrid,weight,rho,Ex)
2019-03-13 11:07:31 +01:00
2020-03-15 14:33:53 +01:00
case ('RMFL20')
2020-03-15 08:23:01 +01:00
call RMFL20_lda_exchange_energy(LDA_centered,nEns,wEns,nGrid,weight,rho,Ex)
2020-03-15 08:23:01 +01:00
2020-05-05 16:45:10 +02:00
case ('RCC')
2020-04-06 19:40:42 +02:00
call RCC_lda_exchange_energy(nEns,wEns,aCC_w1,aCC_w2,nGrid,weight,rho,Ex)
2020-04-06 19:40:42 +02:00
2020-07-02 14:27:38 +02:00
case ('UCC')
call UCC_lda_exchange_energy(nEns,wEns,aCC_w1,aCC_w2,nGrid,weight,rho,Ex)
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_energy