Changes between Initial Version and Version 1 of Burt-Research/KinematicsJointRangesConversionFactors


Ignore:
Timestamp:
Nov 7, 2016, 7:04:18 PM (7 years ago)
Author:
aj
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Burt-Research/KinematicsJointRangesConversionFactors

    v1 v1  
     1= Kinematics, Transmission Ratios, and Joint Ranges =
     2
     3== 4 DOF and 7 DOF ==
     4A good introduction to coordinate frames, transformations and kinematics is beyond the scope of this document. There are several good introductory robotics books available. We recommend Spong, M.; Hutchinson, S.; Vidyasagar, M. Robot Modeling and Control; 2006 John Wiley & Sons as we use the variant of the Denavit-Hartenberg (D-H)  method that is from this book to establish the coordinate frames.
     5
     6D-H frames are defined roughly as shown in Figure 1 when the robot is in its zero position (NOT the robot’s home position). Note that the joint range of Joint 3 (Table 2) prevents the Proficio from actually reaching this position. Frames 0 and 1 are located at the intersection of the J1 and J2 axes. Frame 2 is coincident to the J3 axis. The frame 3 origin is coincident to the center of the haptic ball when it points straight up. The D-H parameters do not change between left- and right-handed configurations. However, the configuration files do contain separate world-to-base transforms for each configuration. These transforms define the origin of the world frame to be at the user’s sternum, 540 mm from the X1-Z1 plane along Z0. The diagram shows the locations of the world origin in left-handed and right-handed robot configurations. A positive joint motion is based on the right hand rule for each axis.
     7
     8{{{
     9#!div class="center" align="center"
     10[[Image(htdocs:therapy/DHFramesSm.PNG)]]
     11
     12'''Figure 1: Proficio D-H frames'''
     13}}}
     14
     15Equation 1 below gives the transform between two adjacent D-H coordinate frames. The D-H parameters that were derived from this equation are located in Table 1 below. Note that c and s stand for cos and sin respectively.
     16
     17{{{
     18#!div class="center" align="center"
     19{{{
     20#!latex
     21$^{i-l}T_{i}=\left[\begin{array}{cccc}
     22c\theta_{i} & -s\theta_{i}c\alpha_{i} & s\theta_{i}s\alpha_{i} & a_{i}c\theta_{i}\\
     23s\theta_{i} & c\theta_{i}c\alpha_{i} & -c\theta_{i}s\alpha_{i} & a_{i}s\theta_{i}\\
     240 & s\alpha_{i} & c\alpha_{i} & d_{i}\\
     250 & 0 & 0 & 1\end{array}\right]$
     26}}}
     27
     28'''Equation 1: D-H generalized transform matrix'''
     29
     30'''Table 1: Proficio frame parameters'''
     31||i||a,,i,,||α,,i,,||d,,i,,||θ,,i,,||
     32||1||0||π/2||0||θ,,1,,||
     33||2||0.650||0||0.156||θ,,2,,||
     34||3||0.435||−π/2||0.069||θ,,3,,||
     35}}}
     36
     37For example, to generate the transform from coordinate Frame 2 to coordinate Frame 1 (i.e. the position and orientation of Frame 2 described in terms of Frame 1 which is also a rotation about joint 2), use the parameters in the second row of Table 1 as follows:
     38
     39{{{
     40#!div class="center" align="center"
     41{{{
     42#!latex
     43$^{1}T_{2}=\left[\begin{array}{cccc}
     44\cos(\theta_{2}) & -\sin(\theta_{2})\cos(0) & \sin(\theta_{2})\sin(0) & 0.650\cos(\theta_{2})\\
     45\sin(\theta_{2}) & \cos(\theta_{2})\cos(0) & -\cos(\theta_{2})\sin(0) & 0.650\sin(\theta_{2})\\
     460 & \sin(0) & \cos(0) & (0.156)\\
     470 & 0 & 0 & 1\end{array}\right]$
     48
     49$^{1}T_{2}=\left[\begin{array}{cccc}
     50\cos\theta_{2} & -\sin\theta_2 & 0 & 0.650\cos\theta_2\\
     51\sin\theta_{2} & \cos\theta_2 & 0 & 0.650\sin\theta_{2}\\
     520 & 0 & 1 & 0.156\\
     530 & 0 & 0 & 1\end{array}\right]$
     54}}}
     55 
     56'''Equation 2: D-H Matrix Example'''
     57}}}
     58
     59Each of the joints has a mechanical stop that limits the motion. Table 2 below shows a complete listing of the joint limits for each axis. 3R and 3L correspond to joint limits for joint 3 in the right and left configurations, respectively.
     60
     61{{{
     62#!div class="center" align="center"
     63'''Table 2: Joint Limits'''
     64||Joint||Positive Joint Limit Rad (deg)||Negative Joint Limit Rad (deg)
     65||1||+0.56 (+32)||-1.01 (-58)
     66||2||+0.96 (+55)||-0.96 (-55)
     67||3R||+2.84 (+163)||+0.40 (+23)
     68||3L||-0.40 (-23)||-2.84 (-163)
     69}}}
     70
     71'''Forward Kinematics for the Proficio'''
     72
     73The forward kinematics of the Proficio are used to determine the end tip location and orientation. These transformations are generated using the parameters in Table 1 and the matrix in Equation 1.
     74
     75The forward kinematics are determined for any frame on the robot by mulitplying all of the transforms up to and including the final frame. To determine the endpoint location and orientation use the following equation:
     76
     77{{{
     78#!div class="center" align="center"
     79{{{
     80#!latex
     81$^{0}T_{3}=^{0}T_{1}^{1}T_{2}^{2}T_{3}^{3}$
     82}}}
     83 
     84'''Equation 3: Tool end tip position and orientation equation for the Proficio'''
     85}}}
     86
     87
     88== Motor-to-Joint Transformations ==
     89'''Motor-to-Joint Position Transformations'''
     90
     91The following transformations show the change in joint positions as a function of motor positions. The input transmission ratios and the differential transmission ratios are calculated from known pulley, pinion, and cable diameters.
     92
     93{{{
     94#!div class="center" align="center"
     95'''Table 8: Arm Transmission Ratios'''
     96||Parameter||Value
     97||N,,1,,||8.51
     98||N,,2,,||8.51
     99||n,,2,,||0.56
     100||N,,3,,||9.55
     101
     102{{{
     103#!latex
     104$\left[\begin{array}{c}
     105J\theta_{1}\\
     106J\theta_{2}\\
     107J\theta_{3}\end{array}\right]=\left[\begin{array}{cccc}
     108-1/2N_1 & 1/2N_2 & 0\\
     109n_2/2N_1 & n_2/2N_1 & 0\\
     1100 & 0 & 1/N_3\end{array}\right]\left[\begin{array}{c}
     111M\theta_{1}\\
     112M\theta_{2}\\
     113M\theta_{3}\end{array}\right]$
     114}}}
     115 
     116'''Equation 6: WAM Motor-to-Joint position transformations      '''
     117}}}
     118
     119The motor position can also be derived from joint space by taking the inverse of the multiplying matrix. For convenience, they are as follows:
     120
     121{{{
     122#!div class="center" align="center"
     123{{{
     124#!latex
     125$\left[\begin{array}{c}
     126M\theta_{1}\\
     127M\theta_{2}\\
     128M\theta_{3}
     129\end{array}\right]=\left[\begin{array}{cccc}
     130-N_{1} & N_1/n_2 & 0\\
     131N_{1} & N_2/n_2 & 0\\
     1320 & 0 & N_3\end{array}\right]\left[\begin{array}{c}
     133J\theta_{1}\\
     134J\theta_{2}\\
     135J\theta_{3}\end{array}\right]$
     136}}}
     137
     138'''Equation 8: Arm Joint-to-Motor position transformations      '''
     139}}}
     140
     141'''Motor-to-Joint Torque Transformations'''
     142
     143Similar to the position transformations the following equations determine the joint torque from the motor torque:
     144
     145{{{
     146#!div class="center" align="center"
     147{{{
     148#!latex
     149$\left[\begin{array}{c}
     150J\tau_{1}\\
     151J\tau_{2}\\
     152J\tau_{3}\end{array}\right]=\left[\begin{array}{cccc}
     153-N_1 & N_2 & 0\\
     154N_1/n_2 & N_2/n_2 & 0\\
     1550 & 0 & N_3\end{array}\right]\left[\begin{array}{c}
     156M\tau_{1}\\
     157M\tau_{2}\\
     158M\tau_{3}\end{array}\right]$
     159}}}
     160
     161'''Equation 10: Arm Motor-to-Joint torque transformation'''
     162}}}
     163
     164The following equations determine motor torque from the joint torque:
     165
     166{{{
     167#!div class="center" align="center"
     168{{{
     169#!latex
     170$\left[\begin{array}{c}
     171M\tau_{1}\\
     172M\tau_{2}\\
     173M\tau_{3}\end{array}\right]=\left[\begin{array}{cccc}
     174-1/2N_1 & n_2/2N_1 & 0\\
     1751/2N_2 & n_2/2N_2 & 0\\
     1760 & 0 & 1/N_3\end{array}\right]\left[\begin{array}{c}
     177J\tau_{1}\\
     178J\tau_{2}\\
     179J\tau_{3}\end{array}\right]$
     180}}}
     181 
     182'''Equation 12: Arm Joint-to-Motor torque transformations        '''
     183
     184}}}
     185