Solving beam deflection problems using the moment-deflection approach and using the Euler-Bernoulli approach

Size: px
Start display at page:

Download "Solving beam deflection problems using the moment-deflection approach and using the Euler-Bernoulli approach"

Transcription

1 Solving beam deflection problems using the moment-deflection approach and using the Euler-Bernoulli approach by Nasser M. Abbasi November 9 Links PDF file Mathematica notebook Introduction These are problems in beam deflection showing how to use Mathematica to solve them. Problem 1 This is problem 9-3, page 551, from bok Problem Solvers, strength of materials and mechanics of materials by REA. I show here how to solve this problem using Mathematica. Start by setting up the moment deflection equation for the Euler beam E I y''x Mx, this equation is found for both halves of the beam resulting in solutions, y 1 x and y x. On the right side, boundary condition is that y L and on the left side y 1, then we need an additional boundary conditions, for this, use the continuity conditions at L where we set y 1 L y L and y' 1 L y' L and now we have the complete solutions. For the left half of beam, it is easily found that Mx w L 8 x and for the right half Mx w l x 8 w x l Find y 1 x Clear,, w, L, eq1, eq, y1, y, M1, M

2 euler_beam.nb M1 w L 8 x; eq1 y ''x M1; sol1 First DSolveeq1, yx, x; y1 yx. sol1; y1 y1. C1 c1, C c c1 c x L w x3 48 Use first boundary condition y 1 First Solvey1. x, c1, c; y1 y1. Solve::svars: Equations may not give solutions for all "solve" variables. c x L w x3 48 Find y x M w L 8 x w x L ; eq y ''x M; sol First DSolveeq, yx, x; y yx. sol; y y. C1 c3, C c4 c3 c4 x L w x 16 5 L w x3 48 w x4 4 Use boundary condition y L First Solvey. x L, c3, c4; y y. ; y Collecty, c4 Solve::svars: Equations may not give solutions for all "solve" variables. c4 L x L w x 16 5 L w x3 48 w x4 4 We see from the above, that we have additional constants of integrations to solve for. c and c4. To solve for these, we use the continuity conditions at L sol First Solve y y1. x L, Dy, x Dy1, x. x L, c, c4 c 7 L3 w 384, c4 L3 w 384

3 euler_beam.nb 3 All the integration of constants now found, we can now plot moment diagrams, shear diagram, and deflection diagrams y1 y1. sol 7 L3 w x L w x y y. sol L w x 16 5 L w x3 48 w x4 4 L3 w L x 384 Assign some values for E, I, L and w and do the plots. PLot the deflection L 1; values 1 6,, w 1; Ploty1 HeavisideThetaL x. values, y HeavisideThetax L. values, x,, 1, Frame True, FrameLabel "yx", None, "x", "beam deflection"..5 yx

4 4 euler_beam.nb Plot the bending moment PlotM1 HeavisideThetaL x. values, M HeavisideThetax L. values, x,, 1, Frame True, FrameLabel "Mx", None, "x", "Bending moment" Mx Plot the shear diagram PlotEvaluateDM1, x HeavisideThetaL x, DM, x HeavisideThetax L. values, x,, 1, Frame True, FrameLabel "Vx", None, "x", "shear diagram" 1 Vx Solving the same problem directly from the Euler-Bernoulli 4 th order ODE The above approach (using the Moment-deflection ODE) is a standard approach to solve deflection beam problems. However, we can also use the 4th order Euler beam equation direclty as follows. One needs to make sure that the load on the RHS of this ODE is the load per unit length only, i.e. w in this problem. Notice the use of the unit step function since w only acts on half the beam.

5 euler_beam.nb 5 Clear,, w, L, eq, y eq y ''''x w HeavisideThetax L ; sol First DSolveeq, y, y L, y '', y ''L, yx, x; y yx. sol L4 w x DiracDeltaL 96 L 3 w x DiracDeltaL 64 L w x 3 DiracDeltaL 6 L 4 w HeavisideTheta L 1 L3 w x HeavisideTheta L 144 L w x HeavisideTheta L 48 L w x 3 HeavisideTheta L 4 L3 w x HeavisideTheta L 48 L w x3 HeavisideTheta L 6 L 4 w HeavisideTheta L x 48 L3 w x HeavisideTheta L x 144 L w x HeavisideTheta L x 19 L w x3 HeavisideTheta L x 96 w x 4 HeavisideTheta L x L5 w x DiracDelta L 3 L4 w x DiracDelta L L 3 w x 3 DiracDelta L L5 w x DiracDelta L L3 w x 3 DiracDelta L Assign some values for E, I, L and w and do the plots. PLot the deflection L 1; values 1 6,, w 1; Ploty. values, x,, 1, Frame True, FrameLabel "yx", None, "x", "beam deflection"..5 yx We see that we obtain the same result as earlier.

6 6 euler_beam.nb Plot the bending moment PlotEvaluate DDy, x, x. values, x,, 1, Frame True, FrameLabel "Mx", None, "x", "bending moment" Mx Plot the shear diagram PlotEvaluate DDDy, x, x, x. values, x,, 1, Frame True, FrameLabel "Vx", None, "x", "shear diagram" 1 Vx Problem In this problem. I set up a cantilever beam and first solved it using the Java beam applet that can be accessed here and then I solved this problem using Mathematica below, showing that I get the same answer as shown

7 euler_beam.nb 7 Clear,, w, L, eq, y, sol eq y ''''x w HeavisideTheta L x; The boundary conditions to use are: yl, y'', y''', y'l sol Simplify First DSolveeq, yl, y '', y ''', y 'L, yx, x; y yx. sol Out[8]= w 48 L4 64 L 3 x 16 x 4 8 L L x 5 L 4 x HeavisideTheta L L 3 7 L 8 x HeavisideTheta L L4 HeavisideTheta L x 8 L3 x HeavisideTheta L x 4 L x HeavisideTheta L x 3 L x3 HeavisideTheta L x 16 x4 HeavisideTheta L x

8 8 euler_beam.nb Assign same values as shown above for E, I, L and w and do the plots. In[17]:= L 1; values 8 1 6,, w 1; Ploty. values, x,, 1, Frame True, FrameLabel "yx", None, "x", "beam deflection" Print"Max deflection is ", y. values. x N, " inches" Out[19]= yx Max deflection is.1966 inches Plot the bending moment In[3]:= PlotEvaluate DDy, x, x. values, x,, 1, Frame True, FrameLabel "Mx", None, "x", "bending moment" Print"Max moment is ", DDy, x, x. values. x 1 N Out[3]= Mx Max moment is 37.5

9 euler_beam.nb 9 Plot the shear diagram In[5]:= PlotEvaluate DDDy, x, x, x. values, x,, 1, Frame True, FrameLabel "Vx", None, "x", "shear diagram" 1 Out[5]= Vx

Using Simulink to analyze 2 degrees of freedom system

Using Simulink to analyze 2 degrees of freedom system Using Simulink to analyze 2 degrees of freedom system Nasser M. Abbasi Spring 29 page compiled on June 29, 25 at 4:2pm Abstract A two degrees of freedom system consisting of two masses connected by springs

More information

Software Verification

Software Verification EXAMPLE 1-026 FRAME MOMENT AND SHEAR HINGES EXAMPLE DESCRIPTION This example uses a horizontal cantilever beam to test the moment and shear hinges in a static nonlinear analysis. The cantilever beam has

More information

Types of Structures & Loads

Types of Structures & Loads Structure Analysis I Chapter 4 1 Types of Structures & Loads 1Chapter Chapter 4 Internal lloading Developed in Structural Members Internal loading at a specified Point In General The loading for coplanar

More information

AE3160 Experimental Fluid and Solid Mechanics

AE3160 Experimental Fluid and Solid Mechanics AE3160 Experimental Fluid and Solid Mechanics Cantilever Beam Bending Claudio Di Leo 1 Learning Objectives 1. On Structural Mechanics: a) Mechanics of Slender Beams b) Strain Transformation Theory c) Principal

More information

Lecture 7: The Beam Element Equations.

Lecture 7: The Beam Element Equations. 4.1 Beam Stiffness. A Beam: A long slender structural component generally subjected to transverse loading that produces significant bending effects as opposed to twisting or axial effects. MECH 40: Finite

More information

Chapter 7 INTERNAL FORCES

Chapter 7 INTERNAL FORCES Chapter 7 INTERNAL FORCES READING QUIZ 1. In a multiforce member, the member is generally subjected to an internal. A) normal force B) shear force C) bending moment D) All of the above. 2. In mechanics,

More information

276 Calculus and Structures

276 Calculus and Structures 76 Calculus and Structures CHAPTER THE CONJUGATE BEA ETHOD Calculus and Structures 77 Copyright Chapter THE CONJUGATE BEA ETHOD.1 INTRODUCTION To find the deflection of a beam you must solve the equation,

More information

Laith Batarseh. internal forces

Laith Batarseh. internal forces Next Previous 1/8/2016 Chapter seven Laith Batarseh Home End Definitions When a member is subjected to external load, an and/or moment are generated inside this member. The value of the generated internal

More information

Analysis III for D-BAUG, Fall 2017 Lecture 11

Analysis III for D-BAUG, Fall 2017 Lecture 11 Analysis III for D-BAUG, Fall 2017 Lecture 11 Lecturer: Alex Sisto (sisto@math.ethz.ch) 1 Beams (Balken) Beams are basic mechanical systems that appear over and over in civil engineering. We consider a

More information

Chapter 7: Internal Forces

Chapter 7: Internal Forces Chapter 7: Internal Forces Chapter Objectives To show how to use the method of sections for determining the internal loadings in a member. To generalize this procedure by formulating equations that can

More information

FINAL EXAMINATION. (CE130-2 Mechanics of Materials)

FINAL EXAMINATION. (CE130-2 Mechanics of Materials) UNIVERSITY OF CLIFORNI, ERKELEY FLL SEMESTER 001 FINL EXMINTION (CE130- Mechanics of Materials) Problem 1: (15 points) pinned -bar structure is shown in Figure 1. There is an external force, W = 5000N,

More information

Method of Virtual Work Frame Deflection Example Steven Vukazich San Jose State University

Method of Virtual Work Frame Deflection Example Steven Vukazich San Jose State University Method of Virtual Work Frame Deflection xample Steven Vukazich San Jose State University Frame Deflection xample 9 k k D 4 ft θ " # The statically determinate frame from our previous internal force diagram

More information

Lecture 15 Strain and stress in beams

Lecture 15 Strain and stress in beams Spring, 2019 ME 323 Mechanics of Materials Lecture 15 Strain and stress in beams Reading assignment: 6.1 6.2 News: Instructor: Prof. Marcial Gonzalez Last modified: 1/6/19 9:42:38 PM Beam theory (@ ME

More information

L3 Deflection of a Horizontal Beam: Boundary Value Problems

L3 Deflection of a Horizontal Beam: Boundary Value Problems L3 Deflection of a Horizontal Beam: Boundary Value Problems Rev 1/12/2016 she was quite surprised to find that she remained the same size: to be sure, this generally happens when one eats cake, but Alice

More information

ES120 Spring 2018 Section 7 Notes

ES120 Spring 2018 Section 7 Notes ES120 Spring 2018 Section 7 Notes Matheus Fernandes March 29, 2018 Problem 1: For the beam and loading shown, (a) determine the equations of the shear and bending-moment curves, (b) draw the shear and

More information

Presented By: EAS 6939 Aerospace Structural Composites

Presented By: EAS 6939 Aerospace Structural Composites A Beam Theory for Laminated Composites and Application to Torsion Problems Dr. BhavaniV. Sankar Presented By: Sameer Luthra EAS 6939 Aerospace Structural Composites 1 Introduction Composite beams have

More information

Chapter 5 Elastic Strain, Deflection, and Stability 1. Elastic Stress-Strain Relationship

Chapter 5 Elastic Strain, Deflection, and Stability 1. Elastic Stress-Strain Relationship Chapter 5 Elastic Strain, Deflection, and Stability Elastic Stress-Strain Relationship A stress in the x-direction causes a strain in the x-direction by σ x also causes a strain in the y-direction & z-direction

More information

MOMENTS OF INERTIA FOR AREAS, RADIUS OF GYRATION OF AN AREA, & MOMENTS OF INTERTIA BY INTEGRATION

MOMENTS OF INERTIA FOR AREAS, RADIUS OF GYRATION OF AN AREA, & MOMENTS OF INTERTIA BY INTEGRATION MOMENTS OF INERTIA FOR AREAS, RADIUS OF GYRATION OF AN AREA, & MOMENTS OF INTERTIA BY INTEGRATION Today s Objectives: Students will be able to: a) Define the moments of inertia (MoI) for an area. b) Determine

More information

Vibration of a Euler Bernoulli uniform beam carrying a rigid body at each end

Vibration of a Euler Bernoulli uniform beam carrying a rigid body at each end Vibration of a Euler Bernoulli uniform beam carrying a rigid body at each end S. Naguleswaran Department of Mechanical Engineering, University of Canterbury, Christchurch, New Zealand E-Mail: sivapatham.naguleswaran@canterbury.ac.nz

More information

Calculus I Homework: The Derivatives of Polynomials and Exponential Functions Page 1

Calculus I Homework: The Derivatives of Polynomials and Exponential Functions Page 1 Calculus I Homework: The Derivatives of Polynomials and Exponential Functions Page 1 Questions Example Differentiate the function y = ae v + b v + c v 2. Example Differentiate the function y = A + B x

More information

Variational Formulation of Plane Beam Element

Variational Formulation of Plane Beam Element 13 Variational Formulation of Plane Beam Element IFEM Ch 13 Slide 1 Beams Resist Primarily Transverse Loads IFEM Ch 13 Slide 2 Transverse Loads are Transported to Supports by Flexural Action Neutral surface

More information

UNIT II 1. Sketch qualitatively the influence line for shear at D for the beam [M/J-15]

UNIT II 1. Sketch qualitatively the influence line for shear at D for the beam [M/J-15] UNIT II 1. Sketch qualitatively the influence line for shear at D for the beam [M/J-15] 2. Draw the influence line for shear to the left of B for the overhanging beam shown in Fig. Q. No. 4 [M/J-15] 3.

More information

INTERNAL FORCES Today s Objective: Students will be able to: 1. Use the method of sections for determining internal forces in 2-D load cases.

INTERNAL FORCES Today s Objective: Students will be able to: 1. Use the method of sections for determining internal forces in 2-D load cases. INTERNAL FORCES Today s Objective: Students will be able to: 1. Use the method of sections for determining internal forces in 2-D load cases. In-Class Activities: Check Homework, if any Reading Quiz Applications

More information

Module 4 : Deflection of Structures Lecture 4 : Strain Energy Method

Module 4 : Deflection of Structures Lecture 4 : Strain Energy Method Module 4 : Deflection of Structures Lecture 4 : Strain Energy Method Objectives In this course you will learn the following Deflection by strain energy method. Evaluation of strain energy in member under

More information

SUMMARY FOR COMPRESSION MEMBERS. Determine the factored design loads (AISC/LRFD Specification A4).

SUMMARY FOR COMPRESSION MEMBERS. Determine the factored design loads (AISC/LRFD Specification A4). SUMMARY FOR COMPRESSION MEMBERS Columns with Pinned Supports Step 1: Step : Determine the factored design loads (AISC/LRFD Specification A4). From the column tables, determine the effective length KL using

More information

The minus sign indicates that the centroid is located below point E. We will relocate the axis as shown in Figure (1) and take discard the sign:

The minus sign indicates that the centroid is located below point E. We will relocate the axis as shown in Figure (1) and take discard the sign: AOE 304: Thin Walled Structures Solutions to Consider a cantilever beam as shown in the attached figure. At the tip of the beam, a bending moment M = 1000 N-m is applied at an angle θ with respect to the

More information

CHAPTER 8 BENDING MOMENT AND SHEAR FORCE DIAGRAMS

CHAPTER 8 BENDING MOMENT AND SHEAR FORCE DIAGRAMS CHPTE 8 BENDING MOMENT ND SHE FOCE DIGMS EXECISE 5, Page. Determine expressions for the bending moment and shearing force distributions for the following simply supported beam; hence, or otherwise, plot

More information

MCE503: Modeling and Simulation of Mechatronic Systems. Modeling of Continuous Beams: Finite-Mode Approach

MCE503: Modeling and Simulation of Mechatronic Systems. Modeling of Continuous Beams: Finite-Mode Approach MCE503: Modeling and Simulation of Mechatronic Systems MCE503 p./23 Modeling of Continuous Beams: Finite-Mode Approach Reading: KMR Chapter 0 Cleveland State University Mechanical Engineering Hanz Richter,

More information

- Beams are structural member supporting lateral loadings, i.e., these applied perpendicular to the axes.

- Beams are structural member supporting lateral loadings, i.e., these applied perpendicular to the axes. 4. Shear and Moment functions - Beams are structural member supporting lateral loadings, i.e., these applied perpendicular to the aes. - The design of such members requires a detailed knowledge of the

More information

Physics 229& 100 Homework #1 Name: Nasser Abbasi

Physics 229& 100 Homework #1 Name: Nasser Abbasi Physics 229& 100 Homework #1 Name: Nasser Abbasi (converted to 6.0) 1. Practice in transcribing expressions into Mathematica syntax a) Find the determinant of this matrix: In[94]:= a = {{1, 2, 3, 4}, {1,

More information

WORCESTER POLYTECHNIC INSTITUTE

WORCESTER POLYTECHNIC INSTITUTE WORCETER OLYTECHNIC INTITUTE MECHANICAL ENGINEERING DEARTMENT DGN OF MACHINE ELEMENT ME-330, B 018 Lecture 08-09 November 018 Examples w Eccentric load Concentric load w Examples Vestas V80-.0 MWatt Installing

More information

Module 3. Analysis of Statically Indeterminate Structures by the Displacement Method

Module 3. Analysis of Statically Indeterminate Structures by the Displacement Method odule 3 Analysis of Statically Indeterminate Structures by the Displacement ethod Lesson 16 The Slope-Deflection ethod: rames Without Sidesway Instructional Objectives After reading this chapter the student

More information

ENG202 Statics Lecture 16, Section 7.1

ENG202 Statics Lecture 16, Section 7.1 ENG202 Statics Lecture 16, Section 7.1 Internal Forces Developed in Structural Members - Design of any structural member requires an investigation of the loading acting within the member in order to be

More information

Chapter 2: Deflections of Structures

Chapter 2: Deflections of Structures Chapter 2: Deflections of Structures Fig. 4.1. (Fig. 2.1.) ASTU, Dept. of C Eng., Prepared by: Melkamu E. Page 1 (2.1) (4.1) (2.2) Fig.4.2 Fig.2.2 ASTU, Dept. of C Eng., Prepared by: Melkamu E. Page 2

More information

Chapter 4.1: Shear and Moment Diagram

Chapter 4.1: Shear and Moment Diagram Chapter 4.1: Shear and Moment Diagram Chapter 5: Stresses in Beams Chapter 6: Classical Methods Beam Types Generally, beams are classified according to how the beam is supported and according to crosssection

More information

Deflection of Beams. Equation of the Elastic Curve. Boundary Conditions

Deflection of Beams. Equation of the Elastic Curve. Boundary Conditions Deflection of Beams Equation of the Elastic Curve The governing second order differential equation for the elastic curve of a beam deflection is EI d d = where EI is the fleural rigidit, is the bending

More information

Introduction to Finite Element Method. Dr. Aamer Haque

Introduction to Finite Element Method. Dr. Aamer Haque Introduction to Finite Element Method 4 th Order Beam Equation Dr. Aamer Haque http://math.iit.edu/~ahaque6 ahaque7@iit.edu Illinois Institute of Technology July 1, 009 Outline Euler-Bernoulli Beams Assumptions

More information

Portal Frame Calculations Lateral Loads

Portal Frame Calculations Lateral Loads Portal Frame Calculations Lateral Loads Consider the following multi-story frame: The portal method makes several assumptions about the internal forces of the columns and beams in a rigid frame: 1) Inflection

More information

Internal Internal Forces Forces

Internal Internal Forces Forces Internal Forces ENGR 221 March 19, 2003 Lecture Goals Internal Force in Structures Shear Forces Bending Moment Shear and Bending moment Diagrams Internal Forces and Bending The bending moment, M. Moment

More information

Deflection of Flexural Members - Macaulay s Method 3rd Year Structural Engineering

Deflection of Flexural Members - Macaulay s Method 3rd Year Structural Engineering Deflection of Flexural Members - Macaulay s Method 3rd Year Structural Engineering 008/9 Dr. Colin Caprani 1 Contents 1. Introduction... 3 1.1 General... 3 1. Background... 4 1.3 Discontinuity Functions...

More information

Deflection of Flexural Members - Macaulay s Method 3rd Year Structural Engineering

Deflection of Flexural Members - Macaulay s Method 3rd Year Structural Engineering Deflection of Flexural Members - Macaulay s Method 3rd Year Structural Engineering 009/10 Dr. Colin Caprani 1 Contents 1. Introduction... 4 1.1 General... 4 1. Background... 5 1.3 Discontinuity Functions...

More information

MEMS Report for Lab #3. Use of Strain Gages to Determine the Strain in Cantilever Beams

MEMS Report for Lab #3. Use of Strain Gages to Determine the Strain in Cantilever Beams MEMS 1041 Report for Lab #3 Use of Strain Gages to Determine the Strain in Cantilever Beams Date: February 9, 2016 Lab Instructor: Robert Carey Submitted by: Derek Nichols Objective: The objective of this

More information

1.1 To observe, evaluate and report on the load deflection relationship of a simply supported beam and a cantilever beam.

1.1 To observe, evaluate and report on the load deflection relationship of a simply supported beam and a cantilever beam. I. OBJECTIVES 1.1 To observe, evaluate and report on the load deflection relationship of a simply supported beam and a cantilever beam. 1.2 To determine the modulus of elasticity of the beam and what the

More information

Supplement: Statically Indeterminate Frames

Supplement: Statically Indeterminate Frames : Statically Indeterminate Frames Approximate Analysis - In this supplement, we consider another approximate method of solving statically indeterminate frames subjected to lateral loads known as the. Like

More information

MISG 2011, Problem 1: Coal Mine pillar extraction

MISG 2011, Problem 1: Coal Mine pillar extraction MISG 2011, Problem 1: Coal Mine pillar extraction Group 1 and 2 January 14, 2011 Group 1 () Coal Mine pillar extraction January 14, 2011 1 / 30 Group members C. Please, D.P. Mason, M. Khalique, J. Medard.

More information

Module 2. Analysis of Statically Indeterminate Structures by the Matrix Force Method

Module 2. Analysis of Statically Indeterminate Structures by the Matrix Force Method Module 2 Analysis of Statically Indeterminate Structures by the Matrix Force Method Lesson 8 The Force Method of Analysis: Beams Instructional Objectives After reading this chapter the student will be

More information

ME325 EXAM I (Sample)

ME325 EXAM I (Sample) ME35 EXAM I (Sample) NAME: NOTE: COSED BOOK, COSED NOTES. ONY A SINGE 8.5x" ORMUA SHEET IS AOWED. ADDITIONA INORMATION IS AVAIABE ON THE AST PAGE O THIS EXAM. DO YOUR WORK ON THE EXAM ONY (NO SCRATCH PAPER

More information

BEAM DEFLECTION THE ELASTIC CURVE

BEAM DEFLECTION THE ELASTIC CURVE BEAM DEFLECTION Samantha Ramirez THE ELASTIC CURVE The deflection diagram of the longitudinal axis that passes through the centroid of each cross-sectional area of a beam. Supports that apply a moment

More information

IBRAHIM EREN. Yildiz Technical University, Mechanical Engineering Department, 34349, Besiktas, Istanbul, Turkey

IBRAHIM EREN. Yildiz Technical University, Mechanical Engineering Department, 34349, Besiktas, Istanbul, Turkey Sādhanā Vol. 33, Part 1, February 008, pp. 45 55. Printed in India Determining large deflections in rectangular combined loaded cantilever beams made of non-linear Ludwick type material by means of different

More information

CIVL 7/8117 Chapter 4 - Development of Beam Equations - Part 2 1/34. Chapter 4b Development of Beam Equations. Learning Objectives

CIVL 7/8117 Chapter 4 - Development of Beam Equations - Part 2 1/34. Chapter 4b Development of Beam Equations. Learning Objectives CIV 7/87 Chapter 4 - Development of Beam Equations - Part /4 Chapter 4b Development of Beam Equations earning Objectives To introduce the work-equivalence method for replacing distributed loading by a

More information

Name (Print) ME Mechanics of Materials Exam # 2 Date: March 29, 2017 Time: 8:00 10:00 PM - Location: WTHR 200

Name (Print) ME Mechanics of Materials Exam # 2 Date: March 29, 2017 Time: 8:00 10:00 PM - Location: WTHR 200 Name (Print) (Last) (First) Instructions: ME 323 - Mechanics of Materials Exam # 2 Date: Time: 8:00 10:00 PM - Location: WTHR 200 Circle your lecturer s name and your class meeting time. Koslowski Zhao

More information

Unit 13 Review of Simple Beam Theory

Unit 13 Review of Simple Beam Theory MIT - 16.0 Fall, 00 Unit 13 Review of Simple Beam Theory Readings: Review Unified Engineering notes on Beam Theory BMP 3.8, 3.9, 3.10 T & G 10-15 Paul A. Lagace, Ph.D. Professor of Aeronautics & Astronautics

More information

SAB2223 Mechanics of Materials and Structures

SAB2223 Mechanics of Materials and Structures S2223 Mechanics of Materials and Structures TOPIC 2 SHER FORCE ND ENDING MOMENT Lecturer: Dr. Shek Poi Ngian TOPIC 2 SHER FORCE ND ENDING MOMENT Shear Force and ending Moment Introduction Types of beams

More information

Problem d d d B C E D. 0.8d. Additional lecturebook examples 29 ME 323

Problem d d d B C E D. 0.8d. Additional lecturebook examples 29 ME 323 Problem 9.1 Two beam segments, AC and CD, are connected together at C by a frictionless pin. Segment CD is cantilevered from a rigid support at D, and segment AC has a roller support at A. a) Determine

More information

Introduction to Structural Member Properties

Introduction to Structural Member Properties Introduction to Structural Member Properties Structural Member Properties Moment of Inertia (I): a mathematical property of a cross-section (measured in inches 4 or in 4 ) that gives important information

More information

ME C85/CE C30 Fall, Introduction to Solid Mechanics ME C85/CE C30. Final Exam. Fall, 2013

ME C85/CE C30 Fall, Introduction to Solid Mechanics ME C85/CE C30. Final Exam. Fall, 2013 Introduction to Solid Mechanics ME C85/CE C30 Fall, 2013 1. Leave an empty seat between you and the person (people) next to you. Unfortunately, there have been reports of cheating on the midterms, so we

More information

This procedure covers the determination of the moment of inertia about the neutral axis.

This procedure covers the determination of the moment of inertia about the neutral axis. 327 Sample Problems Problem 16.1 The moment of inertia about the neutral axis for the T-beam shown is most nearly (A) 36 in 4 (C) 236 in 4 (B) 136 in 4 (D) 736 in 4 This procedure covers the determination

More information

SLOPE-DEFLECTION METHOD

SLOPE-DEFLECTION METHOD SLOPE-DEFLECTION ETHOD The slope-deflection method uses displacements as unknowns and is referred to as a displacement method. In the slope-deflection method, the moments at the ends of the members are

More information

= 50 ksi. The maximum beam deflection Δ max is not = R B. = 30 kips. Notes for Strength of Materials, ET 200

= 50 ksi. The maximum beam deflection Δ max is not = R B. = 30 kips. Notes for Strength of Materials, ET 200 Notes for Strength of Materials, ET 00 Steel Six Easy Steps Steel beam design is about selecting the lightest steel beam that will support the load without exceeding the bending strength or shear strength

More information

A HIGHER-ORDER BEAM THEORY FOR COMPOSITE BOX BEAMS

A HIGHER-ORDER BEAM THEORY FOR COMPOSITE BOX BEAMS A HIGHER-ORDER BEAM THEORY FOR COMPOSITE BOX BEAMS A. Kroker, W. Becker TU Darmstadt, Department of Mechanical Engineering, Chair of Structural Mechanics Hochschulstr. 1, D-64289 Darmstadt, Germany kroker@mechanik.tu-darmstadt.de,

More information

Chapter Objectives. Copyright 2011 Pearson Education South Asia Pte Ltd

Chapter Objectives. Copyright 2011 Pearson Education South Asia Pte Ltd Chapter Objectives To generalize the procedure by formulating equations that can be plotted so that they describe the internal shear and moment throughout a member. To use the relations between distributed

More information

Structural Continuity

Structural Continuity Architecture 324 Structures II Structural Continuity Continuity in Beams Deflection Method Slope Method Three-Moment Theorem Millennium Bridge, London Foster and Partners + Arup Photo by Ryan Donaghy University

More information

Mechanics of Structures (CE130N) Lab 3

Mechanics of Structures (CE130N) Lab 3 UNIVERSITY OF CALIFORNIA AT BERKELEY CE 130N, Spring 2009 Department of Civil and Environmental Engineering Prof. S. Govindjee and Dr. T. Koyama Structural Engineering, Mechanics and Materials Lab 3 1

More information

Module 10: Free Vibration of an Undampened 1D Cantilever Beam

Module 10: Free Vibration of an Undampened 1D Cantilever Beam Module 10: Free Vibration of an Undampened 1D Cantilever Beam Table of Contents Page Number Problem Description Theory Geometry 4 Preprocessor 6 Element Type 6 Real Constants and Material Properties 7

More information

Problem 1: Calculating deflection by integration uniform load. Problem 2: Calculating deflection by integration - triangular load pattern

Problem 1: Calculating deflection by integration uniform load. Problem 2: Calculating deflection by integration - triangular load pattern Problem 1: Calculating deflection by integration uniform load Problem 2: Calculating deflection by integration - triangular load pattern Problem 3: Deflections - by differential equations, concentrated

More information

Side Note (Needed for Deflection Calculations): Shear and Moment Diagrams Using Area Method

Side Note (Needed for Deflection Calculations): Shear and Moment Diagrams Using Area Method Side Note (Needed for Deflection Calculations): Shear and Moment Diagrams Using Area Method How do we draw the moment and shear diagram for an arbitrarily loaded beam? Is there a easier and faster way

More information

Plate Forces and Moments Blog Post pdf

Plate Forces and Moments Blog Post pdf Plate Forces and Moments Blog Post pdf Author: Surya Batchu Senior Stress Engineer Founder, STRESS EBOOK LLC. http://www.stressebook.com 1 P a g e Plate Forces and Moments - Intro: You may have heard these

More information

Shear Forces And Bending Moments

Shear Forces And Bending Moments Shear Forces And Bending Moments 1 Introduction 2001 Brooks/Cole, a division of Thomson Learning, Inc. Thomson Learning is a trademark used herein under license. Fig. 4-1 Examples of beams subjected to

More information

7.5 Elastic Buckling Columns and Buckling

7.5 Elastic Buckling Columns and Buckling 7.5 Elastic Buckling The initial theory of the buckling of columns was worked out by Euler in 1757, a nice example of a theory preceding the application, the application mainly being for the later invented

More information

Introduction to Continuous Systems. Continuous Systems. Strings, Torsional Rods and Beams.

Introduction to Continuous Systems. Continuous Systems. Strings, Torsional Rods and Beams. Outline of Continuous Systems. Introduction to Continuous Systems. Continuous Systems. Strings, Torsional Rods and Beams. Vibrations of Flexible Strings. Torsional Vibration of Rods. Bernoulli-Euler Beams.

More information

AREAS, RADIUS OF GYRATION

AREAS, RADIUS OF GYRATION Chapter 10 MOMENTS of INERTIA for AREAS, RADIUS OF GYRATION Today s Objectives: Students will be able to: a) Define the moments of inertia (MoI) for an area. b) Determine the MoI for an area by integration.

More information

The CR Formulation: BE Plane Beam

The CR Formulation: BE Plane Beam 6 The CR Formulation: BE Plane Beam 6 Chapter 6: THE CR FORMUATION: BE PANE BEAM TABE OF CONTENTS Page 6. Introduction..................... 6 4 6.2 CR Beam Kinematics................. 6 4 6.2. Coordinate

More information

Hong Kong Institute of Vocational Education (Tsing Yi) Higher Diploma in Civil Engineering Structural Mechanics. Chapter 2 SECTION PROPERTIES

Hong Kong Institute of Vocational Education (Tsing Yi) Higher Diploma in Civil Engineering Structural Mechanics. Chapter 2 SECTION PROPERTIES Section Properties Centroid The centroid of an area is the point about which the area could be balanced if it was supported from that point. The word is derived from the word center, and it can be though

More information

PROBLEM 7.37 SOLUTION

PROBLEM 7.37 SOLUTION PROLEM 7.37 For the beam and loading shown, (a) draw the shear and bending-moment diagrams, (b) determine the maimum absolute values of the shear and bending moment. Free bod: Entire beam Σ M = 0: E(6

More information

x+ y = 50 Dividing both sides by 2 : ( ) dx By (7.2), x = 25m gives maximum area. Substituting this value into (*):

x+ y = 50 Dividing both sides by 2 : ( ) dx By (7.2), x = 25m gives maximum area. Substituting this value into (*): Solutions 7(b 1 Complete solutions to Exercise 7(b 1. Since the perimeter 100 we have x+ y 100 [ ] ( x+ y 50 ividing both sides by : y 50 x * The area A xy, substituting y 50 x gives: A x( 50 x A 50x x

More information

Math 175 Common Exam 2A Spring 2018

Math 175 Common Exam 2A Spring 2018 Math 175 Common Exam 2A Spring 2018 Part I: Short Form The first seven (7) pages are short answer. You don t need to show work. Partial credit will be rare and small. 1. (8 points) Suppose f(x) is a function

More information

QUESTION BANK ENGINEERS ACADEMY. Hinge E F A D. Theory of Structures Determinacy Indeterminacy 1

QUESTION BANK ENGINEERS ACADEMY. Hinge E F A D. Theory of Structures Determinacy Indeterminacy 1 Theory of Structures eterminacy Indeterminacy 1 QUSTION NK 1. The static indeterminacy of the structure shown below (a) (b) 6 (c) 9 (d) 12 2. etermine the degree of freedom of the following frame (a) 1

More information

Laboratory 4 Topic: Buckling

Laboratory 4 Topic: Buckling Laboratory 4 Topic: Buckling Objectives: To record the load-deflection response of a clamped-clamped column. To identify, from the recorded response, the collapse load of the column. Introduction: Buckling

More information

Axial force-moment interaction in the LARSA hysteretic beam element

Axial force-moment interaction in the LARSA hysteretic beam element Axial force-moment interaction in the LARSA hsteretic beam element This document briefl discusses the modeling of tri-axial interaction (i.e. between axial force and bending moments) in the LARSA beam

More information

CIV-E1060 Engineering Computation and Simulation Examination, December 12, 2017 / Niiranen

CIV-E1060 Engineering Computation and Simulation Examination, December 12, 2017 / Niiranen CIV-E16 Engineering Computation and Simulation Examination, December 12, 217 / Niiranen This examination consists of 3 problems rated by the standard scale 1...6. Problem 1 Let us consider a long and tall

More information

the engineer s notebook 2013

the engineer s notebook 2013 the engineer s notebook 013 Consider a straight beam that is comprised of a material that is homogenous, linear- elastic, and isotropic. The beam is subjected to a uniform loading across its entire length

More information

Statically Indeterminate Beams

Statically Indeterminate Beams Deflection Part Staticall Indeterminate eams We can use the same method that we used for deflection to analze staticall indeterminate beams lessed are the who can laugh at themselves for the shall never

More information

bending moment in the beam can be obtained by integration

bending moment in the beam can be obtained by integration q 0 L 4 B = - v(l) = CCC ( ) 30 EI Example 9-5 an overhanging beam ABC with a concentrated load P applied at the end determine the equation of deflection curve and the deflection C at the end flexural

More information

Three torques act on the shaft. Determine the internal torque at points A, B, C, and D.

Three torques act on the shaft. Determine the internal torque at points A, B, C, and D. ... 7. Three torques act on the shaft. Determine the internal torque at points,, C, and D. Given: M 1 M M 3 300 Nm 400 Nm 00 Nm Solution: Section : x = 0; T M 1 M M 3 0 T M 1 M M 3 T 100.00 Nm Section

More information

8.3 Shear and Bending-Moment Diagrams Constructed by Areas

8.3 Shear and Bending-Moment Diagrams Constructed by Areas 8.3 Shear and ending-moment Diagrams Constructed by reas 8.3 Shear and ending-moment Diagrams Constructed by reas Procedures and Strategies, page 1 of 3 Procedures and Strategies for Solving Problems Involving

More information

Beam Design and Deflections

Beam Design and Deflections Beam Design and Deflections tation: a = name for width dimension A = name for area Areq d-adj = area required at allowable stress when shear is adjusted to include self weight Aweb = area of the web of

More information

Statics: Lecture Notes for Sections 10.1,10.2,10.3 1

Statics: Lecture Notes for Sections 10.1,10.2,10.3 1 Chapter 10 MOMENTS of INERTIA for AREAS, RADIUS OF GYRATION Today s Objectives: Students will be able to: a) Define the moments of inertia (MoI) for an area. b) Determine the MoI for an area by integration.

More information

EE C245 ME C218 Introduction to MEMS Design

EE C245 ME C218 Introduction to MEMS Design EE C245 ME C218 Introduction to MEMS Design Fall 2007 Prof. Clark T.-C. Nguyen Dept. of Electrical Engineering & Computer Sciences University of California at Berkeley Berkeley, CA 94720 Lecture 16: Energy

More information

Chapter 7 FORCES IN BEAMS AND CABLES

Chapter 7 FORCES IN BEAMS AND CABLES hapter 7 FORES IN BEAMS AN ABLES onsider a straight two-force member AB subjected at A and B to equal and opposite forces F and -F directed along AB. utting the member AB at and drawing the free-body B

More information

5. What is the moment of inertia about the x - x axis of the rectangular beam shown?

5. What is the moment of inertia about the x - x axis of the rectangular beam shown? 1 of 5 Continuing Education Course #274 What Every Engineer Should Know About Structures Part D - Bending Strength Of Materials NOTE: The following question was revised on 15 August 2018 1. The moment

More information

VIBRATION ANALYSIS OF EULER AND TIMOSHENKO BEAMS USING DIFFERENTIAL TRANSFORMATION METHOD

VIBRATION ANALYSIS OF EULER AND TIMOSHENKO BEAMS USING DIFFERENTIAL TRANSFORMATION METHOD VIBRATION ANALYSIS OF EULER AND TIMOSHENKO BEAMS USING DIFFERENTIAL TRANSFORMATION METHOD Dona Varghese 1, M.G Rajendran 2 1 P G student, School of Civil Engineering, 2 Professor, School of Civil Engineering

More information

CHAPTER 7 DEFLECTIONS OF BEAMS

CHAPTER 7 DEFLECTIONS OF BEAMS CHPTER 7 DEFLECTIONS OF EMS OJECTIVES Determine the deflection and slope at specific points on beams and shafts, using various analytical methods including: o o o The integration method The use of discontinuity

More information

Physics 8 Monday, November 23, 2015

Physics 8 Monday, November 23, 2015 Physics 8 Monday, November 23, 2015 Handing out HW11, due Friday, December 4. One or two more beam-related examples, then we ll move on to oscillations ( periodic motion ). This week s reading is Mazur

More information

Chapter Objectives. Design a beam to resist both bendingand shear loads

Chapter Objectives. Design a beam to resist both bendingand shear loads Chapter Objectives Design a beam to resist both bendingand shear loads A Bridge Deck under Bending Action Castellated Beams Post-tensioned Concrete Beam Lateral Distortion of a Beam Due to Lateral Load

More information

Slender Structures Load carrying principles

Slender Structures Load carrying principles Slender Structures Load carrying principles Basic cases: Extension, Shear, Torsion, Cable Bending (Euler) v017-1 Hans Welleman 1 Content (preliminary schedule) Basic cases Extension, shear, torsion, cable

More information

ENGI Second Order Linear ODEs Page Second Order Linear Ordinary Differential Equations

ENGI Second Order Linear ODEs Page Second Order Linear Ordinary Differential Equations ENGI 344 - Second Order Linear ODEs age -01. Second Order Linear Ordinary Differential Equations The general second order linear ordinary differential equation is of the form d y dy x Q x y Rx dx dx Of

More information

Due Tuesday, September 21 st, 12:00 midnight

Due Tuesday, September 21 st, 12:00 midnight Due Tuesday, September 21 st, 12:00 midnight The first problem discusses a plane truss with inclined supports. You will need to modify the MatLab software from homework 1. The next 4 problems consider

More information

Physics 8 Wednesday, November 29, 2017

Physics 8 Wednesday, November 29, 2017 Physics 8 Wednesday, November 29, 2017 HW11 due this Friday, Dec 1. After another day or two on beams, our last topic of the semester will be oscillations (a.k.a. vibration, periodic motion). Toward that

More information

Structural Analysis III Compatibility of Displacements & Principle of Superposition

Structural Analysis III Compatibility of Displacements & Principle of Superposition Structural Analysis III Compatibility of Displacements & Principle of Superposition 2007/8 Dr. Colin Caprani, Chartered Engineer 1 1. Introduction 1.1 Background In the case of 2-dimensional structures

More information

UNSYMMETRICAL BENDING

UNSYMMETRICAL BENDING UNSYMMETRICAL BENDING The general bending stress equation for elastic, homogeneous beams is given as (II.1) where Mx and My are the bending moments about the x and y centroidal axes, respectively. Ix and

More information