资源简介
包含两种机械臂建模实现方式,可以求出机械臂正运动学末端坐标系到基坐标系的转换矩阵,有转换矩阵形式实现和robotics toolbox实现

代码片段和文件信息
%%
%%Transformation matrix
% clear;
% clc;
% Transformation matrix
% a1 = 0;ar1 = 0;d1 = 0;th1 = 0;
% a2 = 0;ar2 = -pi/2;d2 = 149.09;th2 = pi/2;
% a3 = 431.8;ar3 = 0;d3 = 0;th3 = 0;
% a4 = 20.32;ar4 = -pi/2;d4 = 433.07;th4 = 0;
% a5 = 0;ar5 = pi/2;d5 = 0;th5 = pi/2;
% a6 = 0;ar6 = -pi/2;d6 = 0;th6 = 0;
%
% T16 = eye(4);
%
% for i=1:6
% t1 = eval([‘th‘ num2str(i)]);
% t2 = eval([‘ar‘ num2str(i)]);
% t3 = eval([‘d‘ num2str(i)]);
% t4 = eval([‘a‘ num2str(i)]);
%
% T(::i)=[cos(t1)-sin(t1)0t4;
% sin(t1)*cos(t2)cos(t1)*cos(t2)-sin(t2)-t3*sin(t2);
% sin(t1)*sin(t2)cos(t1)*sin(t2)cos(t2)t3*cos(t2);
% 0001];
% end
%
% for k=1:6
% T16 = T16*T(::k);
% end
%
% T16
%%
%标准DH建立puma560机器人模型
%显示D-H表
clear;
clc;
%建立机器人模型
% theta d a alpha offset
L1=link([0 0 0 0 0 ]‘modified‘); %连杆的D-H参数
L2=link([0 149.09 0 -pi/2 0 ]‘modified‘);
L3=link([0 0 431.8 0 0 ]‘modified‘);
L4=link([0 433.07 20.32 -pi/2 0 ]‘modified‘);
L5=link([0 0 0 pi/2 0 ]‘modified‘);
L6=link([0 0 0 -pi/2 0 ]‘modified‘);
robot=Seriallink([L1 L2 L3 L4 L5 L6]‘name‘‘puma560‘‘base‘ ...
transl(0 0 0.62)* trotz(0)); %连接连杆,机器人取名puma560
% robot.plot3d([0pi/200pi0]);%输出机器人模型,后面的六个角为输出时的theta姿态
% figure
% robot.teach()
% robot.display(); %显示D-H表
figure
% q=[0pi/200pi/20]
% q=[pi/3pi/3-pi/3pi/4pi/40]
q = [00-pi/2000];
robot.plot(q)
t=robot.fkine(q)%运动学正解
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2020-06-30 08:56 正运动学\
文件 1529 2020-07-09 16:53 正运动学\zhengyundong_puma560_modified.m
相关资源
- MODERN ROBOTICS MECHANICS PLANNING AND CONTROL
- 机器人单机械臂滑模控制程序
- 用OpenGL开发的机械臂运动仿真程序(
- Geometrical methods in robotics
- 基于A_算法的空间机械臂避障路径规划
- Microsoft_Robotics_Developer_Studio中文教程
- 2.Robotics Modelling Planning and Control
- 可变刚度柔性机械臂的设计与实现
- 压电型柔性机械臂动力学建模研究
- LQR与PD控制在柔性机械臂中的对比研究
- 柔性机械臂设计与分析
- modern robotics.pdf
- 机械臂3d打印零件图
- ROS Robotics by Example
- State Estimation for Robotics-A Matrix Lie Gro
- State Estimation for Robotics A Matrix Lie Gro
- Kinematics of manipulators under computer cont
- Modern Robotics Mechanics Planning and Control
- 六自由度机械臂控制系统设计与运动
- 步进电机控制机械臂源码 代码
- 机械臂三维图纸.rar
- 机械臂手眼标定
- ROS Robotics By Example - Second Edition_Code.
- State Estimation for Robotics 机器人学中的
- Modern Robotics: Mechanics Planning and Contro
- MODERN ROBOTICS 2017
- ProbabilisticRobotics.pdf
- State Estimation for Robotics 最新修订版
- state estimation for robotics
- STATE ESTIMATION FOR ROBOTICS pdf
评论
共有 条评论