The Elk Code
 
Loading...
Searching...
No Matches
writegvecrf.f90
Go to the documentation of this file.
1
2! Copyright (C) 2021 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 writegvecrf
7use modmain
8implicit none
9! local variables
10integer ig
11open(50,file='GVECRF.OUT',form='FORMATTED',action='WRITE')
12write(50,'(G18.10," : gmaxrf")') gmaxrf
13write(50,'(I8," : ngrf; G-vector index, ivg below")') ngrf
14do ig=1,ngrf
15 write(50,'(I8,3I6)') ig,ivg(1:3,ig)
16end do
17close(50)
18end subroutine
19
integer ngrf
Definition modmain.f90:1161
integer, dimension(:,:), allocatable ivg
Definition modmain.f90:400
real(8) gmaxrf
Definition modmain.f90:1157
subroutine writegvecrf