Advertisement
rclott

OpenSCAD Projection Problem NOT

Feb 3rd, 2025 (edited)
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.51 KB | None | 0 0
  1. $fn=0; // 0 = default
  2.  
  3. in2mm = 25.4;
  4. M3_clearance_radius = 0.5*3.3;
  5.  
  6. p_hgt = 222.0;
  7. p_wid = 482.6;
  8. p_thk = 3.175;
  9. panel=[p_wid, p_hgt];
  10.  
  11. h_c2c = 6.0 * in2mm;
  12. h_dia = 7.9;
  13. h_mount_dia = 0*5.0; // diavalves
  14. rack_min_opening = 450;
  15. rack_side_gaps = 0.5*(p_wid - rack_min_opening);
  16.  
  17. valve_dia = 48.0; // diavalves of valves case
  18. valve_xoff = 20;
  19. valve_yoff = 25;
  20. valve_tabs = [
  21. [ +valve_xoff, +valve_yoff ],
  22. [ +valve_xoff, -valve_yoff ],
  23. [ -valve_xoff, +valve_yoff ],
  24. [ -valve_xoff, -valve_yoff ],
  25. ];
  26.  
  27. xv_del = 55;
  28. xv_num = 8;
  29. xv_off = 0.5*(p_wid - (xv_num-1)*xv_del); // centers
  30. yv_off = p_thk;
  31. xv_posns = [ for (x = [0:xv_del:xv_num*xv_del-1]) xv_off + x ];
  32.  
  33. // top row of valvess 35 mm, 65 mm spacing
  34. zv_off = p_hgt-35;
  35. zv_posns = [ for (z = [0, 65 ]) zv_off - z ];
  36. // valves centerline
  37. zv_ctr = 0.5*( zv_posns[0] + zv_posns[1] );
  38.  
  39.  
  40. // ========================================================================
  41. // MOUNTING PLATES
  42. // ========================================================================
  43. plate=[ 135, 80, 2 ];
  44. plate_hole_c2c = [ 130, 70 ];
  45. plate_holes = [
  46. [ +0.5*plate_hole_c2c.x, +0.5*plate_hole_c2c.y ],
  47. [ +0.5*plate_hole_c2c.x, -0.5*plate_hole_c2c.y ],
  48. [ -0.5*plate_hole_c2c.x, +0.5*plate_hole_c2c.y ],
  49. [ -0.5*plate_hole_c2c.x, -0.5*plate_hole_c2c.y ]
  50. ];
  51. module make_plate_screw_holes() {
  52. for(xy=plate_holes) {
  53. translate(xy)
  54. cylinder(h=10, r=M3_clearance_radius, center=true);
  55. }
  56. }
  57.  
  58. // bottom row of gear along this centerline:
  59. zbase = 45;
  60. // justify plate mounting holes with valve mounting holes
  61. xplate_bee = xv_posns[0] + 0.5*plate_hole_c2c.x - valve_xoff;
  62. xplate_dog = xv_posns[xv_num-1] - 0.5*plate_hole_c2c.x + valve_xoff;
  63.  
  64. // ========================================================================
  65. // VALVES
  66. // ========================================================================
  67. module place_valve() {
  68. rotate(90,[1,0,0]) children();
  69. }
  70. module make_valve_assy_screw_holes() {
  71. for(xy = valve_tabs)
  72. translate(xy)
  73. cylinder(r=M3_clearance_radius, h=10, center=true);
  74. }
  75. module array_valves_row(y,z) {
  76. for(x=xv_posns)
  77. translate([x,y,z]) children();
  78. }
  79.  
  80. // ========================================================================
  81. // STEAMED DUMPLINGS
  82. // ========================================================================
  83. dump = [ 121.0, 76.0, 12.6 ];
  84. dump_hole_c2c = [113, 68];
  85. dump_holes = [
  86. [ +0.5*dump_hole_c2c.x, +0.5*dump_hole_c2c.y ],
  87. [ +0.5*dump_hole_c2c.x, -0.5*dump_hole_c2c.y ],
  88. [ -0.5*dump_hole_c2c.x, +0.5*dump_hole_c2c.y ],
  89. [ -0.5*dump_hole_c2c.x, -0.5*dump_hole_c2c.y ]
  90. ];
  91. module make_dumplings_cutout() {
  92. cube([dump.x, dump.y, 20]+[2,2,0], center=true);
  93. }
  94. module make_dumplings_holes() {
  95. for(xy=dump_holes) {
  96. translate(xy)
  97. cylinder(h=4*dump.z, r=M3_clearance_radius, center=true);
  98. }
  99. }
  100.  
  101. // ========================================================================
  102. // AUX OBJECTS
  103. // ========================================================================
  104. module place_dog_bowl_unit() {
  105. translate([xplate_dog, 0*plate.z, zbase])
  106. rotate(-90,[1,0,0])
  107. children();
  108. }
  109.  
  110. module place_bee_hive_unit() {
  111. translate([xplate_bee,0,zbase])
  112. rotate(-90,[1,0,0])
  113. rotate(180,[0,0,1])
  114. translate([0,0,0*p_thk])
  115. children();
  116. }
  117.  
  118. module place_cabinet() {
  119. translate([0.5*p_wid,0,zbase])
  120. rotate(-90,[1,0,0])
  121. children();
  122. }
  123.  
  124. // ========================================================================
  125. // VENTS
  126. // ========================================================================
  127. vent_dia = 37.8; // cone diavalves
  128. vent_magnet_dia = 23.8; // cone diavalves
  129. spk = [42.5, 42.5, 20.4 ]; // size, less front cone
  130. vent_hole_c2c = [ 34, 34 ];
  131. vent_hole_dia = 3.2;
  132. vent_off = 2;
  133. vent_bkt_rad = 2;
  134. vent_holes = [
  135. [ +0.5*vent_hole_c2c.x, +0.5*vent_hole_c2c.y ],
  136. [ +0.5*vent_hole_c2c.x, -0.5*vent_hole_c2c.y ],
  137. [ -0.5*vent_hole_c2c.x, +0.5*vent_hole_c2c.y ],
  138. [ -0.5*vent_hole_c2c.x, -0.5*vent_hole_c2c.y ]
  139. ];
  140. // two ways to make vent...
  141. // (1) one big hole, or
  142. module make_vent_cutouts() {
  143. cylinder(h=5*vent_off, d=vent_dia+4, center=true);
  144. for(xy=vent_holes) {
  145. translate(xy)
  146. cylinder(h=5*vent_off, d=vent_hole_dia, center=true);
  147. // cylinder_print(h=5*vent_off, d=vent_hole_dia, center=true);
  148. }
  149. }
  150. // (2) pattern of many holes
  151. pattern_num_rings = 7;
  152. pattern_rad_beg = 0.5*vent_dia;
  153. pattern_rad_end = 0.0*vent_dia;
  154. pattern_rad_del = (pattern_rad_end - pattern_rad_beg) / pattern_num_rings;
  155. pattern_chord_del = 3.5;
  156. pattern_hole_dia = 2;
  157. module make_vent_pattern() {
  158. color("black") {
  159. for(j=[0:1:pattern_num_rings]) {
  160. rad = pattern_rad_end - j*pattern_rad_del;
  161. num_holes = floor(2.0*rad*PI / pattern_chord_del);
  162. hole_del = 360.0 / num_holes;
  163. for(i=[0:1:num_holes-1]) {
  164. ang = i*hole_del + (j%2)*0.5*hole_del;
  165. xy = [ rad*cos(ang), rad*sin(ang) ];
  166. translate(xy)
  167. cylinder(h=5*vent_off, d=pattern_hole_dia, center=true);
  168. }
  169. }
  170. cylinder(h=5*vent_off, d=pattern_hole_dia, center=true);
  171. }
  172. }
  173. module place_vent_left() {
  174. translate([xplate_bee,p_thk,zbase])
  175. rotate(90,[1,0,0])
  176. children();
  177. }
  178. module place_vent_right() {
  179. translate([xplate_dog,p_thk,zbase])
  180. rotate(90,[1,0,0])
  181. rotate(180,[0,0,1])
  182. children();
  183. }
  184.  
  185. // ========================================================================
  186. // FAUCET
  187. // ========================================================================
  188. faucet_dia = 0.438 * in2mm;
  189. module make_faucet_hole() {
  190. rotate(90,[1,0,0])
  191. cylinder(h=10, d=faucet_dia, center=true );
  192. }
  193. module place_faucet() {
  194. translate([0.5*p_wid+0.5*dump.x+14,p_thk+0.75,0.5*zbase])
  195. children();
  196. }
  197.  
  198. // ========================================================================
  199. // FINALLY, THE 19-INCH RACK MAIN PANEL
  200. // ========================================================================
  201. module make_panel() {
  202. color("#171717")
  203. cube([p_wid, p_thk, p_hgt]);
  204. }
  205.  
  206. handle_c2c = 6 *in2mm; // 6 inches center to center
  207. handle_hole_dia = 5.24;
  208. module make_handle_holes() {
  209. for( z=[0.5*handle_c2c, -0.5*handle_c2c] ) {
  210. translate([0,0,z])
  211. rotate(90,[1,0,0])
  212. cylinder(h=10*p_thk, d=handle_hole_dia, center=true);
  213. }
  214. }
  215. rack_mount_width = 15.875;
  216. horz_spacing = rack_mount_width / 2;
  217. module place_handles() {
  218. for( x = [ 2*horz_spacing, p_wid - 2*horz_spacing ] ) {
  219. translate([x,0,0.5*p_hgt]) children();
  220. }
  221. }
  222.  
  223. // machine out the panel with the various features
  224. module machine_panel() {
  225. difference() {
  226. make_panel();
  227. union() {
  228. for(z=zv_posns) {
  229. array_valves_row(0,z) {
  230. rotate(90,[1,0,0])
  231. translate([0,0,-0.5*p_thk])
  232. cylinder(h=2*p_thk, d=valve_dia+1, center=true);
  233. }
  234. for(x=xv_posns)
  235. translate([x,0,z])
  236. place_valve() make_valve_assy_screw_holes();
  237. }
  238. place_handles() make_handle_holes();
  239. place_cabinet() make_dumplings_cutout();
  240. place_cabinet() make_plate_screw_holes();
  241. place_dog_bowl_unit() make_plate_screw_holes();
  242. place_bee_hive_unit() make_plate_screw_holes();
  243. if(true) {
  244. place_vent_left() make_vent_cutouts();
  245. place_vent_right() make_vent_cutouts();
  246. } else {
  247. place_vent_right() make_vent_pattern();
  248. place_vent_left() make_vent_pattern();
  249. }
  250. place_faucet() make_faucet_hole();
  251. }
  252. }
  253. }
  254.  
  255. // projection()
  256. translate([0,0,p_thk])
  257. rotate(-90,[1,0,0])
  258. machine_panel();
  259.  
  260.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement