Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions src/simulation/m_data_output.fpp
Original file line number Diff line number Diff line change
Expand Up @@ -149,18 +149,18 @@ contains
! Generating table header for the stability criteria to be outputted
if (cfl_dt) then
if (viscous) then
write (1, '(A)') ' Time-steps dt = Time ICFL '// &
write (3, '(A)') ' Time-steps dt = Time ICFL '// &
'Max VCFL Max Rc Min ='
else
write (1, '(A)') ' Time-steps dt Time '// &
write (3, '(A)') ' Time-steps dt Time '// &
' ICFL Max '
end if
else
if (viscous) then
write (1, '(A)') ' Time-steps Time ICFL '// &
write (3, '(A)') ' Time-steps Time ICFL '// &
'Max VCFL Max Rc Min '
else
write (1, '(A)') ' Time-steps Time '// &
write (3, '(A)') ' Time-steps Time '// &
' ICFL Max '
end if
end if
Expand Down Expand Up @@ -351,12 +351,12 @@ contains
! Outputting global stability criteria extrema at current time-step
if (proc_rank == 0) then
if (viscous) then
write (1, '(6X,I8,F10.6,6X,6X,F10.6,6X,F9.6,6X,F9.6,6X,F10.6)') &
write (3, '(6X,I8,F10.6,6X,6X,F10.6,6X,F9.6,6X,F9.6,6X,F10.6)') &
t_step, dt, t_step*dt, icfl_max_glb, &
vcfl_max_glb, &
Rc_min_glb
else
write (1, '(13X,I8,14X,F10.6,14X,F10.6,13X,F9.6)') &
write (3, '(13X,I8,14X,F10.6,14X,F10.6,13X,F9.6)') &
t_step, dt, t_step*dt, icfl_max_glb
end if

Expand Down
Loading