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

26 lines
504 B
Fortran
Raw Normal View History

2022-01-07 09:13:38 +01:00
subroutine fock_exchange_energy(nBas,P,Fx,Ex)
2020-07-06 20:57:27 +02:00
! Compute the (exact) Fock exchange energy
implicit none
! Input variables
integer,intent(in) :: nBas
double precision,intent(in) :: P(nBas,nBas)
double precision,intent(in) :: Fx(nBas,nBas)
! Local variables
double precision,external :: trace_matrix
! Output variables
double precision,intent(out) :: Ex
! Compute HF exchange energy
2021-01-26 21:28:05 +01:00
Ex = 0.5d0*trace_matrix(nBas,matmul(P,Fx))
2020-07-06 20:57:27 +02:00
2022-01-07 09:13:38 +01:00
end subroutine fock_exchange_energy