EGR 106 – Project Description (cont.) Analysis of truss structures A simple example Factor of Safety calculations This week’s assignment.

Slides:



Advertisements
Similar presentations
ENCE 455 Design of Steel Structures
Advertisements

WORKSHEET 7 AXIALLY LOADED MEMBERS. Q1 Are tension structures or compression structures more efficient when loaded axially ? tension structures tension.
Axial Members WORKSHEET 11 to answer just click on the button or image related to the answer.
STATICALLY DETERMINATE STRESS SYSTEMS
Indeterminate Structure Session Subject: S1014 / MECHANICS of MATERIALS Year: 2008.
Introduction to Axially Loaded Compression Members
4-Chapter Allowable stresses. contents Introduction 2.6.1(p8) Compression element, Axial or bending2.6.1(p8) Compression element, Axial or bending Axial.
Course Title: Strength of Materials (CVE 202)
Calculating Truss Forces
Chapter 13 Buckling of Columns
FE/Graduate Seminar Review Examples
Compression Members. Compression Members: Structural elements subjected only to axial compressive forces Stress:Uniform over entire cross section.
Column Design ( ) MAE 316 – Strength of Mechanical Components
TRUSSES–THE METHOD OF SECTIONS (Section 6.4)
EGR 106 – Truss Design Project (cont.) Truss design programs Graphical interface tools in Matlab Saving and loading data Formatted output Project Assignment.
Compression BADI Y1.
READING QUIZ In the analysis of a planar truss, all the member are assumed to be ___________. A) three-force member B) zero-force member C) two-force member.
ENGR-1100 Introduction to Engineering Analysis
Lecture # 2 Allowable Stress Objective:
CHAP 6 FINITE ELEMENTS FOR PLANE SOLIDS
Copyright © 2011 Pearson Education South Asia Pte Ltd
EGR 106 – Project Intro / While Loop Project description Project schedule Background information / terminology A simple example Examples of similar programs.
Axially loaded member Axial load and normal stress under equilibrium load, Elastic Deformation.
Minimum Weight Wing Design for a Utility Type Aircraft MIDDLE EAST TECHNICAL UNIVERSITY AE 462 – Aerospace Structures Design DESIGN TEAM : Osman Erdem.
© 2006 Baylor University EGR 1301 Slide 1 Lab 8 Predicting Strength of Trusses Approximate Running Time – 20 minutes Distance Learning / Online Instructional.
WORKSHEET 2 FAILURE, STRESS AND STRAIN
University of Sydney –Building Principles Axial Forces Peter Smith& Mike Rosenman Eureka Museum, Ballarat 1/16 l Tension members occur in trusses, and.
SHEAR IN BEAMS. SHEAR IN BEAMS Introduction Loads applied to beams produce bending moments, shearing forces, as shown, and in some cases torques. Beams.
CHAPTER OBJECTIVES Review important principles of statics
University of Sydney –Building Principles AXIAL FORCES Peter Smith& Mike Rosenman l Tension members occur in trusses, and in some special structures l.
ERT352 FARM STRUCTURES TRUSS DESIGN
1.
LINEAR BUCKLING ANALYSIS
Statics Activities. Stress  Force per unit area (  ) Typical engineering units – psi (lb f /in 2 ) – N/m 2 Stress = Force/Area – Applied by external.
Strengths Chapter 10 Strains. 1-1 Intro Structural materials deform under the action of forces Three kinds of deformation Increase in length called an.
9 Torsion.
Chapter 1: Stress Review important principles of statics
STRUCTURES Outcome 3 Gary Plimer 2008 MUSSELBURGH GRAMMAR SCHOOL.
Buckling of Slender Columns ( )
©Teaching Resource in Design of Steel Structures – IIT Madras, SERC Madras, Anna Univ., INSDAG 1 COLD FORMED STEEL SECTIONS - I.
1.5 AVERAGE SHEAR STRESS Shear stress is the stress component that act in the plane of the sectioned area. Consider a force F acting to the bar For rigid.
ENGR 211 Bridge Design Project
3 Torsion.
COLUMNS = Slenderness Ratio r = Least radius of gyration, inches
Mechanical Properties of Materials
Deformation of Axially Loaded Members - Single Member
Strength of Materials Malayer University Department of Civil Engineering Taught by: Dr. Ali Reza Bagherieh In The Name of God.
Problem kN 12.5 kN 12.5 kN 12.5 kN Using the method of joints, determine the force in each member of the truss shown. 2 m 2 m 2 m A B C D 2.5.
University of Sydney – BDes Design Studies 1A - Structures Modes of Failure Mike Rosenman 2000 Modes of Failure solids held together by bonds between their.
Concepts embedded in the draft IS:800 for Compression members
Chapter 5 Introduction to Axially Loaded Compression Members.
ENGINEERING MECHANICS (15BS105)
1. Two rods, one of nylon and one of steel, are rigidly connected as shown in Fig. P.1.2. Determine the stresses and axial deformations when an axial load.
Mechanics of Solids (M2H321546)
Outline: Introduction: a ) General description of project b) Materials
Chapter : 01 Simple Stresses
Structure II Course Code: ARCH 209 Dr. Aeid A. Abdulrazeg
Set up ratios: = = Fill in ratios: Solve the proportion: =
Buckling & Stability Critical Load
Chapter 13 – Buckling of Columns
Compression Test of Steel Columns
( BDA 3033 ) CHAPTER 6 Theories of Elastic Failures
BFC Structural Steel and Timber Design
ENCE 455 Design of Steel Structures
( BDA 3033 ) CHAPTER 6 Theories of Elastic Failures
Analysis of truss-Method of Joint
ANALYSIS OF STRUCTURES
CHAPTER OUTLINE Introduction Equilibrium of a deformable body Stress
Truss analysis.
BUCKLING OF COLUMNS. AIM To study the failure analysis of buckling of columns.
Presentation transcript:

EGR 106 – Project Description (cont.) Analysis of truss structures A simple example Factor of Safety calculations This week’s assignment

A function, analyze_truss.m, has been developed and is available for download from the course web page: Input variables: joint_def (joint definitions) and member_def (member definitions) Output variables: disp (joint displacements) and stress (member stresses) Truss Analysis [displacements,stress]=analyze_truss(joint_def,member_def)

Truss Analysis – A simple example C x = 100 N C y = -50 N 300 mm 150 mm

A simple example – joint definitions C x = 100 N C y = -50 N 300 mm 150 mm joint_def=[0, 0, 1, 0, 0; 50, 50, 0, 0, 0; 150, 150, 0, 100, -50; 250, 50, 0, 0, 0; 300, 0, 3, 0, 0; 200, 0, 0, 0, 0; 100, 0, 0, 0, 0]; Column 1 – x coordinates of joints Column 2 – y coordinates of joints Column 3 – bcdof, where bcdof=0 for unconstrained bcdof=1 for X&Y–displacement=0 bcdof=2 for X-displacement=0 bcdof=3 for Y-displacement=0 Column 4 – force in X-direction Column 5 – force in Y-direction

A simple example – member definitions C x = 100 C y = mm 150 mm member_def=[1, 2, 10, 10; 2, 3, 10, 10; 3, 4, 10, 10; 4, 5, 10, 10; 5, 6, 10, 10; 6, 7, 10, 10; 7, 1, 10, 10; 2, 7, 10, 10; 7, 3, 10, 10; 3, 6, 10, 10; 6, 4, 10, 10]; Column 1 – first joint in member Column 2 – second joint in member Column 3 – width of member Column 4 – thickness of member

Joint Displacments displacments = C x = 100 N C y = -50 N 300 mm 150 mm Simple example – displacement results } X & Y displacements – joint 1 (A) } X & Y displacements – joint 2 (B) } X & Y displacements – joint 3 (C) } X & Y displacements – joint 4 (D) } X & Y displacements – joint 5 (E) } X & Y displacements – joint 6 (F) } X & Y displacements – joint 7 (G)

C x = 100 C y = mm 150 mm Member Stresses stress = } stress in member AB } stress in member BC } stress in member CD } stress in member DE } stress in member EF } stress in member FG } stress in member AG } stress in member BG } stress in member CG } stress in member CF } stress in member DF Simple example – stress results

The stress results give the force per unit area in each member (N/mm 2 ) If the stress is positive, the member is being stretched in tension If the stress is negative, the member is being compressed These stresses need to be compared to material strengths To quantify the relation between stress and strength, we introduce the Factor of Safety (FOS) Strength Analysis

For members in tension (stress > 0), the factor of safety is the ratio of the material’s tensile strength, S T, to the stress in that member: FOS = S T / stress For example, if stress = 100 N/mm 2 and S T =200 N/mm 2, then FOS =2 (i.e. the material is twice as strong as needed) Factor of Safety – members in tension

For members in compression (stress < 0), two failure modes must be considered: – Failure may occur when the stress reaches the compressive strength – Or, failure may occur due to buckling of long slender members Hence, we must compute two Factor of Safety values The smaller of these values is the critical Factor of Safety to be used in designing the truss Factor of Safety - members in compression

For members in compression (stress 0): FOS 1 = - S C / stress Factor of Safety – members in compression (cont.)

The second compression factor of safety is the ratio of the material’s buckling strength to the stress in the member. The buckling strength is inversely proportional to the length of the member and is defined as a buckling coefficient divided by the member length, K B /L 2. Hence, the second factor of safety for compression members is given by: FOS 2 = - ( K B /L 2 ) / stress Factor of Safety – members in compression (cont.)

The critical failure mode is determined by comparing FOS 1 and FOS 2. The smaller value is the one to be used in designing the truss FOS = minimum (FOS 1, FOS 2 ) Factor of Safety – members in compression (cont.)

If a member has a stress of zero, then its Factor of Safety in infinite: FOS =  Factor of Safety – zero stress members

Overall Factor of Safety After determining the Factors of Safety for each member, the overall Factor of Safety is the smallest of the individual member Factors of Safety. If the Overall Factor of Safety is less than one, than the truss is expected to fail when the forces are applied. The larger the Overall Factor of Safety, the safer the design.

This Week’s Assignment* 100 mm For the truss shown, write a Matlab program that: Determines the joint displacements Determines the member stresses Computes a factor of safety for each member Computes an overall factor of safety Displays the joints and elements in a figure window Displays the deformed truss in a 2 nd figure window * See assignment handout for more details