Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Question 2 : Beam Deflection Series A beam is subject to a uniformly distributed load. If the deflection y at each section of the beam

Question 2: Beam Deflection Series
A beam is subject to a uniformly distributed load. If the deflection y at each section of the beam is given by y=wx26EI(3L-x), where w is the load per unit length, E is the modulus of elasticity, I is the moment of inertia, L is the length, and x is the distance from one end, write a MATLAB for loop to calculate the deflection for x=0 to L in 10 equal intervals.
A.y=zzeros(1,10); for x=linspace(0,L,10),y(x)=(w**x2)**3**L-x6**E**; end
B.y= zeros (1,11); for i=1 :length (y),x=(i-1)**L10;y(i)=(w**x2)**3**L-x6**E**I; end
C.y=[]; for x=0:L10:L,y=[y,(w**x2)**3**L-x6**E**I]; end
D. Both B and C are correct.
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions