资源简介
Delta机器人RBE595高级并行机器人项目代码,包括其运动学正逆解,工作空间和轨迹跟踪的程序,对研究并联机器人的小伙伴很有意义。

代码片段和文件信息
%% Computes the coordinate of the more negative y of two circle intersections
% NOTE: Two methods in below code method 1 and 2. If method 2 doesn‘t work
% use the slower method 1. Comment and uncomment appropriate section
function [x_soly_sol] = findCircIntersection(c1 r1 c2 r2)
syms x y; % Points we are trying to solve for
% Extract coordinates
x1 = c1(1); x2 = c2(1);
y1 = c1(2); y2 = c2(2);
%% ---- Calculate the intersection using method #1. Not optimized ----
% sol = solve([r1==sqrt((x-x1)^2+(y-y1)^2) ...
% r2==sqrt((x-x2)^2+(y-y2)^2)]);
% % Selected the more negative y value (Otherwords the smallest y value pair)
% if double(sol.x(1)) > double(sol.x(2)) %z value check
% x_sol = double(sol.x(1));
% y_sol = double(sol.y(1));
% else
% x_sol = double(sol.x(2));
% y_sol = double(sol.y(2));
% end
%% ---- Calculate the intersection using method #2. Optimized function. ----
[circx circy] = circcirc(x1y1r1x2y2r2);
if double(circx(1)) > double(circx(2)) %z value check
x_sol = double(circx(1));
y_sol = double(circy(1));
else
x_sol = double(circx(2));
y_sol = double(circy(2));
end
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2015-12-15 02:56 delta_robot_code-master\
文件 17 2015-12-15 02:56 delta_robot_code-master\.gitignore
文件 1420 2015-12-15 02:56 delta_robot_code-master\FK.m
文件 1326 2015-12-15 02:56 delta_robot_code-master\IK.m
文件 92 2015-12-15 02:56 delta_robot_code-master\README.md
文件 1251 2015-12-15 02:56 delta_robot_code-master\findCircIntersection.m
文件 1310 2015-12-15 02:56 delta_robot_code-master\findSphereIntersection.m
文件 295 2015-12-15 02:56 delta_robot_code-master\generate_Lissajous_curve.m
文件 294 2015-12-15 02:56 delta_robot_code-master\generate_helix.m
文件 350 2015-12-15 02:56 delta_robot_code-master\generate_hypotrochoid.m
文件 815 2015-12-15 02:56 delta_robot_code-master\generate_hypotrochoid_star.m
文件 183 2015-12-15 02:56 delta_robot_code-master\generate_line.m
文件 487 2015-12-15 02:56 delta_robot_code-master\generate_sli
文件 540 2015-12-15 02:56 delta_robot_code-master\generate_spiral.m
文件 10600 2015-12-15 02:56 delta_robot_code-master\moving_simulation.m
文件 6631 2015-12-15 02:56 delta_robot_code-master\moving_simulation_temp.m
文件 6279 2015-12-15 02:56 delta_robot_code-master\plotWorkspace.m
文件 2996 2015-12-15 02:56 delta_robot_code-master\simulation.m
文件 4207 2015-12-15 02:56 delta_robot_code-master\trilateration.m
- 上一篇:linux下的一个异步通信的串口类
- 下一篇:GIFView控件
相关资源
- 机器人运动学及动力学
- 基于ProE的内燃机中的活塞曲柄连杆机
- 基于ADAMS的B635A型刨床急回机构运动学
- 柔性机械臂设计与分析
- 齿轮-五杆组合机构运动学特征仿真分
- delta机器人solidworks模型
- 六自由度机械臂控制系统设计与运动
- delta机器人模型
- 双驱双向AGV机器人运动学分析及仿真
- 反向运动学演示程序含核心代码
- IKMethods逆向运动学
- 机器人操作的数学导论——李泽湘9
- Delta机器人运动学建模及仿真
- 3自由度并联机器人的运动学与动力学
- Final IK 1.7 (2018-7-2最新版)
- 机器人学:运动学、动力学与控制 宋
- 移动机器人的系统设计与定位导航
- 实验一、二 曲柄滑块机构的运动学仿
- 一种三自由度并联机构的构型与运动
- 重型汽车双前桥转向运动学分析
- 六自由度机械臂的运动学分析
- 三自由度Delta并联机器人运动学分析及
- 二级直线倒立摆系统建模与系统仿真
- 基于MATLAB的七自由度机器人
- 机械臂正运动学程序,两种实现方式
- 机器人运动学正解逆解.rar
- 汽车运动学建模
- 四轮全方位轮式移动机器人的运动学
- 基于机器视觉的Delta机器人分拣系统算
- 机械手臂的逆运动学解
评论
共有 条评论