Ci-dessous, les différences entre deux révisions de la page.
| Prochaine révision | Révision précédente | ||
|
projets:chimeres-orchestra:v4:accueil [2017/02/09 18:01] resonance créée |
projets:chimeres-orchestra:v4:accueil [2017/02/10 17:27] (Version actuelle) resonance |
||
|---|---|---|---|
| Ligne 1: | Ligne 1: | ||
| ====== Version 4 ====== | ====== Version 4 ====== | ||
| + | Version en bois abandonnée avec l' | ||
| + | |||
| + | {{: | ||
| + | |||
| + | ===== CNC ===== | ||
| + | Découpe à la fraiseuse numérique dans du bois " | ||
| + | {{: | ||
| + | |||
| + | |||
| + | <WRAP group> | ||
| + | <WRAP third column> | ||
| + | <WRAP third column> | ||
| + | <WRAP third column> | ||
| + | </ | ||
| + | |||
| + | <WRAP group> | ||
| + | <WRAP third column> | ||
| + | <WRAP third column> | ||
| + | <WRAP third column> | ||
| + | </ | ||
| + | |||
| + | |||
| + | ===== 3D ===== | ||
| + | Entraînement de la tige trapézoïdale en 3D | ||
| + | {{: | ||
| + | |||
| + | ++++ Code OpenSCAD | | ||
| + | <code c> | ||
| + | include < | ||
| + | |||
| + | w=60; | ||
| + | d=12; | ||
| + | h=28; | ||
| + | |||
| + | $fn=50; | ||
| + | |||
| + | rect_l = 18; | ||
| + | rect_w = 5.1; | ||
| + | |||
| + | difference(){ | ||
| + | // Forme principale | ||
| + | cube([w, | ||
| + | | ||
| + | // Trous rectangulaires côtés | ||
| + | translate([0, | ||
| + | translate([w-rect_l, | ||
| + | | ||
| + | // Axe central - entrainement | ||
| + | translate([w/ | ||
| + | rotate([-90, | ||
| + | cylinder(h=d+1, | ||
| + | // hex_nut (height, thread_d, size, tolerance, quality, thread, pitch); | ||
| + | translate([w/ | ||
| + | rotate([-90, | ||
| + | hex_nut (7.5, 7, 13, 0, 0, 0, " | ||
| + | |||
| + | // Axes porteurs | ||
| + | translate([17.5, | ||
| + | rotate([-90, | ||
| + | cylinder(h=d+1, | ||
| + | translate([w-17.5, | ||
| + | rotate([-90, | ||
| + | cylinder(h=d+1, | ||
| + | | ||
| + | | ||
| + | rotate([-90, | ||
| + | cylinder(h=2+0.5, | ||
| + | translate([w-17.5, | ||
| + | rotate([-90, | ||
| + | cylinder(h=2+0.5, | ||
| + | | ||
| + | |||
| + | // Axes 4mm | ||
| + | axe3_x = 9; | ||
| + | translate([axe3_x, | ||
| + | translate([w-axe3_x, | ||
| + | | ||
| + | translate([axe3_x, | ||
| + | translate([w-axe3_x, | ||
| + | |||
| + | translate([axe3_x, | ||
| + | hex_nut (3.1, 3.5, 7, 0, 0, 0, " | ||
| + | translate([w-axe3_x, | ||
| + | hex_nut (3.1, 3.5, 7, 0, 0, 0, " | ||
| + | } | ||
| + | </ | ||
| + | ++++ | ||