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
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
modmain
Definition
modmain.f90:6
modmain::nqpt
integer nqpt
Definition
modmain.f90:525
modmain::vql
real(8), dimension(:,:), allocatable vql
Definition
modmain.f90:545
modmain::wqpt
real(8), dimension(:), allocatable wqpt
Definition
modmain.f90:549
writeqpts
subroutine writeqpts
Definition
writeqpts.f90:7
writeqpts.f90
Generated by
1.9.8