Fera

Untitled

Nov 10th, 2014
324
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.47 KB | None | 0 0
  1. MCT 4215
  2.  
  3. 1. Explain the differences between "moving frames" and "fixed frames" approach in determining positions and orientations
  4. -- Moving frame is "current frame", all transformations are post-multiplied (->). Fixed frame is "reference frame", all transformations are pre-multiplied (<-).
  5.  
  6. 2. Forward and inverse mapping of RPY (Roll, Pitch, Yaw) angles of wrist of robot.
  7. -- RPY(a,o,n): Rot(a) Rot(o) Rot(n)
  8. -- Ta = atan2(ny,nx) / atan2(-ny,-nx)
  9. -- To = atan2(-nz, (nxCta + nySta))
  10. -- Tn = atan2(-ayCta+axSta, oyCta-oxSta)
  11.  
  12. 3. Usage of sensors are used in a robotic.
  13. - Position (LVDT), velocity, force (stress gauge), touch, tactile, proximity, range (ultrasonic/infrared), vision
  14. - Cost, size, weight, output, interface, resolution
  15. - 63.2% time constant, .1-.9 rise, 0-.98 settle
  16. - CR differential, RC integral (op-amp)
  17. - Proximity sensor (inductive - metal, capacitive - nonmental, eddy current)
  18.  
  19. 4. Incremental encoder rating 2000pulse/rev attached with motor 1st joint. Reduction gear with ratio 4 between body and shaft. Calculate resolution angular displacement of arm. Any change of encoder replaced with 13-bit absolute encoder?
  20. Pulse/deg = 2000/360
  21. Deg/pulse = 0.18
  22.  
  23. 13-bit absolute: 8192 position
  24. Deg/position: 360/8192 = 0.044
  25.  
  26. 5. In robotic system, gear reduction is required. Why? Differentiate Ieffective/Itotal.
  27. - Higher torque, lower speed, manageable
  28. - Decreased inertial load: Effective = Iload/N^2; Total = Iload/N^2 + Imotor
  29.  
  30. 6. Hydraulic/Electric actuator in robot design
  31. - Low vs avg power-to-weight
  32. - High-maint vs low-maint
  33. - Stiff vs less stiff
  34. - No gear reduce vs reduce
  35. - Inertial load vs less load (gear red.)
  36. - Non-clean vs clean
  37.  
  38. 7. Assign joint frames according to D-H algorithm. Tabulate D-H parameters. Derive A matrices for link 1-3.
  39. -- DH = Rot(z,th)Trans(0,0,d)Trans(a,0,0),Rot(x,al)
  40.  
  41. 8. Consider two frames A and C. Coordinate vector of a point P in the frame A is (a)P= [6 3 5]T. Find coordinate vector of point P in frame C.
  42.  
  43. 9. Derive inverse kinematic equations for t1, t2, and t3 and symbolic form.
  44. (Given 3 A-matrices and D-H representation)
  45.  
  46. C 0 S 0
  47. S 0 -C 0
  48. 0 1 0 0
  49. 0 0 0 1
  50.  
  51. Revolute. Alpha = pi/2. a = 0.
  52.  
  53. C -S 0 LC
  54. S C 0 LS
  55. 0 0 1 0
  56. 0 0 0 1
  57.  
  58. Revolute. Alpha = 0. a = L.
  59.  
  60. C -S 0 LC
  61. S C 0 LS
  62. 0 0 1 0
  63. 0 0 0 1
  64.  
  65. Revolute. Alpha = 0. a = L.
  66.  
  67. 10. Calculate t1, t2, t3 for following location. Length of each link L1,2,3 are 1, 2, 1.5ft.
  68.  
  69. T=
  70. 0.366 0.785 0.5 1.772
  71. 0.211 0.453 -.866 1.023
  72. -.906 .422 0 -2.77
  73. 0 0 0 1
Advertisement
Add Comment
Please, Sign In to add comment