Shear and Moment Diagrams of An Overhung Beam Using Singularity Functions
Shear and Moment Diagrams of An Overhung Beam Using Singularity Functions
Problem Determine and plot the shear and moment functions for the overhung beam with an
applied moment and ramp load shown in Figure 3-22c.
Assumptions The weight of the beam is negligible compared to the applied load and so can be ignored.
Solution See Figures 3-22c and 3-26, and Excel file Ex03-04.xls.
1 Write an equation for the load function in terms of equations 3.17 and integrate the
q(x) = M1<x
resulting - 0>-2 twice
function + R1<xusing
- a>-1equations
- w<x - a>3.18
1
+ Rto2<x - l>-1 the shear and moment functions.
obtain (a)
For
V(x)the
= Mbeam
<x - in -1Figure
0> + R 3-22c,
<x - a> 0
– (w/2)<x - a> 2
+ R <x - l>0
+ C
1 1 2 1 (b)
M(x) = M1<x - 0>0 + R1<x - a>1 – (w/6)<x - a>3 + R2<x - l>1 + C1x + C2 (c)
2 As demonstrated in the previous two examples, the constants of integration C 1 and C2 will
always be zero if the reaction forces are included in the load function. So we will set
them to zero.
3 The reaction forces R1 and R2 can be calculated from equations (c) and (b) respectively
by substituting the boundary conditions x = L+, V = 0, M = 0. Note that we can substitute
L for L+ since their difference is vanishingly small.
M(l) = M1<l>0 + R1<l - a>1 – (w/6)<l - a>3 + R2<l - l>1 = 0 (d)
M = M1 + R1*(l-a) – (w/6)*(l-a)3 = 0
Note that equation (d) is just ΣMz = 0, and equation (e) is ΣFy = 0
4 To generate the shear and moment functions over the length of the beam, equations (b)
and (c) must be evaluated for a range of values of x from 0 to L, after substituting the
above values of C1, C2, R1, and R2 in them. For an Excel solution, include an IF() function
of the form IF(x>=z,1,0). This will evaluate to a value of zero when x is less than the
dummy variable z, and a value of one when it is greater than or equal to z. It will have
the same effect as the singularity function.
Write the shear and moment equations in Excel form, using the logical evaluation
IF(x>=z,1,0) as a multiplying factor to get the effect of the singularity functions.
160
140
120
100
80
60
40
20
0
0 1 2 3 4 5 6 7 8 9 10
Distance along beam, x (in)
,1,0)*(x-L)^1
8 9 10
(in)
Comments on Excel Solution: EX03-04
Note 1. The cell containing the value of variable M1 has been named Mone since "cell M1" has
another meaning in Excel.
Note 2. The terms (x-a)^0 and (x-L)^0 were replaced by ((1)) to avoid the error messages Excel
returns on 0^0.
Note 3. The terms (x-0)^0 was replaced by ((1)) to avoid the error messages Excel returns on
0^0.
Note 4. The steep, but less than vertical slopes on the second and fourth segments of the shear
curve result from the finite step size used when creating the x vector. A much smaller Δx
would have produced a more nearly vertical segment.
Note 5. The cell containing the c value was named cVal because entering c in the name box has
another meaning in Excel (select column).