From bbc31fc266bca0e35a63ebe7c830aacb782546e2 Mon Sep 17 00:00:00 2001 From: JoePfeiffer Date: Tue, 13 Feb 2024 12:34:57 -0700 Subject: [PATCH] There's more variation in the apogee and ground hit times than I realized for the tumbling center booster --- .../test/net/sf/openrocket/simulation/FlightEventsTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/test/net/sf/openrocket/simulation/FlightEventsTest.java b/core/test/net/sf/openrocket/simulation/FlightEventsTest.java index 04618655c..4a6818bc4 100644 --- a/core/test/net/sf/openrocket/simulation/FlightEventsTest.java +++ b/core/test/net/sf/openrocket/simulation/FlightEventsTest.java @@ -138,9 +138,9 @@ public class FlightEventsTest extends BaseTestCase { new FlightEvent(FlightEvent.Type.EJECTION_CHARGE, 2.01, centerBooster), new FlightEvent(FlightEvent.Type.STAGE_SEPARATION, 2.01, centerBooster), new FlightEvent(FlightEvent.Type.TUMBLE, 2.85, null), - new FlightEvent(FlightEvent.Type.APOGEE, 3.87, rocket), - new FlightEvent(FlightEvent.Type.GROUND_HIT, 9.0, null), - new FlightEvent(FlightEvent.Type.SIMULATION_END, 9.0, null) + new FlightEvent(FlightEvent.Type.APOGEE, 1200, rocket), + new FlightEvent(FlightEvent.Type.GROUND_HIT, 1200, null), + new FlightEvent(FlightEvent.Type.SIMULATION_END, 1200, null) }; break;