Vizzy Denavit–Hartenberg parameters: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 70: | Line 70: | ||
</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 eye | ||
|- | |- | ||
| style="background:#f0f0f0;"|'''Link''' | | style="background:#f0f0f0;"|'''Link''' | ||
Line 77: | Line 77: | ||
| 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||M0 → M1 | | 1||Pi/2||0||0||0||-20/20||M0 → M1 | ||
|- | |- | ||
| 2||Pi/2||0||0||-0.37||M1 → M2 | | 2||Pi/2||0||0||-0.37||-53/53||M1 → M2 | ||
|- | |- | ||
| 3||Pi||0.13221||19*Pi/17||0||M2 → M3 | | 3||Pi||0.13221||19*Pi/17||0||-18/37||M2 → M3 | ||
|- | |- | ||
| 4||-Pi/2||0||2*Pi/17||0.111||M3 → M5 | | 4||-Pi/2||0||2*Pi/17||0.111||-38/38||M3 → M5 | ||
|- | |- | ||
| 5||0||0.05||0||0||M5 → End-effector | | 5||0||0.05||0||0||-38/38||M5 → End-effector | ||
|} | |} | ||
</td></tr></table> | </td></tr></table> |
Revision as of 14:54, 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.