Skip to content
This repository was archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
Fixed mistake in format string that was printing an extra quotation mark
Browse files Browse the repository at this point in the history
  • Loading branch information
daminton committed Oct 4, 2023
1 parent ba9f088 commit 5e87b55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/swiftest/swiftest_io.f90
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ module subroutine swiftest_io_conservation_report(self, param, lterminal)
real(DP), dimension(NDIM) :: L_total_now, L_orbit_now, L_spin_now
real(DP) :: ke_orbit_now, ke_spin_now, pe_now, E_orbit_now, be_now, be_cb_now, be_cb_orig, te_now
real(DP) :: GMtot_now
character(len=*), parameter :: EGYTERMFMT = '(" DL/L0 = ", ES12.5, "; DE_orbit/|E0| = ", ES12.5, ";"' &
//'" DE_total/|E0| = ", ES12.5, "; DM/M0 = ", ES12.5)'
character(len=*), parameter :: EGYTERMFMT = '(" DL/L0 = ", ES12.5, "; DE_orbit/|E0| = ", ES12.5,' &
//'"; DE_total/|E0| = ", ES12.5, "; DM/M0 = ", ES12.5)'

associate(nbody_system => self, pl => self%pl, cb => self%cb, npl => self%pl%nbody, display_unit => param%display_unit)

Expand Down

0 comments on commit 5e87b55

Please sign in to comment.