User Tools

Site Tools


ece4560:maniplots

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
ece4560:maniplots [2015/02/23 19:34] pvelaece4560:maniplots [2024/08/20 21:38] (current) – external edit 127.0.0.1
Line 1: Line 1:
 ====== Plotting/Displaying Manipulators in Matlab ====== ====== Plotting/Displaying Manipulators in Matlab ======
  
-This site has links to display code for the different manipulators as well as implementation examples.  You should be able to incorporate these display functions into your homework assignmented.  Some are rudimentary (simple lines and circles), some are more complex (3D models).+This site has links to display code for the different manipulators as well as implementation examples.  You should be able to incorporate these display functions into your homework assignments.  Some are rudimentary (simple lines and circles), some are more complex (3D models).  The files are zip files for compatibility with this wiki.
  
 ===== Simple Planar Manipulators ===== ===== Simple Planar Manipulators =====
 -------------------------------------- --------------------------------------
-The manipulators to appear in the homework range from a simple R2 manipulator up to an R4 manipulator.  The code for each of them is below:+The manipulators to appear in the homework range from a simple R2 manipulator up to an R4 manipulator.  The code for each of the functions below is {{ECE4560:displayPlanarArms.zip|here}}. What is provided are Matlab pcode files (pre-compiled Matlab code) and empty m-files with help documentation.
  
-  * Planar R2 (default link lengths: 1, 3/4+  * ''planarR2_display'': Planar R2 (default link lengths: 1, 1/2
-  * Planar R3 (default link lengths: 1, 1/2, 1/4) +  * ''planarR3_display'': Planar R3 (default link lengths: 1, 1/2, 1/4) 
-  * Planar R4 (default link lengths: 1, 1, 1/2, 1/4)+  * ''planarR4_display'': Planar R4 (default link lengths: 1, 1, 1/2, 1/4)
  
 Invocation is pretty straightforward.  Almost always goes as follows: Invocation is pretty straightforward.  Almost always goes as follows:
Line 15: Line 15:
 planarRX_display(alphaJoints, linkLens, gripLen); planarRX_display(alphaJoints, linkLens, gripLen);
 </code> </code>
-although the second and third arguments are optional.  For each of them, it is possible to give X+1 joint coordinates; the additional joint value is a length  that specifies the gripper opening width (it defaults to some half-open state if not passed).  Suppose that you had run ''ode45'' or some other numerical integrator in Matlab and want to visualize the resulting simulation, then the following should work:+although the second and third arguments are optional.  The revolute joint variables are given in radians. For each of them, it is possible to give X+1 joint coordinates; the additional joint value is a length  that specifies the gripper opening width (it defaults to some half-open state if not passed). An example invocation for the ``planarR2_display`` function is 
 +<code matlab> 
 +planarR2_display([pi/4; pi/8]); 
 +</code> 
 +Note that the argument is a vertical/column vector.  It will not work otherwise.  The optional arguments can be either row- or column- vectors: 
 +<code matlab> 
 +planarR2_display([pi/4; pi/8], [3/4, 3/4]); 
 +</code> 
 +or 
 +<code matlab> 
 +planarR2_display([pi/4; pi/8], [3/4; 3/4], 1/6); 
 +</code> 
 +Suppose that you had run ''ode45'' or some other numerical integrator in Matlab and want to visualize the resulting simulation, then the following should work:
 <code matlab> <code matlab>
 nframes = 100; nframes = 100;
 tvect = linspace(ti,tf,nframes); tvect = linspace(ti,tf,nframes);
 for tT = tvect for tT = tvect
-  alphaT = interp1(tsol, alphasol, tT);+  alphaT = transpose(interp1(tsol, alphasol, tT));
   planarRX_display(alphaT, ll, gl);   planarRX_display(alphaT, ll, gl);
 end end
 </code> </code>
-where it is assumed that ''tsol'' and ''alphasol'' were the ouputs of the numerical integrator.+where it is assumed that ''tsol'' and ''alphasol'' were the ouputs of the numerical integrator.  The reason for interpolating on linearly spaced out time points is that the numerical integration doesn't return evenly spaced time points.  They are irregularly spaced and depend on the complexity of the velocity at that point in time (simpler velocities allow the numerical integrator to jump larger spans of time because the integration looks linear). 
 + 
 +If you have issues, you can always type 
 +<code matlab> 
 +help planarRX_display 
 +</code> 
 +with the proper X value and you will get some documentation (assuming that you kept the documentation m-files around).  
  
 ===== Piktul ===== ===== Piktul =====
 ------------------ ------------------
  
-The simplest manipulator to be used in the course is called *piktul* as named by the student who helped me design it.  It is the simplest instantiation of a SCARA manipulator that we could create using laser cut parts and the lowest-torquelowest-cost servo motors available.+The simplest manipulator to be used in the lab portion of the course is called **piktul** as named by the student who helped me design it.  It is a basic instantiation of a SCARA manipulator; one that we could create using laser cut parts and RC servo motors. Piktul is a planar R3 manipulator where the last joint angle has no length, however it can also actuate vertically meaning that it can pick up and place things in a roughly planar landscape (you can think of it as being able to manipulate things at different heights, but within a horizontal slice).  More technically the workspace is SE(2) x |R. It is kinematically sufficient when considering manipulation tasks in SE(2). 
 + 
 +The display function requires the SE3 class file to have been minimally coded in order to work.  Minimal coding means the times, mtimes, leftact, and inv member functions.  The easiest is to just invoke it with joint angles only and let the optional arguments assume the default values: 
 +<code matlab> 
 +piktul_display(alphaJoints); 
 +</code> 
 +Functional code is: 
 +<code matlab> 
 +piktul_display([1.25; 25; -35; 80; 0.75]); 
 +</code> 
 +which sets the height to 1.25, the revolute joints to (25, -35, 80), and the gripper to be 0.75 inches open.  The piktul manipulator should be displayed with that joint configuration.  The joint vector should be a column-vector and the revolute angles should be in degrees with translational/distance variables in inches. 
 + 
 +Matlab code: {{ECE4560:piktul_display.m| display}}
  
 ===== Lynx6 ===== ===== Lynx6 =====
 ----------------- -----------------
  
-The slightly more fully functional manipulator to be used in the course is called the *Lynx 6* manipulator made by [[www.lynxmotion.com | Lynxmotion]].  We have different versions, from the earliest Lexan one, up to the more recent aluminum ones.+The slightly more fully functional manipulator to be used in the course is called the **Lynx 6** manipulator made by [[http://www.lynxmotion.com | Lynxmotion]].  
  
 +<code matlab>
 +lynx6_display([10;40;50;50;4]);
 +</code>
 +The joint vector should be a column-vector and the revolute angles should be in degrees.  The first five joint coordinates are for revolute joints (degrees) and the sixth coordinate is the gripper opening (inches).
 +
 +Matlab code: {{ECE4560:lynx6_display.p | display}}
 +
 +===== Elbow 6R =====
 +-----------------
 +
 +The 6R elbow manipulator (6R means 6 revolute joints) is a kinematically sufficient manipulator for SE(3).
 +It is one of the most common designs found in industry (at least when working with kinematically sufficient manipulators).
 +
 +<code matlab>
 +elbow6R_display([10;40;50;50;-30;4]);
 +</code>
 +The joint vector should be a column-vector and the revolute angles should be in degrees.  The first six joint coordinates are for revolute joints (degrees) and the sixth coordinate is the gripper opening (inches).
  
 +Matlab code: {{ECE4560:elbow6R_display.p | display}}
 +---------
 +;#;
 +[[ECE4560:start | ECE4560]] -- [[: | Main ]]
 +;#;
ece4560/maniplots.1424738075.txt.gz · Last modified: 2024/08/20 21:38 (external edit)