2 // The Estes A8-3 and C6-7 motors have diameter of 17.7 mm,
3 // length 69.5 mm. The Estes Alpha launch pad has rod diameter 3.4 mm.
10 25, 25, 25, 24.95, 24.8, 24.7,
11 24.55, 24.3, 24.0, 23.75, 23.4, 22.9,
12 22.4, 21.8, 21.0, 20.3, 19.4, 18.3,
13 17.0, 15.7, 14.1, 12.3, 10.2, 7.5,
24 for (x=[0 : len(r_vect)-2]) {
25 translate([0, 0, x*h_step*sc])
26 cylinder(r1 = sc*r_vect[x]+1.5, r2 = sc*r_vect[x+1]+1.5, h = sc*h_step+eps);
28 for (x=[0 : len(r_vect)-2]) {
29 translate([0, 0, (x-1)*h_step*sc])
30 cylinder(r1 = sc*r_vect[x], r2 = sc*r_vect[x+1], h = sc*h_step+eps);
34 translate([0, 0, -1.6])
35 cylinder(r1 = r_vect[0] - 0.8, r2 = r_vect[0], h = 1.6+eps);
36 translate([0, 0, -20])
37 cylinder(r = r_vect[0]-0.8, h = 20+eps);
43 render() difference() {
57 translate([motor_diam/2 + wall + 3, 0, 0])
60 cylinder(r = 3 + wall, h = 5);
61 translate([-3 -wall, -3 -wall, 0])
62 cube([3 + wall, 6 + 2*wall, 5]);
64 translate([0, 0, -infty/2])
65 cylinder(r = 3, h = infty);