Skip to content

Commit

Permalink
add header and reaction numbers to instantaneous rates files.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Cox authored and spco committed Aug 9, 2018
1 parent 6d221ec commit bb0225c
Show file tree
Hide file tree
Showing 46 changed files with 96,850 additions and 96,804 deletions.
3 changes: 2 additions & 1 deletion src/outputFunctions.f90
Original file line number Diff line number Diff line change
Expand Up @@ -317,8 +317,9 @@ subroutine outputInstantaneousRates( time )
irfileLocation = trim( instantaneousRates_dir ) // '/' // adjustl( strTime )

open (10, file=irfileLocation)
write (10,*) 'reaction number : reaction rate'
do i = 1, size( instantaneousRates )
write (10,*) instantaneousRates(i)
write (10,*) i, instantaneousRates(i)
end do
close (10, status='keep')

Expand Down
Loading

0 comments on commit bb0225c

Please sign in to comment.