From: Bill Kuker Date: Tue, 8 Sep 2009 21:02:49 +0000 (+0000) Subject: Changed default motor to fit default grains X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=5f6820b4f2f9aa623db0213a1edb55881f12f194;p=sw%2Fmotorsim Changed default motor to fit default grains --- diff --git a/src/com/billkuker/rocketry/motorsim/visual/workbench/MotorEditor.java b/src/com/billkuker/rocketry/motorsim/visual/workbench/MotorEditor.java index 58a086d..b4cdff1 100644 --- a/src/com/billkuker/rocketry/motorsim/visual/workbench/MotorEditor.java +++ b/src/com/billkuker/rocketry/motorsim/visual/workbench/MotorEditor.java @@ -367,14 +367,14 @@ public class MotorEditor extends JTabbedPane implements PropertyChangeListener { CylindricalChamber c = new CylindricalChamber(); c.setLength(Amount.valueOf(200, SI.MILLIMETER)); - c.setID(Amount.valueOf(25, SI.MILLIMETER)); + c.setID(Amount.valueOf(30, SI.MILLIMETER)); m.setChamber(c); CoredCylindricalGrain g = new CoredCylindricalGrain(); try { g.setLength(Amount.valueOf(70, SI.MILLIMETER)); - g.setOD(Amount.valueOf(23.5, SI.MILLIMETER)); - g.setID(Amount.valueOf(7.9375, SI.MILLIMETER)); + g.setOD(Amount.valueOf(30, SI.MILLIMETER)); + g.setID(Amount.valueOf(10, SI.MILLIMETER)); } catch (PropertyVetoException v) { throw new Error(v); }