How can I SOLVE THIS PROJECT
Show older comments

2 Comments
anas khalid
on 24 Apr 2018
Ashik Mahamud
on 15 Nov 2021
I'm new, i Don't understand how to solve it. Plz help me to solve the project
Answers (1)
raymond keen
on 17 Apr 2019
Edited: Walter Roberson
on 17 Apr 2019
w0 = 2.5 ;
E = 50000;
I = 30000;
L=600;
t = 0;
v = 599;
while (abs(t-v)>0.0000001)
z = (t+v)/2;
ydiff = (w0)/(120*E*I*L)*(-5*z^4+6*L^2*z^2-L^4);
t_val = (w0)/(120*E*I*L)*(-5*t^4+6*L^2*t^2-L^4);
v_val = (w0)/(120*E*I*L)*(-5*v^4+6*L^2*v^2-L^4);
if (sign(ydiff) ~= sign(v_val))
t = z;
else
v = z;
end
end
x = (t+v)/2
ydiff = (w0)/(120*E*I*L)*(-5*x^4+6*L^2*x^2-L^4)
Categories
Find more on Assembly 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!