Plotting path traced by a point in an animation
Show older comments
The following code creates an animation of a four bar linkage. Can someone explain how you can modify the code to plot the path traced by point P during the animation? I have tried creating an animated line by using a separate for loop and adding plot commands inside the for i = 1:length(theta2) for loop but when that is done the point P's path is plotted but because of the hold on and hold off commands the path is deleted at every instant and at any given moment only the point P is located at during that instant is plotted.
L0 = 7; L1 = 3; L2 = 7.5; L3 = 4.5;
L_PA = 4; alpha =35;
w2 = 5; theta2 = 0:2:360;
for i = 1:length(theta2)
AC(i) = sqrt(L0^2+L1^2 - 2*L0*L1*cosd(theta2(i)));
beta(i) = acosd((L0^2+AC(i)^2-L1^2)/(2*L0*AC(i)));
psi(i) = acosd((L2^2+AC(i)^2-L3^2)/(2*L2*AC(i)));
lamda(i) = acosd((L3^2+AC(i)^2-L2^2)/(2*L3*AC(i)));
theta3(i) = psi(i)-beta(i);
theta4(i) = 180-lamda(i)-beta(i);
if theta2(i)>180
theta3(i) = psi(i)+beta(i);
theta4(i) = 180-lamda(i)+beta(i);
end
Ox(i) = 0; Oy(i) = 0;
Ax(i) = Ox(i) + L1*cosd(theta2(i));
Ay(i) = Oy(i) + L1*sind(theta2(i));
Bx(i) = Ox(i) +Ax(i) + L2*cosd(theta3(i));
By(i) = Oy(i) +Ay(i) + L2*sind(theta3(i));
Cx(i) = L0; Cy(i) = 0;
Px(i) = Ax(i) +L_PA *cosd(alpha + theta3(i));
Py(i) = Ay(i) +L_PA *sind(alpha + theta3(i));
theta5(i) = alpha + theta3(i);
plot([Ox(i) Ax(i)],[Oy(i) Ay(i)], [Ax(i) Bx(i)],...
[Ay(i) By(i)]...
,[Bx(i) Cx(i)],[By(i) Cy(i)],'LineWidth',3);
hold on
plot([Ax(i) Px(i)],[Ay(i) Py(i)],...
[Bx(i) Px(i)],[By(i) Py(i)],'LineWidth',3);
grid on;
axis equal;
axis([-5 15 -5 10]);
drawnow;
hold off
end
Accepted Answer
More Answers (0)
Categories
Find more on Animation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!