Skip to content

Commit

Permalink
Now outputting FBZ 2 IBZ mappings for the electrons.
Browse files Browse the repository at this point in the history
  • Loading branch information
nakib committed Nov 10, 2023
1 parent f1a275c commit 1778e06
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/electron.f90
Original file line number Diff line number Diff line change
Expand Up @@ -511,6 +511,13 @@ subroutine calculate_electrons(self, wann, crys, sym, num)
call print_message("Calculating FBZ -> IBZ mappings...")
call create_fbz2ibz_map(self%fbz2ibz_map,self%nwv,self%nwv_irred, &
self%indexlist,self%nequiv,self%ibz2fbz_map)
if(this_image() == 1) then
open(1, file = "el.fbz2ibz_map", status = "replace")
do i = 1, self%nwv
write(1, "(I10)") self%fbz2ibz_map(i)
end do
close(1)
end if

do i = 1, self%nwv_irred !IBZ
do l = 1, self%nequiv(i) !number of equivalent points of i
Expand Down

0 comments on commit 1778e06

Please sign in to comment.