Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

...

Add more content to complete your Multi-Page Journey


Auiprogress
step6

Auiprogressstepstatic
titleStep1
urlMATLAB Scripts
Auiprogressstepstatic
titleStep2
urlfourbar.m
Auiprogressstepstatic
titleStep3
urlfourbarR.m
Auiprogressstepstatic
titleStep4
urlvelProf.m
Auiprogressstepstatic
titleStep5
urlgeomSolver.m
Auiprogressstepstatic
titleStep6
urloneRev.m
Auiprogressstepstatic
titleStep7
urleraserPos


function [] = oneRev(L2, L3, L4, L1, L3O)
t1 = 0;
lens = [L2, L3, L4, L1];

t2 = [0:1:360];
angles = fourbarR(lens, 180-t1, t2, 1);
t3 = angles(1,:);
t4 = angles(2,:);
Pxi = L2*cosd(t2) + (L3 + L3O)*cosd(t3);
Py = L2*sind(t2) + (L3 + L3O)*sind(t3);

figure(2)
plot(Pxi, Py)
title('Trajectory of Stationary Fourbar, No Tilt')

end