The Elk Code
writetimes.f90
Go to the documentation of this file.
1 
2 ! Copyright (C) 2015 K. Krieger, 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 writetimes
7 use modmain
8 use modtddft
9 implicit none
10 open(50,file='TIMESTEP.OUT',form='FORMATTED')
11 write(50,'(I8,G18.10)') itimes,times(itimes)
12 close(50)
13 end subroutine
14 
subroutine writetimes
Definition: writetimes.f90:7
real(8), dimension(:), allocatable times
Definition: modtddft.f90:48
integer itimes
Definition: modtddft.f90:46