Add case info to test motors

This commit is contained in:
SiboVG 2023-08-25 00:38:45 +02:00
parent 2c750498bb
commit 41b6c87550

View File

@ -106,6 +106,7 @@ public class TestRockets {
.setManufacturer(Manufacturer.getManufacturer("A")) .setManufacturer(Manufacturer.getManufacturer("A"))
.setDesignation("F12X") .setDesignation("F12X")
.setDescription("Desc") .setDescription("Desc")
.setCaseInfo("info")
.setMotorType(Motor.Type.UNKNOWN) .setMotorType(Motor.Type.UNKNOWN)
.setStandardDelays(new double[] {}) .setStandardDelays(new double[] {})
.setDiameter(0.024) .setDiameter(0.024)
@ -123,6 +124,7 @@ public class TestRockets {
.setManufacturer(Manufacturer.getManufacturer("Estes")) .setManufacturer(Manufacturer.getManufacturer("Estes"))
.setDesignation("A8") .setDesignation("A8")
.setDescription(" SU Black Powder") .setDescription(" SU Black Powder")
.setCaseInfo("SU 18.0x70.0")
.setMotorType(Motor.Type.SINGLE) .setMotorType(Motor.Type.SINGLE)
.setStandardDelays(new double[] {0,3,5}) .setStandardDelays(new double[] {0,3,5})
.setDiameter(0.018) .setDiameter(0.018)
@ -141,6 +143,7 @@ public class TestRockets {
.setManufacturer(Manufacturer.getManufacturer("Estes")) .setManufacturer(Manufacturer.getManufacturer("Estes"))
.setDesignation("B4") .setDesignation("B4")
.setDescription(" SU Black Powder") .setDescription(" SU Black Powder")
.setCaseInfo("SU 18.0x70.0")
.setMotorType(Motor.Type.SINGLE) .setMotorType(Motor.Type.SINGLE)
.setStandardDelays(new double[] {0,3,5}) .setStandardDelays(new double[] {0,3,5})
.setDiameter(0.018) .setDiameter(0.018)
@ -159,6 +162,7 @@ public class TestRockets {
.setManufacturer(Manufacturer.getManufacturer("Estes")) .setManufacturer(Manufacturer.getManufacturer("Estes"))
.setDesignation("C6") .setDesignation("C6")
.setDescription(" SU Black Powder") .setDescription(" SU Black Powder")
.setCaseInfo("SU 18.0x70.0")
.setMotorType(Motor.Type.SINGLE) .setMotorType(Motor.Type.SINGLE)
.setStandardDelays(new double[] {0,3,5,7}) .setStandardDelays(new double[] {0,3,5,7})
.setDiameter(0.018) .setDiameter(0.018)
@ -177,6 +181,7 @@ public class TestRockets {
.setManufacturer(Manufacturer.getManufacturer("AeroTech")) .setManufacturer(Manufacturer.getManufacturer("AeroTech"))
.setDesignation("D21") .setDesignation("D21")
.setDescription("Desc") .setDescription("Desc")
.setCaseInfo("SU 18.0x70.0")
.setMotorType(Motor.Type.SINGLE) .setMotorType(Motor.Type.SINGLE)
.setStandardDelays(new double[] {}) .setStandardDelays(new double[] {})
.setDiameter(0.018) .setDiameter(0.018)
@ -195,6 +200,7 @@ public class TestRockets {
.setManufacturer(Manufacturer.getManufacturer("AeroTech")) .setManufacturer(Manufacturer.getManufacturer("AeroTech"))
.setDesignation("M1350") .setDesignation("M1350")
.setDescription("Desc") .setDescription("Desc")
.setCaseInfo("SU 75/512")
.setMotorType(Motor.Type.SINGLE) .setMotorType(Motor.Type.SINGLE)
.setStandardDelays(new double[] {}) .setStandardDelays(new double[] {})
.setDiameter(0.075) .setDiameter(0.075)
@ -213,6 +219,7 @@ public class TestRockets {
.setManufacturer(Manufacturer.getManufacturer("AeroTech")) .setManufacturer(Manufacturer.getManufacturer("AeroTech"))
.setDesignation("G77") .setDesignation("G77")
.setDescription("Desc") .setDescription("Desc")
.setCaseInfo("SU 29/180")
.setMotorType(Motor.Type.SINGLE) .setMotorType(Motor.Type.SINGLE)
.setStandardDelays(new double[] {4,7,10}) .setStandardDelays(new double[] {4,7,10})
.setDiameter(0.029) .setDiameter(0.029)