Typo on header

Speed header was written with s^-2 for the bc file.
This commit is contained in:
Jorge Gonzalez 2024-09-30 10:13:22 +02:00
commit 726d9bb0fc

View file

@ -191,7 +191,7 @@ module output
if (.not. res) then
write (*, '(A, A)') 'Writing: ', filename
open(unit=dataBC_id, file=pathOutput // filename, action='write', position='append')
write(dataBC_id, '(A,4(' // formatSep // ',A))') 't (s)', 'n (m^-3)', 'u (m s^-2)', 'T (eV)', 'Z'
write(dataBC_id, '(A,4(' // formatSep // ',A))') 't (s)', 'n (m^-3)', 'u (m s^-1)', 'T (eV)', 'Z'
close(dataBC_id)
end if