Question: Going off this u = 0 . 3 ; T _ 1 = 5 0 0 ; theta _ deg = 0 : 1 :

Going off this
u =0.3;
T_1=500;
theta_deg =0:1:720;
theta_rad = deg2rad(theta_deg);
T_2= zeros(size(theta_deg));
for i =1:length(theta_deg)
T_2(i)= T_1* exp(u * theta_rad(i));
end
figure;
plot(theta_deg, T_2);
xlabel('Angle (degrees)');
ylabel('Force required to lift (N)');
title('Force required to lift vs. Angle');
grid on;
disp('As the angle increases, the force required to lift the weight...
increases exponentially due to the friction between the rope and the cylinder.');
Find 2. Repeat the previous problem for a friction coefficient u=0.1. Add the curve to the
plot created in the previous problem. Add a legend identifying the two curves.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!