function [xt,yt,x1,y1,x2,y2,x5,y5,x4,y4] = forw_k(left_ang_deg, right_ang_deg)
[L,P,D] = get_L_P_D();
thetaL = left_ang_deg;
thetaR = right_ang_deg;
thetaLrad = deg2rad(thetaL); % [radians]
thetaRrad = deg2rad(thetaR); % [radians]
% Coordinates of the input joints
x1 = -L/2; % x-coordinate of the left input joint
y1 = 0; % y-coordinate of the left input joint
x5 = L/2; % x-coordinate of the right input joint
y5 = 0; % y-coordinate of the right input joint
% Coordinates of the proximal joints
x2 = x1 + P * cos(thetaLrad);
y2 = y1 + P * sin(thetaLrad);
x4 = x5 + P * cos(thetaRrad);
y4 = y5 + P * sin(thetaRrad);
% Additional variables
A = (x4 - x2) / D;
B = (y4 - y2) / D;
C = (A*A + B*B) / 2;
% Solve equations
% [sol_theta3, sol_theta4R] = solve([eq1, eq2], [theta3, theta4R]);
sol_theta4R(1) = 2*atan2(-B+sqrt(A*A+B*B-C*C), C-A);
sol_theta4R(2) = 2*atan2(-B-sqrt(A*A+B*B-C*C), C-A);
sol_theta4R(1) = wrapToPi(sol_theta4R(1));
sol_theta4R(2) = wrapToPi(sol_theta4R(2));
sol_theta3(1) = asin((y4-y2)/D + sin( sol_theta4R(1)));
sol_theta3(2) = asin((y4-y2)/D + sin( sol_theta4R(2)));
% Take the right solution for +- configuration
if double(sol_theta3(1)) > thetaLrad - pi && double(sol_theta3(1)) < thetaLrad && double(sol_theta4R(1)) > thetaRrad && double(sol_theta4R(1)) < thetaRrad + pi
theta3solved = rad2deg(double(sol_theta3(1)));
theta4Rsolved = rad2deg(double(sol_theta4R(1)));
else
theta3solved = rad2deg(double(sol_theta3(2)));
theta4Rsolved = rad2deg(double(sol_theta4R(2)));
end
% Calculate the coordinates of Tcp
xt1 = x2 + D*cos(deg2rad(theta3solved));
xt2 = x4 + D*cos(deg2rad(theta4Rsolved));
yt1 = y2 + D*sin(deg2rad(theta3solved));
yt2 = y4 + D*sin(deg2rad(theta4Rsolved));
if sqrt((xt1-x2)^2+(yt1-y2)^2) == D && sqrt((xt1-x4)^2+(yt1-y4)^2) == D
xt = xt1;
yt = yt1;
else
xt = xt2;
yt = yt2;
end
end
没有合适的资源?快使用搜索试试~ 我知道了~
五杆并联机器人的优化matlab代码.rar
共8个文件
m:7个
png:1个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
0 下载量 119 浏览量
2024-10-09
18:31:41
上传
评论
收藏 16KB RAR 举报
温馨提示
1.版本:matlab2014/2019a/2024a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。
资源推荐
资源详情
资源评论
收起资源包目录
五杆并联机器人的优化matlab代码.rar (8个子文件)
五杆并联机器人的优化matlab代码
get_L_P_D.m 220B
inv_k.m 1KB
forw_k.m 2KB
saturation.m 162B
pid_calc.m 336B
main.m 1003B
1.png 17KB
plot_forw_k.m 688B
共 8 条
- 1
资源评论
天天Matlab代码科研顾问
- 粉丝: 3w+
- 资源: 2297
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功