Code covered by the BSD License
-
cal_cp_ptp(cp_name, ts, l1, l...
CP + PTP Trajectory Calculation
-
cal_eta(eta_s, eta_f, vec_max...
Basic Trajectory Calculation using 5-1-5 Polynomial
-
cal_ptp(cp, pos_s, pos_f, ts,...
PTP Trajectory Calculation
-
cal_time_data(cp_ptp, ts, tim...
Finish Time and Pen Time Table Calculation
-
cat_cp_ptp(cp, ptp)
Concatenate CP and PTP trajectory
-
chk_limit(thetas, thetas_max,...
Theta and Omega Limitation Check
-
cp_circle(ts)
CP Trajectory (Circle)
-
cp_ml_logo
CP Trajectory (MATLAB Logo)
-
cp_smile(ts)
CP Trajectory (Smile Mark)
-
cp_spiral(ts)
CP Trajectory (Spiral)
-
theta2xy(theta1, theta2, l1, ...
Angle to Position Conversion for 2 link SCARA robot
-
xy2theta(x, y, l1, l2)
Position to Angle Conversion for 2 link SCARA robot
-
param_controller.m
-
param_nxtscara.m
-
param_plant.m
-
param_ref.m
-
param_sim.m
-
post_sdo_codegen.m
-
pre_sdo_codegen.m
-
nxtscara
-
nxtscara_controller
-
nxtscara_vr
-
View all files
from
NXT SCARA (Two-Link Planar Robot Arm) Controller Design
by Yorihisa Yamamoto
NXT SCARA Model-Based Design based on Embedded Coder Robot NXT.
|
| xy2theta(x, y, l1, l2)
|
function [theta1, theta2] = xy2theta(x, y, l1, l2)
% Position to Angle Conversion for 2 link SCARA robot
%
% [Inputs]
% x : x coordinate of the edge of link2 [m]
% y : y coordinate of the edge of link2 [m]
% l1 : link1 length [m]
% l2 : link2 length [m]
% [Outputs]
% theta1 : angle1 [deg]
% theta2 : angle2 [deg]
tmp = x.^2 + y.^2 - l2^2;
tmp1 = tmp + l1^2;
tmp2 = tmp - l1^2;
% theta
theta1 = atan2(y, x) - atan2(sqrt(abs(4 * l1^2 * (x.^2 + y.^2) - tmp1.^2)), tmp1);
theta2 = atan2(sqrt(abs(4 * l1^2 * l2^2 - tmp2.^2)), tmp2);
% rad to deg conversion
theta1 = theta1 * 180 / pi;
theta2 = theta2 * 180 / pi;
|
|
Contact us at files@mathworks.com