Question 15.11: Determine the deflected shape of the beam shown in Fig. 15.2...

Determine the deflected shape of the beam shown in Fig. 15.23.

Use MATLAB to repeat.

The Blue Check Mark means that this solution has been answered and checked by an expert. This guarantees that the final answer is accurate.
Learn more on how we answer questions.

In this problem, an external moment M_{0} is applied to the beam at B. The support reactions are found in the normal way and are

 

R_{ A }=-\frac{M_{0}}{L}(\text { downward }), \quad R_{ C }=\frac{M_{0}}{L} \text { (upward) }

 

The bending moment at any section Z between B and C is then given by

 

M=-R_{ A } z-M_{0}  (i)

 

Equation (i) is valid only for the region BC and clearly does not contain a singularity function which would cause M_{0} to vanish for z \leq b. We overcome this difficulty by writing

 

M=-R_{ A } z-M_{0}[z-b]^{0} \quad\left(\text { Note }:[z-b]^{0}=1\right)  (ii)

 

Equation (ii) has the same value as Eq. (i) but is now applicable to all sections of the beam, since [z-b]^{0} disappears when z \leq b. Substituting for M from Eq. (ii) in the second of Eqs. (15.31), we obtain

 

u^{\prime \prime}=-\frac{M_{y}}{E I_{y y}}, \quad v^{\prime \prime}=-\frac{M_{x}}{E I_{x x}}  (15.31)

 

E I v^{\prime \prime}=R_{ A } z+M_{0}[z-b]^{0}  (iii)

 

Integration of Eq. (iii) yields

 

E l v^{\prime}=R_{ A } \frac{z^{2}}{2}+M_{0}[z-b]+C_{1}  (vi)

 

and

 

E I v=R_{ A } \frac{z^{3}}{6}+\frac{M_{0}}{2}[z-b]^{2}+C_{1} z+C_{2}  (v)

 

where C_{1} and C_{2} are arbitrary constants. The boundary conditions are v = 0 when z = 0 and z = L. From the first of these, we have C_{2}=0, while the second gives

 

0=-\frac{M_{0}}{L} \frac{L^{3}}{6}+\frac{M_{0}}{2}[L-b]^{2}+C_{1} L

 

from which

 

C_{1}=-\frac{M_{0}}{6 L}\left(2 L^{2}-6 L b+3 b^{2}\right)  (vi)

 

The equation of the deflection curve of the beam is then

 

v=\frac{M_{0}}{6 E I L}\left\{z^{3}+3 L[z-b]^{2}-\left(2 L^{2}-6 L b+3 b^{2}\right) z\right\}  (vii)

 

The beam deflection curve equation is obtained through the following MATLAB file:

The 'Blue Check Mark' means that either the MATLAB code/script/answer provided in the answer section has been tested by our team of experts; or the answer in general has be fact checked.

Learn more on how do we answer questions.

% Declare any needed variables
syms M_0 L b EI z a o C_1 C_2
% Define the support reactions shown in Fig. 15.23
R_A=-M_0/L;
R_C=M_0/L;
% Define the equation for the bending moment at any section Z between B and C
M=[-R_A*z -M_0*(a)^o]; % For z<=b: a=0; For z>b: a=z-b
% Substitute M into the second of Eq. (15.32)
v_zz=-M/EI;
% Integrate v_zz to get v_z and v
v_z=[int(v_zz(1),z)+C_1/EI int(v_zz(2),a)];
v=[int(v_z(1),z)+C_2/EI int(v_z(2),a)];
v=sum(subs(v,o,0));
% Use boundary conditions to determine C_1 and C_2
% BC #1: v=0 when z=0
c_2=solve(subs(subs(v*EI,a,0),z,0),C_2);
v=subs(v,C_2,c_2);
% BC #1: v=0 when z=0
c_1=solve(subs(subs(v*EI,a,z-b),z,L),C_1);
v=simplify(subs(v,C_1,c_1));
% Output the resulting deflection equation to the Command Window
disp(‘The equation for the deflection curve of the beam is:’)
disp([‘v=’ char(v)])
disp(‘Where: a=0 for z<=b, and a=z-b for z>b’)

I_{ N }=I_{ C }+A b^{2}  (15.32)

 

The Command Window outputs resulting from this MATLAB file are as follows. The equation for the deflection curve of the beam is

v=-(M_0*(2*L^2*z – 3*L*a^2 – 6*L*b*z+3*b^2*z+z^3))/(6*EI*L)
Where: a=0 for z<=b, and a=z-b for z>b

Related Answered Questions