選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

180 行
9.2KB

  1. rod_diameter = 8;
  2. rod_separation = 70; // center to center
  3. rod_length = 400;
  4. bushing_diameter = 15.4;
  5. bushing_length = 16.4;
  6. bushing_separation = 24; // edge to edge; original carriage: 8
  7. belt_width = 6 ; // a little more, maybe 6.2
  8. belt_thickness = 1.5;
  9. belt_separation = 10; // edge to edge
  10. belt_length = rod_length;
  11. belt_rod_separation = 20; // center to center
  12. belt_y_offset = rod_separation / 2 - belt_rod_separation;
  13. bed_x = 320;
  14. bed_y = 155;
  15. bed_thickness = 5;
  16. bed_z_home = -16; // distance between center of rods and top of heat bed when Z axis is homed
  17. wall_thickness = 3;
  18. carriage_length = bushing_separation + bushing_length * 2 + wall_thickness * 2;
  19. motor_length = 30;
  20. motor_y_offset = 6;
  21. motor_z_offset = 30;
  22. module printer() {
  23. // rods
  24. translate([0, rod_separation/2, 0]) rotate([0, 90, 0]) cylinder(d=rod_diameter, h=rod_length, $fn=64);
  25. translate([0, -rod_separation/2, 0]) rotate([0, 90, 0]) cylinder(d=rod_diameter, h=rod_length, $fn=64);
  26. // print bed
  27. translate([rod_length/2 - bed_x/2, -bed_y/2, bed_z_home - bed_thickness]) cube([bed_x, bed_y, bed_thickness]);
  28. // belts
  29. color([0,0,0,0.3]) translate([0, belt_y_offset - belt_width/2, belt_separation/2]) cube([belt_length, belt_width, belt_thickness]);
  30. color([0,0,0,0.3]) translate([0, belt_y_offset - belt_width/2, -belt_separation/2 - belt_thickness]) cube([belt_length, belt_width, belt_thickness]);
  31. // endstop switch
  32. translate([rod_length - 10, 2, 30]) color([0, 0, 0, 0.5]) cube([10, 15, 5]);
  33. }
  34. module extruder() {
  35. translate([-wall_thickness, 0, 0]) {
  36. // motor body
  37. color([0.5, 0.5, 0.5]) translate([-15, 0, 0]) cube([motor_length, 42, 42], center=true);
  38. color([0.5, 0.5, 0.5]) rotate([0, 90, 0]) cylinder(d=25, h=2, $fn=64);
  39. // motor shaft
  40. color([0.8, 0.8, 0.8]) rotate([0, 90, 0]) cylinder(d=5, h=20, $fn=64);
  41. }
  42. // extruder body
  43. color([0, 0, 0, 0.5]) translate([0, -21, -21]) cube([26, 46, 44]);
  44. // heat sink + fan
  45. color([1,1,1,0.5]) translate([32, 2, 3]) rotate([45, 0, 0]) cube([21, 40, 40], center=true);
  46. // large gear
  47. translate([7.5, 15.5, 15.5]) color([0,0,0,0.5]) rotate([0, 90, 0]) cylinder(d=34, h=4, center=true);
  48. // heat break
  49. color([1, 1, 1, 0.5]) translate([12, 12, -21 -25 ]) cylinder(d=8, h=25);
  50. translate([3,3,-42]) cube([25,18,12]);
  51. }
  52. module carriage_bushings() {
  53. translate([ bushing_separation/2 + bushing_length/2, rod_separation/2, 0]) rotate([0, 90, 0]) cylinder(d=bushing_diameter, h=bushing_length, $fn=64, center=true);
  54. translate([-bushing_separation/2 - bushing_length/2, rod_separation/2, 0]) rotate([0, 90, 0]) cylinder(d=bushing_diameter, h=bushing_length, $fn=64, center=true);
  55. translate([ bushing_separation/2 + bushing_length/2, -rod_separation/2, 0]) rotate([0, 90, 0]) cylinder(d=bushing_diameter, h=bushing_length, $fn=64, center=true);
  56. translate([-bushing_separation/2 - bushing_length/2, -rod_separation/2, 0]) rotate([0, 90, 0]) cylinder(d=bushing_diameter, h=bushing_length, $fn=64, center=true);
  57. }
  58. module carriage_bushings_cutout() {
  59. hull() {
  60. translate([ bushing_separation/2 + bushing_length/2, rod_separation/2, 0]) rotate([0, 90, 0]) cylinder(d=bushing_diameter, h=bushing_length, $fn=64, center=true);
  61. translate([ bushing_separation/2 + bushing_length/2, rod_separation/2, -50]) rotate([0, 90, 0]) cylinder(d=bushing_diameter, h=bushing_length, $fn=64, center=true);
  62. }
  63. hull() {
  64. translate([-bushing_separation/2 - bushing_length/2, rod_separation/2, 0]) rotate([0, 90, 0]) cylinder(d=bushing_diameter, h=bushing_length, $fn=64, center=true);
  65. translate([-bushing_separation/2 - bushing_length/2, rod_separation/2, -50]) rotate([0, 90, 0]) cylinder(d=bushing_diameter, h=bushing_length, $fn=64, center=true);
  66. }
  67. hull() {
  68. translate([ bushing_separation/2 + bushing_length/2, -rod_separation/2, 0]) rotate([0, 90, 0]) cylinder(d=bushing_diameter, h=bushing_length, $fn=64, center=true);
  69. translate([ bushing_separation/2 + bushing_length/2, -rod_separation/2, -50]) rotate([0, 90, 0]) cylinder(d=bushing_diameter, h=bushing_length, $fn=64, center=true);
  70. }
  71. hull() {
  72. translate([-bushing_separation/2 - bushing_length/2, -rod_separation/2, 0]) rotate([0, 90, 0]) cylinder(d=bushing_diameter, h=bushing_length, $fn=64, center=true);
  73. translate([-bushing_separation/2 - bushing_length/2, -rod_separation/2, -50]) rotate([0, 90, 0]) cylinder(d=bushing_diameter, h=bushing_length, $fn=64, center=true);
  74. }
  75. }
  76. module motor_plate() {
  77. difference() {
  78. cube([wall_thickness, 42 + wall_thickness * 2 + 2, 44], center=true);
  79. translate([0, 15.5 , 15.5]) rotate([0, 90, 0]) cylinder(d=3.8, h=wall_thickness, center=true, $fn=64);
  80. translate([0, 15.5, -15.5]) rotate([0, 90, 0]) cylinder(d=3.8, h=wall_thickness, center=true, $fn=64);
  81. translate([0, -15.5, 15.5]) rotate([0, 90, 0]) cylinder(d=3.8, h=wall_thickness, center=true, $fn=64);
  82. translate([0, -15.5, -15.5]) rotate([0, 90, 0]) cylinder(d=3.8, h=wall_thickness, center=true, $fn=64);
  83. rotate([0, 90, 0]) cylinder(d=22, h=wall_thickness, center=true, $fn=64);
  84. }
  85. hull() {
  86. translate([motor_length/2 + wall_thickness/2, 21 + wall_thickness/2 +1, -21 - 1.5]) cube([motor_length, wall_thickness, 1], center=true);
  87. translate([0, 21 + wall_thickness/2 + 1, 21.5]) cube([wall_thickness, wall_thickness, 1], center=true);
  88. }
  89. hull() {
  90. translate([motor_length/2 + wall_thickness/2, -21 - wall_thickness/2 -1, -21 - 1.5]) cube([motor_length, wall_thickness, 1], center=true);
  91. translate([0, -21 - wall_thickness/2 -1, 21.5]) cube([wall_thickness, wall_thickness, 1], center=true);
  92. }
  93. }
  94. module carriage() {
  95. platform_length = 33;
  96. platform_thickness = 3;
  97. platform_top_z = 8.5;
  98. platform2_length = 10;
  99. difference() {
  100. union() {
  101. // "katamaran" carriages
  102. translate([0, rod_separation/2, 0]) rotate([0, 90, 0]) cylinder(d=bushing_diameter + wall_thickness * 2, h=carriage_length, center=true, $fn=64);
  103. translate([0,-rod_separation/2, 0]) rotate([0, 90, 0]) cylinder(d=bushing_diameter + wall_thickness * 2, h=carriage_length, center=true, $fn=64);
  104. translate([0, rod_separation/2, -bushing_diameter/4 - wall_thickness/2]) cube([carriage_length, bushing_diameter + wall_thickness * 2, bushing_diameter/2 + wall_thickness], center=true);
  105. translate([0, -rod_separation/2, -bushing_diameter/4 - wall_thickness/2]) cube([carriage_length, bushing_diameter + wall_thickness * 2, bushing_diameter/2 + wall_thickness], center=true);
  106. translate([carriage_length/2 - platform_length/2, rod_separation/2 - bushing_diameter / 4 - wall_thickness / 2, platform_top_z / 2]) cube([platform_length, bushing_diameter/2 + wall_thickness, platform_top_z], center=true);
  107. translate([carriage_length/2 - platform_length/2,-rod_separation/2 + bushing_diameter / 4 + wall_thickness / 2, platform_top_z / 2]) cube([platform_length, bushing_diameter/2 + wall_thickness, platform_top_z], center=true);
  108. // platforms
  109. translate([carriage_length/2 - platform_length/2, 0, platform_top_z - platform_thickness/2]) cube([platform_length, rod_separation, platform_thickness], center=true);
  110. //translate([-carriage_length/2 + platform2_length/2, 0, platform_top_z - platform_thickness/2]) cube([platform2_length, rod_separation, platform_thickness], center=true);
  111. // motor plate
  112. translate([carriage_length/2 - 30 - wall_thickness/2, motor_y_offset, motor_z_offset]) motor_plate();
  113. }
  114. // cutouts for bushings and rod clearance
  115. carriage_bushings_cutout();
  116. hull() {
  117. translate([0, rod_separation/2, 0]) rotate([0, 90, 0]) cylinder(d=rod_diameter + 3, h=rod_length, center=true, $fn=64);
  118. translate([0, rod_separation/2, -50]) rotate([0, 90, 0]) cylinder(d=rod_diameter + 3, h=rod_length, center=true, $fn=64);
  119. }
  120. hull() {
  121. translate([0, -rod_separation/2, 0]) rotate([0, 90, 0]) cylinder(d=rod_diameter + 3, h=rod_length, center=true, $fn=64);
  122. translate([0, -rod_separation/2, -50]) rotate([0, 90, 0]) cylinder(d=rod_diameter + 3, h=rod_length, center=true, $fn=64);
  123. }
  124. //cutouts for belt
  125. //translate([0, belt_y_offset, belt_separation/2 + belt_thickness/2]) cube([belt_length, belt_width * 1.5, belt_thickness], center=true);
  126. //translate([0, belt_y_offset - belt_width * 1.5, belt_separation/2 + belt_thickness -platform_thickness/2]) cube([belt_length, belt_width * 1.5, platform_thickness], center=true);
  127. #translate([5, belt_y_offset + belt_width, platform_top_z - wall_thickness]) cylinder(d=2.5, h=wall_thickness, $fn=64);
  128. #translate([5, belt_y_offset - belt_width, platform_top_z - wall_thickness]) cylinder(d=2.5, h=wall_thickness, $fn=64);
  129. }
  130. }
  131. %printer();
  132. translate([100, 0, 0]) {
  133. translate([carriage_length/2 - motor_length - wall_thickness, motor_y_offset, motor_z_offset]) rotate([0, 0, -180]) %extruder();
  134. carriage();
  135. }