The Elk Code
 
Loading...
Searching...
No Matches
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
6subroutine writeqpts
7use modmain
8implicit none
9! local variables
10integer iq
11open(50,file='QPOINTS.OUT',form='FORMATTED',action='WRITE')
12write(50,'(I6," : nqpt; q-point, vql, wqpt below")') nqpt
13do iq=1,nqpt
14 write(50,'(I6,4G18.10)') iq,vql(:,iq),wqpt(iq)
15end do
16close(50)
17end 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