diff options
author | Keith Packard <keithp@keithp.com> | 2011-10-08 11:43:37 -0600 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-10-08 11:43:37 -0600 |
commit | f9b0b7423c0640f729d61a91de6ff96ffe4b486e (patch) | |
tree | c236f0ec44a5c1d1607a78be7d1b97ddd59accac /altosui/AltosFlightStatsTable.java | |
parent | 258b75498916183ed250d3abb3282fe3d843e7a1 (diff) |
altosui: Max acceleration across boost instead of all ascent
This ignores ejection bumps, making the max acceleration far more useful.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosFlightStatsTable.java')
-rw-r--r-- | altosui/AltosFlightStatsTable.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/altosui/AltosFlightStatsTable.java b/altosui/AltosFlightStatsTable.java index 3fecf921..2d34c6e2 100644 --- a/altosui/AltosFlightStatsTable.java +++ b/altosui/AltosFlightStatsTable.java @@ -86,7 +86,7 @@ public class AltosFlightStatsTable extends JComponent { String.format("%5.0f ft/s", AltosConvert.meters_to_feet(stats.max_speed)), String.format("Mach %5.3f", AltosConvert.meters_to_mach(stats.max_speed))); if (stats.max_acceleration != AltosRecord.MISSING) { - new FlightStat(layout, y++, "Maximum acceleration", + new FlightStat(layout, y++, "Maximum boost acceleration", String.format("%5.0f m/s²", stats.max_acceleration), String.format("%5.0f ft/s²", AltosConvert.meters_to_feet(stats.max_acceleration)), String.format("%5.2f G", AltosConvert.meters_to_g(stats.max_acceleration))); |