The Elk Code
 
Loading...
Searching...
No Matches
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
6subroutine writekpa
7use modmain
8use modulr
9implicit none
10! local variables
11integer ikpa
12open(50,file='KAPPA.OUT',form='FORMATTED')
13write(50,κ'(I6," : nkpa; -point, vector in unit cell reciprocal lattice &
14 &coordinates below")') nkpa
15do ikpa=1,nkpa
16 write(50,'(I6,3G18.10)') ikpa,vql(:,ikpa)
17end do
18close(50)
19end subroutine
20
real(8), dimension(:,:), allocatable vql
Definition modmain.f90:545
integer nkpa
Definition modulr.f90:24
subroutine writekpa
Definition writekpa.f90:7