Mechanical of Materials

22
MECHANICS OF MATERIALS: BEAM DEFLECTIONS Engineered by Group 20 Christopher Webb, Anthony Williams, Carlaton Wong, Jonathan Wong 03/03/2010

description

A project that involves designing, building, and analyzing how an aluminum and brass beam deflects due to certain applied loads.

Transcript of Mechanical of Materials

Page 1: Mechanical of Materials

MECHANICS OF MATERIALS: BEAM DEFLECTIONS

Engineered by Group 20

Christopher Webb, Anthony Williams, Carlaton Wong, Jonathan Wong

03/03/2010

Page 2: Mechanical of Materials

The ConceptSCENARIO: HOW MUCH WILL A BEAM DEFLECT WITH AN APPLIED LOAD?

Calculating the beam’s deflection will reveal the beams curvature relationships

This project is designed to exhibit the mechanics of a bending moment on a single cantilever beam. Ultimately leading us to our goal.

Page 3: Mechanical of Materials

Goals & Objectives

EXPERIMENTAL GOALS

How much will aluminum and brass deflect with various applied loads?

Determine the Young’s Modulus based on the deflection measured

Does our calculated Young’s Modulus equal tabulated values?

Page 4: Mechanical of Materials

Beam Failures

Page 5: Mechanical of Materials

What is Beam Deflection?

When loads are applied to a beam, the beam’s axis that was once straight will become curved. The displacements from the initial axis are called bending or flexural deflections.

Page 6: Mechanical of Materials

Apparatus Design & Operation

The beam in use will be fixed onto the standing wooden plank by securing it at the top of the apparatus with a c-clamp.

At the end of the beam there will be an attachment to serve as the applied load.

This experiment used strategically filled water bottles for the applied loads.

Page 7: Mechanical of Materials

Apparatus Design & Operation (cont.)

The deflection of the beam by the applied load can be recorded at the point of loading.

Cantilever beams are interchangeable allowing for supplemental testing of differing materials & structural make-ups .

Negligible factors: Load’s tiny distance

from free end of member

Small bend in beam after multiple loads

Page 8: Mechanical of Materials

Cost Factors Involved

Material Cost Vendor

½” 20”x8” Plywood $0.00 Lumber Yard

4”x4” Wood $0.00 Lumber Yard

Aluminum Beam $5.00 Home Depot

Brass Beam $5.00 Home Depot

4” C-Clamp $0.00 Home Depot

Water Bottles $0.00 Home

String $0.00 Michaels

Total Cost $10.00

Page 9: Mechanical of Materials

Our Cantilever Beam

Page 10: Mechanical of Materials

Superposition Table

δTOT =L3

24EI3qL + 8P( )

E =L3

24IδTOT3qL + 8P( )

Page 11: Mechanical of Materials

MatLab Code

%Analysis of Brass beam

close all;clearall;clc

%Conversion Factors in_m=0.0254; %inch to meter lb_N=0.22481;%Pound force to Newton

%Material Properties E=100*10^9;%Pa Brass

%Geometric Properties(in SI units)

%Brass Bar data h=(.064)*in_m;%Cross section height b=(3/4)*in_m;%Cross sect width L=9*in_m;%Length of Beam (m)

I=(b*h^3)/12; %second momemnt of inertia(m^4)

%Applied force F=(.3)/lb_N; %(N)

%Calculating deflection x=linspace(0,L,50); v1=(F*x.^3/6 - F*L*x.^2/2)/(E*I); %Deflection due to concentrated load

q=79.7*10^-3*9.81/(12*.0254); v2=zeros(1,length(x)); for i=1:length(x) v2(i)=-q*x(i)^2/(24*E*I)*(6*L^2-4*L*x(i) + x(i)^2); %Deflection due to weight of bar end

hold on; grid onplot(x/in_m,v2*100,'g-*',x/in_m,v1*100,'ro-',x/in_m,v1*100+v2*100,'b*-')title('Beam Deflection of Brass w/ 0.3lb Load')xlabel('Beam Length (in)')ylabel('Deflection (cm)')legend('DistributedLoad','ConcentratedLoad','Total Deflection',3)

V_max=(q*L+F)/(b*h);%Max shear stresssigma_max=(.5*q*L^2+F*L)*(h*0.5)/I;v_max_tot=(v1(end)+v2(end))*100;     %Analysis of Aluminum Beamclose all;clearall;clc

%Conversion Factorsin_m=0.0254; %inch to meter lb_N=0.22481;%Pound force to Newton

%Material PropertiesE=69*10^9;%Pa Aluminum

%Geometric Properties(in SI units)%Al bar datah=(1/8)*in_m;%Cross section heightb=(3/4)*in_m;%Cross sect widthL=15*in_m;%Length of Beam (m)

I=(b*h^3)/12; %second momemnt of inertia(m^4)

%Applied forceF=(.3)/lb_N;

%Calculating deflection %Concetrated loadx=linspace(0,L,50); v1=(F*x.^3/6 - F*L*x.^2/2)/(E*I);%Deflection in (m)

%Distributed weightq=74*10^-3*9.81/(18.5*.0254); v2=zeros(1,length(x)); for i=1:length(x) v2(i)=-q*x(i)^2/(24*E*I)*(6*L^2-4*L*x(i) + x(i)^2); end

hold on;grid on; plot(x/in_m,v1*100,'ro',x/in_m,v2*100,'g*',x/in_m,v1*100+v2*100,'b*')title('Beam Deflection of Aluminum w/ 0.3lb Load')xlabel('Beam Length (in)')ylabel('Deflection (cm)')legend('DistributedLoad','ConcentratedLoad','Total Deflection',3)

V_max=(q*L+F)/(b*h)%Max shear stresssigma_max=(.5*q*L^2+F*L)*(h*0.5)/I;v_max_tot=(v1(end)+v2(end))*100;

Page 12: Mechanical of Materials
Page 13: Mechanical of Materials

Experiment Variables Second Moment of Inertia (I) determined by measuring geometry of the beams.

Calculated Linear Weight Density by weighing the beams on a scale.

Water bottles with a known mass used to calculate forces applied to the beam.

Page 14: Mechanical of Materials

Results – Initial Height

Page 15: Mechanical of Materials

Results – Brass Bar

.3 Lbs Force

.4 Lbs Force

.5 Lbs Force

Page 16: Mechanical of Materials

Results – Aluminum Bar

.3 Lbs Force

.4 Lbs Force

.5 Lbs Force

Page 17: Mechanical of Materials

Experimental Results

Load(lb)Measured Deflection

(cm)Calculated E (GPa)

0.3 1.00 56.28

0.4 1.30 55.80

0.5 1.60 55.40

Average 55.83

Percent Error 19.09%

Load(lb)Measured Deflection

(cm)Calculated E (GPa)

0.3 1.00 90.76

0.4 1.30 90.80

0.5 1.50 95.14

Average 92.23

Percent Error 7.77%

Aluminum :

Brass:

Expected Young’s

Modulus:

69 GPa

Expected Young’s

Modulus:

100 GPa

Page 18: Mechanical of Materials

Expected Results

Load(lb) Measured Deflection (cm)Calculated Deflection (cm)

(Assumed E = 69 GPa)

0.3 1.00 0.82

0.4 1.30 1.05

0.5 1.60 1.29

Load(lb) Measured Deflection (cm)Calculated Deflection (cm)

(Assumed E = 100 GPa)

0.3 1.00 0.91

0.4 1.30 1.17

0.5 1.50 1.43

Aluminum:

Brass:

All measured deflections are higher than calculated. Why?

Page 19: Mechanical of Materials

MAX STRESS IN BEAMUsing the Flexural formula and observing that the Mmax is located at the origin we

can derive an expression for Pmax

I

hM

I

yM

2

)0(maxmaxmax

PLLqM 202

1)0(

Page 20: Mechanical of Materials

• Approximate Yield stress:– Aluminum = 35MPa– Brass = 70 MPa

Max Stress in Beam

maxfor solve and toY.S.Set Pallow

2

2 0max

Lq

hL

IP allow

lb 595.0max AlP

lb 512 .0max BrassP

Page 21: Mechanical of Materials

Conclusion

With the proper build and successful experimentation of our proposed apparatus, deflections of both beams were recorded.

Young’s Modulus was calculated given the measured deflection.

Comparing our calculated and measured Young’s Modulus’ error was found to be 10-20% due to possible plastic deformation.

Page 22: Mechanical of Materials

MECHANICS OF MATERIALS:

BEAM DEFLECTIONS

Group 20

Christopher Webb, Anthony Williams, Carlaton Wong, & Jonathan Wong

Thank you!