The Elk Code
writekpa.f90
Go to the documentation of this file.
1 
2 ! Copyright (C) 2019 J. K. Dewhurst and S. Sharma.
3 ! This file is distributed under the terms of the GNU General Public License.
4 ! See the file COPYING for license details.
5 
6 subroutine writekpa
7 use modmain
8 use modulr
9 implicit none
10 ! local variables
11 integer ikpa
12 open(50,file='KAPPA.OUT',form='FORMATTED')
13 write(50,'(I6," : nkpa; κ-point, vector in unit cell reciprocal lattice &
14  &coordinates below")') nkpa
15 do ikpa=1,nkpa
16  write(50,'(I6,3G18.10)') ikpa,vql(:,ikpa)
17 end do
18 close(50)
19 end subroutine
20 
real(8), dimension(:,:), allocatable vql
Definition: modmain.f90:545
subroutine writekpa
Definition: writekpa.f90:7
Definition: modulr.f90:6
integer nkpa
Definition: modulr.f90:24