summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2009-09-06 21:02:48 -0700
committerKeith Packard <keithp@keithp.com>2009-09-06 21:02:48 -0700
commit8b485d937ff148848ebda7f9ca6be29bb1de1f16 (patch)
tree6fac7e7b029000a185481b93f5cd6c515f11fc8f
parent9e660315e1bd2bf71ab1c0574e895e1f7608a58f (diff)
Show acceleration only during boost phase.
We're interested in motor performance; the rest of the flight is boring, after all. Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r--ao-tools/ao-postflight/ao-postflight.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ao-tools/ao-postflight/ao-postflight.c b/ao-tools/ao-postflight/ao-postflight.c
index ded2f3c2..3a6f04b6 100644
--- a/ao-tools/ao-postflight/ao-postflight.c
+++ b/ao-tools/ao-postflight/ao-postflight.c
@@ -325,7 +325,7 @@ analyse_flight(struct cc_flightraw *f, FILE *summary_file, FILE *detail_file, FI
plot_perioddata(speed, "meters/second", "Speed", -1e10, 1e10, PLOT_SPEED);
plot_perioddata(speed, "meters/second", "Speed to Apogee", boost_start, apogee, PLOT_SPEED);
plot_perioddata(&cooked->accel_accel, "meters/second²", "Acceleration", -1e10, 1e10, PLOT_ACCEL);
- plot_perioddata(&cooked->accel_accel, "meters/second²", "Acceleration to Apogee", boost_start, apogee, PLOT_ACCEL);
+ plot_perioddata(&cooked->accel_accel, "meters/second²", "Acceleration during Boost", boost_start, boost_stop + (boost_stop - boost_start) / 2.0, PLOT_ACCEL);
free(speed->data);
free(speed);
plend();