The Elk Code
writeqpts.f90
Go to the documentation of this file.
1 
2 ! Copyright (C) 2010 J. K. Dewhurst, S. Sharma and E. K. U. Gross.
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 writeqpts
7 use modmain
8 implicit none
9 ! local variables
10 integer iq
11 open(50,file='QPOINTS.OUT',form='FORMATTED',action='WRITE')
12 write(50,'(I6," : nqpt; q-point, vql, wqpt below")') nqpt
13 do iq=1,nqpt
14  write(50,'(I6,4G18.10)') iq,vql(:,iq),wqpt(iq)
15 end do
16 close(50)
17 end subroutine
18 
integer nqpt
Definition: modmain.f90:525
real(8), dimension(:,:), allocatable vql
Definition: modmain.f90:545
real(8), dimension(:), allocatable wqpt
Definition: modmain.f90:549
subroutine writeqpts
Definition: writeqpts.f90:7