Skip to content
Snippets Groups Projects

Resolve "Implementation of ZORA"

Merged Lukas Konecny requested to merge 605-implementation-of-zora into main
2 files
+ 4
4
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -1348,7 +1348,7 @@ contains
logical, intent(in) :: accel_copy
FLOAT, allocatable :: zora_scpot(:)
integer :: ispin, ip, idim
integer :: ispin, ip
PUSH_SUB(hamiltonian_elec_update_pot)
@@ -1394,7 +1394,7 @@ contains
do ip = 1, mesh%np
this%hm_base%potential(ip, ispin) = M_ZERO
end do
! !$omp do simd schedule(static)
! continue
! do ip = 1, mesh%np
@@ -1433,7 +1433,7 @@ contains
! zora_scpot = V
! zora_pot = \frac{c^2}{2c^2 - V}
do ip = 1, mesh%np
! added extra factor of 2 because of -1/2 in kinetic energy
! added extra factor of 2 because of -1/2 in kinetic energy
do ispin= 1, this%d%spin_channels
this%zora_pot(ip,ispin) = M_TWO*P_C**2 / (M_TWO*this%mass*P_C**2 - zora_scpot(ip) )
end do
Loading