Warning
This page is located in archive. Go to the latest version of this course pages. Go the latest version of this page.

Homework 02 - Denavit-Hartenberg Convention

Task

  1. Describe the kinematics of Motoman MA1400 manipulator using its dimensions in Denavit-Hartenberg convention as explained in 03.
  2. Implement a simulator of the manipulator in MATLAB Robotic Toolbox.

Use

>>addpath('robot');

to add the robotic toolbox to Matlab path. A manipulator with rotational links can be created by

>>L{1} = link( [ alpha, a, 0, d, 0, theta_offset ],'standard');
>>L{2} = ....
>>.
>>.
>>r = robot( L, 'PRO', 'name', '' );

and visualized by

>>drivebot(r);
>>view([1;1;1]);

Upload

Upload via the course ware the zip archive hw02.zip containing

  1. hw02.pdf report file describing your solution containing
    1. an illustration of all axes of motion, all DH coordinate systems, numbered and described;
    2. origins and orientations of angles;
    3. a table with DH parameters;
    4. a description of the choices of DH coordinate systems;
    5. a description of your Matlab simulator.
  2. hw02.m MATLAB simulator of the manipulator
  3. all your additional MATLAB files required by hw02.m
courses/pro/labs/hw02.txt · Last modified: 2019/06/26 14:53 (external edit)