Question

w a stress of o; = 55 x 103 psi, when M = 5 lb-in and d = 0.1 in. 2.8. The angular position of the output link (04) of a four

Chapter 2 Solution of Nonlinear Eque cquations 122 Coupler link Output link Input link » (crank) OA acting along the -.- TITI

Find the solution of Problem 2.8 using Newton-Raphson method with the starting value of \Theta_4 as 90 degrees and \epsilon =0.001

Please upload the program using VBA or Matlab

0 0
Add a comment Improve this question Transcribed image text
Answer #1

`Hey,

Note: Brother if you have any queries related the answer please do comment. I would be very happy to resolve all your queries.

clc%clears screen
clear all%clears history
close all%closes all files
format long
a=1;
b=2;
c=4;
d=5;
th2=30;
k1=d/a;
k2=d/c;
k3=(a^2-b^2+c^2+d^2)/(2*a*c);
f=@(x) k1*cosd(x)-k2*cosd(th2)+k2-cosd(th2-x);
g=@(x) - sind(th2 - x) - k1*sind(x);
x0=90;
for i=1:100
x0=x0-f(x0)/g(x0);
if(abs(f(x0))<0.001)
break;
end
end
fprintf('Theta4 = %f degrees\n',x0);

- O X Pradeep Search Documentation MATLAB R2018a HOME + G New Open Save PLOTS C Find Files 3 Compare - Print D Run Section 8

Kindly revert for any queries

Thanks.

Add a comment
Know the answer?
Add Answer to:
Find the solution of Problem 2.8 using Newton-Raphson method with the starting value of as 90...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT