Vizzy Denavit–Hartenberg parameters: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 128: | Line 128: | ||
</td><td align="center"> | </td><td align="center"> | ||
{| class="wikitable" style="text-align: center" | {| class="wikitable" style="text-align: center" | ||
| style="background:#d0d0d0;" colspan=" | | style="background:#d0d0d0;" colspan="7" | Left arm | ||
|- | |- | ||
| style="background:#f0f0f0;"|'''Link''' | | style="background:#f0f0f0;"|'''Link''' | ||
Line 135: | Line 135: | ||
| style="background:#f0f0f0;"|'''theta''' | | style="background:#f0f0f0;"|'''theta''' | ||
| style="background:#f0f0f0;"|'''D''' | | style="background:#f0f0f0;"|'''D''' | ||
| style="background:#f0f0f0;"|'''min/max''' | |||
| style="background:#f0f0f0;"|''' ''' | | style="background:#f0f0f0;"|''' ''' | ||
|- | |- | ||
| 0||Pi/2||0||0||0||virtual link | | 0||Pi/2||0||0||0||0/0||virtual link | ||
|- | |- | ||
| 1||Pi/2||0||0||0.0805||M0 → M0L | | 1||Pi/2||0||0||0.0805||-20/20||M0 → M0L | ||
|- | |- | ||
| 2||-Pi/2||0||0||-0.212||M0L → M1L | | 2||-Pi/2||0||0||-0.212||0/110||M0L → M1L | ||
|- | |- | ||
| 3||Pi/2||0||-Pi/2||0.10256||M1L → M2L | | 3||Pi/2||0||-Pi/2||0.10256||-85/85||M1L → M2L | ||
|- | |- | ||
| 4||-Pi/2||0||11*Pi/18||0||M2L → M3L | | 4||-Pi/2||0||11*Pi/18||0||-35/35||M2L → M3L | ||
|- | |- | ||
| 5||-Pi/2||0||-Pi/2||-0.16296||M3L → M4L | | 5||-Pi/2||0||-Pi/2||-0.16296||-35/35||M3L → M4L | ||
|- | |- | ||
| 6||Pi/2||0||0||0||M4L → M5L | | 6||Pi/2||0||0||0||0/220||M4L → M5L | ||
|- | |- | ||
| 7||Pi/2||0||0||-0.18925||M5L → M6L | | 7||Pi/2||0||0||-0.18925||0/225||M5L → M6L | ||
|- | |- | ||
| 8||Pi/2||0||Pi/2||0||M6L → M7L | | 8||Pi/2||0||Pi/2||0||0/225||M6L → M7L | ||
|- | |- | ||
| 9||-Pi/2||-0.1||0||0||M7L → End-effector | | 9||-Pi/2||-0.1||0||0||0/0||M7L → End-effector | ||
|} | |} | ||
</td></tr></table> | </td></tr></table> |
Revision as of 15:07, 4 January 2012
|
Virtual link corresponds to:
<math> H_0= \begin{bmatrix} 1.0 & 0.0 & 0.0 & 0.0\\ 0.0 & 0.0 & -1.0 & 0.0\\ 0.0 & 1.0 & 0.0 & 0.0\\ 0.0 & 0.0 & 0.0 & 1.0 \end{bmatrix} </math>
or if you prefer code:
//H0 (1.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0) // given per rows (Very precise MATLAB Matrix) Matrix H0(4,4); H0.zero(); H0(0,0)=1.0; H0(1,2)=-1.0; H0(2,1)=1.0; H0(3,3)=1.0;
Parameters by Nuno Conraria.