From 06d101c775fcf5224670dce275e37afe97df1238 Mon Sep 17 00:00:00 2001 From: JoePfeiffer Date: Sun, 29 Mar 2020 10:13:08 -0600 Subject: [PATCH] remove old 3FNC rocket; not needed since using Alpha III as base for pods test --- .../net/sf/openrocket/util/TestRockets.java | 34 +------------------ 1 file changed, 1 insertion(+), 33 deletions(-) diff --git a/core/src/net/sf/openrocket/util/TestRockets.java b/core/src/net/sf/openrocket/util/TestRockets.java index edc66fb71..be0c2e7f1 100644 --- a/core/src/net/sf/openrocket/util/TestRockets.java +++ b/core/src/net/sf/openrocket/util/TestRockets.java @@ -1635,39 +1635,7 @@ public class TestRockets { return rocketDoc; } - // the following two models are used in testing - // otherwise-identical rockets, one created in the obvious way - // using a single finset and the other creating three pods, each - // with a single fin. - public static final Rocket make3FNCNoPods() { - - Rocket rocket = new Rocket(); - - rocket.enableEvents(); - - AxialStage stage = new AxialStage(); - stage.setName("Sustainer"); - rocket.addChild(stage); - - // shape, length, radius - NoseCone nosecone = new NoseCone(Transition.Shape.OGIVE, 0.102, 0.0125); - stage.addChild(nosecone); - - // length, outer radius, thickness - BodyTube bodytube = new BodyTube(0.305, 0.0125, 0.001); - bodytube.setName("Main Body"); - stage.addChild(bodytube); - - // number of fins, root chord, tip chord, sweep, height - TrapezoidFinSet trapezoidfinset = new TrapezoidFinSet(3, 0.051, 0.025, 0.038, 0.044); - bodytube.addChild(trapezoidfinset); - - return rocket; - } - - // second model used to test with/without pods. In order to - // maintain consistency between the models, we'll create the - // no-pods first, and then modify it to make the with-pods version + // Alpha III modified to put fins on "phantom" pods public static final Rocket makeEstesAlphaIIIWithPods() { Rocket rocket = TestRockets.makeEstesAlphaIII();