4
1
mirror of https://github.com/pfloos/quack synced 2024-06-30 00:44:31 +02:00
quack/src/eDFT/unrestricted_mgga_exchange_energy.f90

33 lines
765 B
Fortran
Raw Normal View History

2021-02-12 10:41:01 +01:00
subroutine unrestricted_mgga_exchange_energy(DFA,nEns,wEns,nGrid,weight,rho,drho,Ex)
! Select MGGA exchange functional for energy calculation
implicit none
include 'parameters.h'
! Input variables
2021-10-25 12:20:25 +02:00
integer,intent(in) :: DFA
2021-02-12 10:41:01 +01:00
integer,intent(in) :: nEns
double precision,intent(in) :: wEns(nEns)
integer,intent(in) :: nGrid
double precision,intent(in) :: weight(nGrid)
double precision,intent(in) :: rho(nGrid)
2021-12-01 10:54:51 +01:00
double precision,intent(in) :: drho(ncart,nGrid)
2021-02-12 10:41:01 +01:00
! Output variables
double precision :: Ex
select case (DFA)
case default
call print_warning('!!! MGGA exchange energy not available !!!')
stop
end select
end subroutine unrestricted_mgga_exchange_energy