chiark / gitweb /
bdecb614fed04226b41f2ebd503e434406f1acaf
[reprap-play.git] / flyscreen-handle.scad
1 // -*- C -*-
2
3 opening_height = 7.84;
4 opening_depth = 7.88;
5 openingedge_dia = 1.34;
6 opening_protrh = 1.8;
7
8 pivot_x = 6;
9 inside_len = 4;
10
11 pivoting_gap = 0.1;
12
13 outside_gap = 3;
14 outside_len = 16;
15 outend_height = 3;
16
17 outside_pushh = 4;
18 outside_pushslope = 1.4;
19 outside_push_inadj = 0.82;
20
21 ourcirc_r = 0.5 / 2;
22
23 opening_protr_slop = 0.1;
24
25 intooth_top_slop = 0.1;
26 inside_h_xgap = 1;
27
28 pivot_r = 2;
29 pivot_slop = 0.25;
30
31 width = 5;
32
33 // calculated
34
35 inside_h = opening_height/2 - opening_protrh - inside_h_xgap/2;
36
37 edge_or = openingedge_dia/2 + opening_protr_slop;
38
39 Q0 = [ openingedge_dia/2,
40        openingedge_dia/2 + opening_height/2 ];
41
42 p4p5d = [edge_or + ourcirc_r, 0];
43
44 P0 = [ pivot_x, pivoting_gap ];
45 P4 = Q0 - p4p5d;
46 P3t = [ P4[0], Q0[1] - openingedge_dia/2 + opening_protrh
47         - intooth_top_slop - ourcirc_r ];
48 P2 = P4 + [ -(inside_len - ourcirc_r*2), 0 ];
49 P1 = [ P2[0], P3t[1] - (inside_h + ourcirc_r*2) ];
50
51 P5 = Q0 + p4p5d;
52
53 P9mid = [ outside_len - ourcirc_r, outside_gap/2 + ourcirc_r ];
54 P8mid = P9mid + [ 0, outend_height - ourcirc_r*2 ];
55
56 P89adj = [ 0, P5[1] - P8mid[1] ];
57
58 P6t = P5 + [ 0, outside_pushh - ourcirc_r*2 ];
59 P7 = [ P6t[0] + (P6t[1] - P1[1]) / outside_pushslope,
60        P1[1] ];
61
62 P3a = P3t + [ -outside_push_inadj, 0 ];
63 P6a = P6t + [ -outside_push_inadj, 0 ];
64
65 outside_push_inadj_slope = (P3t[1]-P4[1]) / (P6a[1]-P5[1]);
66
67 module ExtrusionSect(){
68   cr = openingedge_dia/2;
69   toph = opening_height/2 + opening_protrh;
70
71   for (my=[0,1]) {
72     mirror([0,my]) {
73       translate(Q0) {
74         hull(){
75           circle(r=cr, $fn=20);
76           translate([-cr,10]) square([cr*2, 1]);
77         }
78       }
79     }
80   }
81   translate([-opening_depth, -toph]) {
82     difference(){
83       translate([-5,-5])
84         square([opening_depth+6, toph*2+10]);
85       square([opening_depth+2, toph*2]);
86     }
87   }
88 }
89
90 module PsHull(ps) {
91   hull(){
92     for (p = ps) {
93       translate(p)
94         circle(r = ourcirc_r, $fn=10);
95     }
96   }
97 }
98
99 module LeverSect(P89adjsense, inadj=false){
100   P3 = inadj ? P3a : P3t;
101   P8 = P8mid + P89adjsense * P89adj;
102   P9 = P9mid + P89adjsense * P89adj;
103   diag = inadj ? 0 : atan(outside_push_inadj_slope);
104   PsHull([P2,P3,P4]);
105   difference(){
106     PsHull([P0,P1,P2,P5,P8,P9]);
107     translate(Q0) {
108       rotate(diag){
109         hull(){
110           circle(r=edge_or, $fn=20);
111           translate([0,10]) circle(r=edge_or, $fn=20);
112         }
113       }
114     }
115   }
116 }
117
118 module LeverSectTop(){
119   difference(){
120     LeverSect(+1, false);
121     translate([pivot_x,0]) circle(r= pivot_r + pivot_slop, $fn=20);
122   }
123 }
124
125 module LeverSectBot(inadj=false){
126   P6 = inadj ? P6a : P6t;
127   mirror([0,1]) {
128     LeverSect(-1, inadj);
129     PsHull([P5,P6,P7]);
130     translate([pivot_x,0]) circle(r=pivot_r, $fn=20);
131   }
132 }
133
134 module Demo(){
135   translate([0,0,-5]) color("white") ExtrusionSect();
136   LeverSectTop();
137   LeverSectBot();
138 }
139
140 module LeverTop(){
141   linear_extrude(height=width, convexity=100) LeverSectTop();
142 }
143
144 module LeverBot(inadj=false){
145   linear_extrude(height=width, convexity=100) LeverSectBot(inadj);
146 }
147
148 module Test(){
149   translate([0,2,0]) LeverTop();
150   LeverBot();
151   translate([0,-opening_height - 2,0]) LeverBot(true);
152 }
153
154 //Demo();
155 Test();