From 41c5d6f81f3705616d7dd0499f50c12b2a255596 Mon Sep 17 00:00:00 2001 From: Bill Kuker Date: Fri, 17 Apr 2009 04:23:01 +0000 Subject: [PATCH] OOps didnt meet the actual specs --- .../rocketry/motorsim/motors/kuker/PVC9.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/com/billkuker/rocketry/motorsim/motors/kuker/PVC9.java b/src/com/billkuker/rocketry/motorsim/motors/kuker/PVC9.java index b2b085e..4db73db 100644 --- a/src/com/billkuker/rocketry/motorsim/motors/kuker/PVC9.java +++ b/src/com/billkuker/rocketry/motorsim/motors/kuker/PVC9.java @@ -22,14 +22,14 @@ public class PVC9 extends Motor { CylindricalChamber c = new CylindricalChamber(); c.setLength(Amount.valueOf(200, SI.MILLIMETER)); - c.setID(Amount.valueOf(30, SI.MILLIMETER)); + c.setID(Amount.valueOf(25, SI.MILLIMETER)); setChamber(c); CoredCylindricalGrain g = new CoredCylindricalGrain(); try{ g.setLength(Amount.valueOf(70, SI.MILLIMETER)); - g.setOD(Amount.valueOf(29, SI.MILLIMETER)); - g.setID(Amount.valueOf(8, SI.MILLIMETER)); + g.setOD(Amount.valueOf(23.5, SI.MILLIMETER)); + g.setID(Amount.valueOf(7.9375, SI.MILLIMETER)); } catch ( PropertyVetoException v ){ throw new Error(v); } @@ -37,9 +37,9 @@ public class PVC9 extends Motor { setGrain( new MultiGrain(g, 2) ); ConvergentDivergentNozzle n = new ConvergentDivergentNozzle(); - n.setThroatDiameter(Amount.valueOf(7.9, SI.MILLIMETER)); - n.setExitDiameter(Amount.valueOf(9, SI.MILLIMETER)); - n.setEfficiency(.87); + n.setThroatDiameter(Amount.valueOf(7.962, SI.MILLIMETER)); + n.setExitDiameter(Amount.valueOf(13.79, SI.MILLIMETER)); + n.setEfficiency(.85); setNozzle(n); } -- 2.47.2