6.2 Truss - Two Dimensions

Size: px
Start display at page:

Download "6.2 Truss - Two Dimensions"

Transcription

1 6.2 Truss - Two Dimensions Trusses make it easy to carry heavy loads. A bridge over the river, roof over your house, the giant crane used in construction or unloading heavy cargo from a ship are some of common examples. Trusses are light too. It is just a framework. You use them to support the forces so that the structure will not come tumbling down. Let us start with a figure of a simple truss in Figure (from Wikipedia) which will handle the load generated by automobiles/trucks on the bridge. On the right I have idealized the bridge in terms of simple elements: (i) the straight members; (ii) the pins; and (iii) the support for the straight elements at the bottom. The bridge is three-dimensional, and I have shown the information for the front plane (that will be two-dimensional). The pins are deliberate to avoid serious static indeterminacy. Example A simple bridge truss -and simplified Example 6.1 In the interest of keeping the calculations modest I have shortened the truss to a simpler geometry and loading as shown in Figure This is an idealized description of the truss. Figure A simple 2D truss There are four joints/pins (n), which we have identified as A, B, C, and D. There are five members (m) in the truss, and we refer to them through the pair of letters AD, AB, BD, BC, and CD. There are two supports for the truss at A and B. The support at A is a pin, and is not allowed to displace. The support at B is termed as a roller support and can move horizontally, but cannot move in the vertical direction. The truss carries two forces/loads in the direction shown. Points C and D are not restricted from moving. You should decide easily that this is a two-dimensional truss. The stability of the truss is given by a simple relation for a two dimensional truss: K = 2*n - 3 If K = m, the truss is structurally stable We seek two types of solution to the problem expressed in Figure First, we would like to know how much load each of the members will carry. This will help us to design the truss so that it will not fail under loading. This is considered as the Method of Joints. Second, we would also like to compute the final geometry of the truss with the loads as some pins will move under the applied loads. We can use this information to ensure that the point C, for example, will not hit against another machine (not shown here). This is the solution to the truss deformation.

2 Alternately, if we are certain that a certain member is critical, then we can seek the force only in that member to design it to avoid failure. This is called the Method of Sections. This could require less calculations for force computation. However, for the displacements all the forces are necessary. To start the calculations we use a free body diagram of the entire truss and apply the equation of statics Support Reactions The FBD of the truss is shown in Figure Here we are replacing the support reactions on the truss and the applied loads. Figure FBD of Example 6.1 The first thing we observe is that there are three unknown reactions. This works exceedingly well since we have three equations of equilibrium to solve them. This is a statically determinate problem. If the roller support at B was changed to a pin support we would have a statically indeterminate problem and would have trouble solving them from the equations of statics alone. We will have to solve for the displacements to use the new extra displacement information at B (the horizontal displacement is now zero). Our first step is to determine the support reactions. Support Reactions: The equilibrium equations: MATLAB Code (The MATLAB Code is broken into continuous segments - next piece of code may depend on previous code. It should be collected in a single file) % Essential Foundations in Mechanics % P. Venkataraman, Dec 2105 % Example 6.1 % Truss 2D %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% clc, clear, format compact, format shortg, close all, digits(3) warning off %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% fprintf('example 6.1\n') fprintf(' \n') %% Data F1 = 1500; F2 = 1000; % the applied force A = [0 0 0]; B = [0.5,0,0]; C = [1.5,0,0]; D = [0.5,0.5,0];

3 %% Support reaction calculations syms Ax Ay By real % Unknowns rab = B - A; rad = D - A; rac = C - A; FA = [Ax, Ay, 0]; FB = [0,By,0]; FC = [0,-F1,0]; FD = [-F2,0,0]; %% Equilibrium SumF = FA + FB + FC + FD % Sum of Forces SumMA = cross(rad,fd)+ cross(rab,fb)+ cross(rac,fc) % Sum of moments at A sol = solve(sumf(1),sumf(2), SumMA(3)); Ax = double(sol.ax); Ay = double(sol.ay); By = double(sol.by); fprintf('\nreactions:\n') fprintf(' \n') fprintf('ax [N] = '),disp(ax) fprintf('ay [N] = '),disp(ay) fprintf('by [N] = '),disp(by) In the Command Window Example SumF = [ Ax , Ay + By , 0] SumMA = [ 0, 0, By/2-1750] Reactions: Ax [N] = 1000 Ay [N] = By [N] = Member Forces - Method of Joints One important assumption about the force in the members is that the force will be along the member. The member can therefore be in one of two states - tension or compression. The unknowns are just the magnitude of the force in the members. The directions are obtained from the geometry of the problem. The member forces are obtained by considering the equilibrium of each pin or joint. Since we will be developing equilibrium equations for each pin, or a point - there are only two force equilibrium equations available at each pin for a 2D problem. To solve for the forces explicitly we cannot have more than two unknowns. It is useful to cycle through the pins so that the forces are explicitly solved with a numerical value at each pin (true only for statically determinate problems). It is therefore important to start at a pin with not more than two unknown member forces. We have to draw the FBD of the pins. Figure illustrates the FBD of pins A, B, C. Member forces drawn heading away from the pin are in tension. From Figure we should not start our calculation cycle at pin B (Why?).

4 Figure FBD of pins Solving for the member forces is simple but tiresome. The current set of equations are solved using previous known solutions for the reactions. The components of forces can be easily computed through the unit vectors based on the location of the pins. They can be reviewed in the MATLAB code and are not explicitly registered here. For each pin we are applying the equilibrium of the forces, which is shown along the coordinate directions below. A lot of statements in the code are used for printing. They are same as the ones encountered earlier in this book. Pin A: Pin B: Pin C: We solve these equations using MATLAB. The positive values for the member forces indicate tension. The negative values indicate that the member is in compression. MATLAB Code (Remember this piece of code continues the previous code) %% Member force calculations % substitute for known values FA = subs(fa); FB = subs(fb); %% Pin A fprintf('\npin A:\n') fprintf(' \n') syms Fab Fad rab = B-A; eab = rab/norm(rab); rad = D-A; ead = rad/norm(rad); SumA = FA + Fab*eAB + Fad*eAD sola = solve(suma(1),suma(2)); Fab = double(sola.fab); Fad = double(sola.fad); fprintf('fab [N] fprintf('fad [N] = '),disp(fab) = '),disp(fad) %% Pin B fprintf('\npin B:\n')

5 fprintf(' \n') syms Fbc Fbd rbc = C - B; ebc = rbc/norm(rbc); rbd = D - B; ebd = rbd/norm(rbd); SumB = -Fab*eAB + FB + Fbc*eBC + Fbd*eBD solb = solve(sumb(1),sumb(2)); Fbc = double(solb.fbc); Fbd = double(solb.fbd); fprintf('fbc [N] = '),disp(fbc) fprintf('fbd [N] = '),disp(fbd) %% Pin C fprintf('\npin C:\n') fprintf(' \n') syms Fcd rcd = D - C; ecd = rcd/norm(rcd); % only one unknown - need only one equation to solve for it SumC = -Fbc*eBC + FC + Fcd*eCD solc = solve(sumc(1)); Fcd = double(solc); fprintf('fcd [N] = '),disp(fcd) In The Command Window Pin A: SumA = [ Fab + (2^(1/2)*Fad)/ , (2^(1/2)*Fad)/2-2000, 0] Fab [N] = Fad [N] = 2833 Pin B: SumB = [ Fbc , Fbd , 0] Fbc [N] = Fbd [N] = Pin C: SumC = [ (2*5^(1/2)*Fcd)/5, (5^(1/2)*Fcd)/5-1500, 0] Fcd [N] = Displacement of the Truss This is a missing topic in standard engineering curriculum. Calculating the displacement of the truss is not taught in the basic Statics course because it uses the stress and strain of the members to set up the problem. It is not covered in the basic Strength of Materials courses because Trusses are not revisited there. If you enroll in a Finite Element course you are likely to solve for truss displacements numerically. You might solve for truss displacements using energy methods in an advanced course on Strength of Materials. These problems are usually solved using software today. We will solve for the displacements in this section using simple geometry and the relation between the displacement and the area of cross-section of the member, the length of the member, and the modulus of elasticity (the material property). This is based on stress, strain, and Hooke s law. It does get cumbersome with increase in the number of members. Before we venture into the solution let us consider the displacement of the Example truss in Figure

6 Figure Original and displaced (exaggerated) truss The pins of the truss are free to move if they are not constrained by supports. Pin B can move horizontally. Pins C and D can move in any direction. We have shown the displacement of C and D to be positive, a standard procedure for deriving the formula in all of science and engineering. In 2D space we can resolve the general displacement of the pin into two displacement components in the coordinate directions - components in x and y directions. This is illustrated in Figure for the member CD - both as part of the truss and separately as a FBD. Figure Displacement of member CD To solve for the displacements of member CD through its FBD below: Figure FBD of member CD The total change in length of the member CD (δ CD ) along the member CD (ignoring the small changes and based on undeformed original geometry) is the relative difference between the displacement of the end C and the displacement of the end D along the direction of member CD. We will assume that end C displaces more than end D to indicate tension in the member. This is not a limiting assumption. You could have assumed that end D moves more than end C to get the same results. It is advisable to be consistent in the development of the displacement relations. In Figure this is computed as as follows

7 We make use of the definitions of strain and stress in the member CD. We use the Hooke s law to relate the stress and strain in the member to arrive at a relation between the force F CD in the member and the unknown displacements of the ends of the member CD - dc x, dc y, dd x, dd y Since we have invoked the Hooke s law we are limited to small displacements. That is the displacements of the truss will not change the geometry of the truss significantly. This will allow us to identify the angles q based on the pre-deformed geometry. If the displacements are defined as vectors, then the total change of length along the member is the dot product of the unit vector along the member times the displacement vector of the ends. This is easy to incorporate in MATLAB. In Example 6.1, we have to develop one equation relating the force in the member to the displacements of the ends of the member, for each of the members in the example. Each member will have a FBD like Figure to help develop the relations. It is not shown in the subsequent development, but the actual relations should assist you in drawing one, which is suggested before you write the equations. We will make additional assumptions to make the development easy. All members are made up of the same material with the modulus of elasticity value of 11.4x10 6 [Pa]. All of the members have the same cross-sectional area of 50x10-4 [m 2 ]. Member AB: Member AD:

8 Member BC: Member BD: Member DC: We can solve equations (5) - (9) for the unknowns db x, dc x, dc y, dd x, dd y. MATLAB Code: %% Calculating displacements syms dbx dcx dcy ddx ddy % the unknowns % Properties Elas = 11.4e06; Area = 50e-04; % displacement vectors da = [0,0,0]; db = [dbx, 0,0]; dc = [dcx,dcy,0]; dd = [ddx, ddy,0]; % length of members and unit vectors (Copy and Paste) rab = B - A; LAB = norm(rab); eab = rab/lab; rad = D - A; LAD = norm(rad); ead = rad/lad; rbc = C - B; LBC = norm(rbc); ebc = rbc/lbc; rbd = D - B; LBD = norm(rbd); ebd = rbd/lbd; rdc = C - D; LDC = norm(rdc); edc = rdc/ldc; % set up the equations (Copy and Paste) Eq(1) = dot(eab,db)-dot(eab,da) - (Fab*LAB/(Area*Elas)); % Member AB Eq(2) = dot(ead,dd)-dot(ead,da) - (Fad*LAD/(Area*Elas)); % Member AD Eq(3) = dot(ebc,dc)-dot(ebc,db) - (Fbc*LBC/(Area*Elas)); % Member BC Eq(4) = dot(ebd,dd)-dot(ebd,db) - (Fbd*LBD/(Area*Elas)); % Member BD Eq(5) = dot(edc,dc)-dot(edc,dd) - (Fcd*LAB/(Area*Elas)); % Member DC soldis = solve(eq); fprintf('\ndisplacements\n') fprintf(' \n') fprintf('dbx [m] : '),disp(double(soldis.dbx)) fprintf('dcx [m] : '),disp(double(soldis.dcx)) fprintf('dcy [m] : '),disp(double(soldis.dcy)) fprintf('ddx [m] : '),disp(double(soldis.ddx)) fprintf('ddy [m] : '),disp(double(soldis.ddy))

9 In the Command Window Displacements dbx [m] : dcx [m] : dcy [m] : ddx [m] : ddy [m] : We have now obtained (1) the support reaction, (ii) member forces, and (iii) the displacements of the truss. I have used MATLAB for the calculations. They could have just been done by hand Member Forces - Method of Sections The method of sections is a quick way to determine the forces in selected members. It works best if the support reactions are known. Lets start with Figure and have solved for the unknowns A x, A y, and B y. We now seek the value for the force in the member CD. We will cut or section the truss to expose the member forces of interest and apply the equation of statics to the sectioned FBD shown in Figure Figure Applying method of sections We know apply the equilibrium equations to the sectioned truss F bc will not provide a moment about A. Since there are only two unknown we can solve for the forces from the force equation itself MATLAB Code: %% Method of sections - we will use previous definitions where available syms Fcb Fdc % we will use a different variable for forces clear SumF SumMA FCB = Fcb*eBC; FDC = Fdc*eDC; SumF = FA + FB + FD + FCB + FDC solms = solve(sumf(1),sumf(2)); Fcb = double(solms.fcb); Fdc = double(solms.fdc); fprintf('\nmethod of Sections\n') fprintf(' \n') fprintf('fcb [N] = '),disp(fcb) fprintf('fad [N] = '),disp(fdc) % We can check if this solution satisfies the moment equation SumMA = cross(rad,fd) + cross(rad,fdc) + cross(rab,fb); MomA = eval(subs(summa(3))) % should be zero without rounding error

10 In the Command Window Method of Sections Fcb [N] = Fad [N] = 3355 MomA = There are the same values obtained previously. The sum of moments should have been zero but we have chosen to report our results to 3 digits and hence carry round off error. In this example we could have considered the FBD of the other part of the sectioned figure in Figure That would be exactly the same as the FBD of pin C in Figure

Method of Sections for Truss Analysis

Method of Sections for Truss Analysis Method of Sections for Truss Analysis Notation: (C) = shorthand for compression P = name for load or axial force vector (T) = shorthand for tension Joint Configurations (special cases to recognize for

More information

Plane Trusses Trusses

Plane Trusses Trusses TRUSSES Plane Trusses Trusses- It is a system of uniform bars or members (of various circular section, angle section, channel section etc.) joined together at their ends by riveting or welding and constructed

More information

STATICALLY INDETERMINATE STRUCTURES

STATICALLY INDETERMINATE STRUCTURES STATICALLY INDETERMINATE STRUCTURES INTRODUCTION Generally the trusses are supported on (i) a hinged support and (ii) a roller support. The reaction components of a hinged support are two (in horizontal

More information

CHAPTER 5 Statically Determinate Plane Trusses

CHAPTER 5 Statically Determinate Plane Trusses CHAPTER 5 Statically Determinate Plane Trusses TYPES OF ROOF TRUSS TYPES OF ROOF TRUSS ROOF TRUSS SETUP ROOF TRUSS SETUP OBJECTIVES To determine the STABILITY and DETERMINACY of plane trusses To analyse

More information

CHAPTER 5 Statically Determinate Plane Trusses TYPES OF ROOF TRUSS

CHAPTER 5 Statically Determinate Plane Trusses TYPES OF ROOF TRUSS CHAPTER 5 Statically Determinate Plane Trusses TYPES OF ROOF TRUSS 1 TYPES OF ROOF TRUSS ROOF TRUSS SETUP 2 ROOF TRUSS SETUP OBJECTIVES To determine the STABILITY and DETERMINACY of plane trusses To analyse

More information

SRSD 2093: Engineering Mechanics 2SRRI SECTION 19 ROOM 7, LEVEL 14, MENARA RAZAK

SRSD 2093: Engineering Mechanics 2SRRI SECTION 19 ROOM 7, LEVEL 14, MENARA RAZAK SRSD 2093: Engineering Mechanics 2SRRI SECTION 19 ROOM 7, LEVEL 14, MENARA RAZAK SIMPLE TRUSSES, THE METHOD OF JOINTS, & ZERO-FORCE MEMBERS Today s Objectives: Students will be able to: a) Define a simple

More information

ENGR-1100 Introduction to Engineering Analysis. Lecture 23

ENGR-1100 Introduction to Engineering Analysis. Lecture 23 ENGR-1100 Introduction to Engineering Analysis Lecture 23 Today s Objectives: Students will be able to: a) Draw the free body diagram of a frame and its members. FRAMES b) Determine the forces acting at

More information

Outline: Frames Machines Trusses

Outline: Frames Machines Trusses Outline: Frames Machines Trusses Properties and Types Zero Force Members Method of Joints Method of Sections Space Trusses 1 structures are made up of several connected parts we consider forces holding

More information

Lecture 23. ENGR-1100 Introduction to Engineering Analysis FRAMES S 1

Lecture 23. ENGR-1100 Introduction to Engineering Analysis FRAMES S 1 ENGR-1100 Introduction to Engineering Analysis Lecture 23 Today s Objectives: Students will be able to: a) Draw the free body diagram of a frame and its members. FRAMES b) Determine the forces acting at

More information

6.6 FRAMES AND MACHINES APPLICATIONS. Frames are commonly used to support various external loads.

6.6 FRAMES AND MACHINES APPLICATIONS. Frames are commonly used to support various external loads. 6.6 FRAMES AND MACHINES APPLICATIONS Frames are commonly used to support various external loads. How is a frame different than a truss? How can you determine the forces at the joints and supports of a

More information

Equilibrium Equilibrium and Trusses Trusses

Equilibrium Equilibrium and Trusses Trusses Equilibrium and Trusses ENGR 221 February 17, 2003 Lecture Goals 6-4 Equilibrium in Three Dimensions 7-1 Introduction to Trusses 7-2Plane Trusses 7-3 Space Trusses 7-4 Frames and Machines Equilibrium Problem

More information

MEE224: Engineering Mechanics Lecture 4

MEE224: Engineering Mechanics Lecture 4 Lecture 4: Structural Analysis Part 1: Trusses So far we have only analysed forces and moments on a single rigid body, i.e. bars. Remember that a structure is a formed by and this lecture will investigate

More information

ME Statics. Structures. Chapter 4

ME Statics. Structures. Chapter 4 ME 108 - Statics Structures Chapter 4 Outline Applications Simple truss Method of joints Method of section Germany Tacoma Narrows Bridge http://video.google.com/videoplay?docid=-323172185412005564&q=bruce+lee&pl=true

More information

Calculating Truss Forces. Method of Joints

Calculating Truss Forces. Method of Joints Calculating Truss Forces Method of Joints Forces Compression body being squeezed Tension body being stretched Truss truss is composed of slender members joined together at their end points. They are usually

More information

Theory of structure I 2006/2013. Chapter one DETERMINACY & INDETERMINACY OF STRUCTURES

Theory of structure I 2006/2013. Chapter one DETERMINACY & INDETERMINACY OF STRUCTURES Chapter one DETERMINACY & INDETERMINACY OF STRUCTURES Introduction A structure refers to a system of connected parts used to support a load. Important examples related to civil engineering include buildings,

More information

Pin-Jointed Frame Structures (Frameworks)

Pin-Jointed Frame Structures (Frameworks) Pin-Jointed rame Structures (rameworks) 1 Pin Jointed rame Structures (rameworks) A pin-jointed frame is a structure constructed from a number of straight members connected together at their ends by frictionless

More information

Structural Analysis. Method of Joints. Method of Pins

Structural Analysis. Method of Joints. Method of Pins Structural nalysis / Method of Pins I m reading a book about an1gravity. It s impossible to put down. Pop Quiz What is today s date? 2 1 Trusses Trusses are common means of transferring loads from their

More information

three Point Equilibrium 1 and planar trusses ARCHITECTURAL STRUCTURES: FORM, BEHAVIOR, AND DESIGN DR. ANNE NICHOLS SUMMER 2014 lecture

three Point Equilibrium 1 and planar trusses ARCHITECTURAL STRUCTURES: FORM, BEHAVIOR, AND DESIGN DR. ANNE NICHOLS SUMMER 2014 lecture ARCHITECTURAL STRUCTURES: FORM, BEHAVIOR, AND DESIGN DR. ANNE NICHOLS SUMMER 2014 lecture three point equilibrium http:// nisee.berkeley.edu/godden and planar trusses Point Equilibrium 1 Equilibrium balanced

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

Chapter 6: Structural Analysis

Chapter 6: Structural Analysis Chapter 6: Structural Analysis APPLICATIONS Trusses are commonly used to support a roof. For a given truss geometry and load, how can we determine the forces in the truss members and select their sizes?

More information

CHAPTER 5 ANALYSIS OF STRUCTURES. Expected Outcome:

CHAPTER 5 ANALYSIS OF STRUCTURES. Expected Outcome: CHAPTER ANALYSIS O STRUCTURES Expected Outcome: Able to analyze the equilibrium of structures made of several connected parts, using the concept of the equilibrium of a particle or of a rigid body, in

More information

Supplement: Statically Indeterminate Trusses and Frames

Supplement: Statically Indeterminate Trusses and Frames : Statically Indeterminate Trusses and Frames Approximate Analysis - In this supplement, we consider an approximate method of solving statically indeterminate trusses and frames subjected to lateral loads

More information

PROBLEM 6.1 SOLUTION. Free body: Entire truss: (3.2 m) (48 kn)(7.2 m) = 0 = = = BC. 60 kn. Free body: Joint B: = kn T. = 144.

PROBLEM 6.1 SOLUTION. Free body: Entire truss: (3.2 m) (48 kn)(7.2 m) = 0 = = = BC. 60 kn. Free body: Joint B: = kn T. = 144. PROBLEM 6.1 Using the method of joints, determine the force in each member of the truss shown. State whether each member is in tension or compression. Free bod: Entire truss: Σ F = 0: B = 0 B = 0 Σ M =

More information

CHAPTER 2: EQUILIBRIUM OF RIGID BODIES

CHAPTER 2: EQUILIBRIUM OF RIGID BODIES For a rigid body to be in equilibrium, the net force as well as the net moment about any arbitrary point O must be zero Summation of all external forces. Equilibrium: Sum of moments of all external forces.

More information

ENGINEERING MECHANICS SOLUTIONS UNIT-I

ENGINEERING MECHANICS SOLUTIONS UNIT-I LONG QUESTIONS ENGINEERING MECHANICS SOLUTIONS UNIT-I 1. A roller shown in Figure 1 is mass 150 Kg. What force P is necessary to start the roller over the block A? =90+25 =115 = 90+25.377 = 115.377 = 360-(115+115.377)

More information

Stress Analysis Lecture 3 ME 276 Spring Dr./ Ahmed Mohamed Nagib Elmekawy

Stress Analysis Lecture 3 ME 276 Spring Dr./ Ahmed Mohamed Nagib Elmekawy Stress Analysis Lecture 3 ME 276 Spring 2017-2018 Dr./ Ahmed Mohamed Nagib Elmekawy Axial Stress 2 Beam under the action of two tensile forces 3 Beam under the action of two tensile forces 4 Shear Stress

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 10 The Force Method of Analysis: Trusses Instructional Objectives After reading this chapter the student will

More information

Chapter 6: Structural Analysis

Chapter 6: Structural Analysis Chapter 6: Structural Analysis Chapter Objectives To show how to determine the forces in the members of a truss using the method of joints and the method of sections. To analyze the forces acting on the

More information

Mechanical Design in Optical Engineering

Mechanical Design in Optical Engineering OPTI Buckling Buckling and Stability: As we learned in the previous lectures, structures may fail in a variety of ways, depending on the materials, load and support conditions. We had two primary concerns:

More information

To show how to determine the forces in the members of a truss using the method of joints and the method of sections.

To show how to determine the forces in the members of a truss using the method of joints and the method of sections. 5 Chapter Objectives To show how to determine the forces in the members of a truss using the method of joints and the method of sections. To analyze the forces acting on the members of frames and machines

More information

Continuing Education Course #207 What Every Engineer Should Know About Structures Part B Statics Applications

Continuing Education Course #207 What Every Engineer Should Know About Structures Part B Statics Applications 1 of 6 Continuing Education Course #207 What Every Engineer Should Know About Structures Part B Statics Applications 1. As a practical matter, determining design loads on structural members involves several

More information

Announcements. Trusses Method of Joints

Announcements. Trusses Method of Joints Announcements Mountain Dew is an herbal supplement Today s Objectives Define a simple truss Trusses Method of Joints Determine the forces in members of a simple truss Identify zero-force members Class

More information

The case where there is no net effect of the forces acting on a rigid body

The case where there is no net effect of the forces acting on a rigid body The case where there is no net effect of the forces acting on a rigid body Outline: Introduction and Definition of Equilibrium Equilibrium in Two-Dimensions Special cases Equilibrium in Three-Dimensions

More information

ENG1001 Engineering Design 1

ENG1001 Engineering Design 1 ENG1001 Engineering Design 1 Structure & Loads Determine forces that act on structures causing it to deform, bend, and stretch Forces push/pull on objects Structures are loaded by: > Dead loads permanent

More information

EQUILIBRIUM OF A RIGID BODY

EQUILIBRIUM OF A RIGID BODY EQUILIBRIUM OF A RIGID BODY Today s Objectives: Students will be able to a) Identify support reactions, and, b) Draw a free diagram. APPLICATIONS A 200 kg platform is suspended off an oil rig. How do we

More information

The centroid of an area is defined as the point at which (12-2) The distance from the centroid of a given area to a specified axis may be found by

The centroid of an area is defined as the point at which (12-2) The distance from the centroid of a given area to a specified axis may be found by Unit 12 Centroids Page 12-1 The centroid of an area is defined as the point at which (12-2) The distance from the centroid of a given area to a specified axis may be found by (12-5) For the area shown

More information

Lecture 20. ENGR-1100 Introduction to Engineering Analysis THE METHOD OF SECTIONS

Lecture 20. ENGR-1100 Introduction to Engineering Analysis THE METHOD OF SECTIONS ENGR-1100 Introduction to Engineering Analysis Lecture 20 THE METHOD OF SECTIONS Today s Objectives: Students will be able to determine: 1. Forces in truss members using the method of sections. In-Class

More information

ENGR-1100 Introduction to Engineering Analysis. Lecture 20

ENGR-1100 Introduction to Engineering Analysis. Lecture 20 ENGR-1100 Introduction to Engineering Analysis Lecture 20 Today s Objectives: THE METHOD OF SECTIONS Students will be able to determine: 1. Forces in truss members using the method of sections. In-Class

More information

Equilibrium of a Particle

Equilibrium of a Particle ME 108 - Statics Equilibrium of a Particle Chapter 3 Applications For a spool of given weight, what are the forces in cables AB and AC? Applications For a given weight of the lights, what are the forces

More information

Chapter 2 Basis for Indeterminate Structures

Chapter 2 Basis for Indeterminate Structures Chapter - Basis for the Analysis of Indeterminate Structures.1 Introduction... 3.1.1 Background... 3.1. Basis of Structural Analysis... 4. Small Displacements... 6..1 Introduction... 6.. Derivation...

More information

Statics Principles. The laws of motion describe the interaction of forces acting on a body. Newton s First Law of Motion (law of inertia):

Statics Principles. The laws of motion describe the interaction of forces acting on a body. Newton s First Law of Motion (law of inertia): Unit 2 Review Statics Statics Principles The laws of motion describe the interaction of forces acting on a body Newton s First Law of Motion (law of inertia): An object in a state of rest or uniform motion

More information

Statics Chapter II Fall 2018 Exercises Corresponding to Sections 2.1, 2.2, and 2.3

Statics Chapter II Fall 2018 Exercises Corresponding to Sections 2.1, 2.2, and 2.3 Statics Chapter II Fall 2018 Exercises Corresponding to Sections 2.1, 2.2, and 2.3 2 3 Determine the magnitude of the resultant force FR = F1 + F2 and its direction, measured counterclockwise from the

More information

ES230 STRENGTH OF MATERIALS

ES230 STRENGTH OF MATERIALS ES230 STRENGTH OF MATERIALS Exam 1 Study Guide. Exam 1: Wednesday, February 8 th, in-class Updated 2/5/17 Purpose of this Guide: To thoroughly prepare students for the exact types of problems that will

More information

ENGR-1100 Introduction to Engineering Analysis. Lecture 19

ENGR-1100 Introduction to Engineering Analysis. Lecture 19 ENGR-1100 Introduction to Engineering Analysis Lecture 19 SIMPLE TRUSSES, THE METHOD OF JOINTS, & ZERO-FORCE MEMBERS Today s Objectives: Students will be able to: In-Class Activities: a) Define a simple

More information

Truss Structures: The Direct Stiffness Method

Truss Structures: The Direct Stiffness Method . Truss Structures: The Companies, CHAPTER Truss Structures: The Direct Stiffness Method. INTRODUCTION The simple line elements discussed in Chapter introduced the concepts of nodes, nodal displacements,

More information

EQUATIONS OF EQUILIBRIUM & TWO- AND THREE-FORCE MEMEBERS

EQUATIONS OF EQUILIBRIUM & TWO- AND THREE-FORCE MEMEBERS EQUATIONS OF EQUILIBRIUM & TWO- AND THREE-FORCE MEMEBERS Today s Objectives: Students will be able to: a) Apply equations of equilibrium to solve for unknowns, and, b) Recognize two-force members. In-Class

More information

Simple Analysis for Complex Structures Trusses and SDO

Simple Analysis for Complex Structures Trusses and SDO J. Civil Eng. Architect. Res Vol. 1, No. 3, 2014, pp. 190-202 Received: June 30, 2014; Published: September 25, 2014 Journal of Civil Engineering and Architecture Research Simple Analysis for Complex Structures

More information

Newton s Third Law Newton s Third Law: For each action there is an action and opposite reaction F

Newton s Third Law Newton s Third Law: For each action there is an action and opposite reaction F FRAMES AND MACHINES Learning Objectives 1). To evaluate the unknown reactions at the supports and the interaction forces at the connection points of a rigid frame in equilibrium by solving the equations

More information

Level 7 Postgraduate Diploma in Engineering Computational mechanics using finite element method

Level 7 Postgraduate Diploma in Engineering Computational mechanics using finite element method 9210-203 Level 7 Postgraduate Diploma in Engineering Computational mechanics using finite element method You should have the following for this examination one answer book No additional data is attached

More information

Chapter 4 Deflection and Stiffness

Chapter 4 Deflection and Stiffness Chapter 4 Deflection and Stiffness Asst. Prof. Dr. Supakit Rooppakhun Chapter Outline Deflection and Stiffness 4-1 Spring Rates 4-2 Tension, Compression, and Torsion 4-3 Deflection Due to Bending 4-4 Beam

More information

P.E. Civil Exam Review:

P.E. Civil Exam Review: P.E. Civil Exam Review: Structural Analysis J.P. Mohsen Email: jpm@louisville.edu Structures Determinate Indeterminate STATICALLY DETERMINATE STATICALLY INDETERMINATE Stability and Determinacy of Trusses

More information

If the number of unknown reaction components are equal to the number of equations, the structure is known as statically determinate.

If the number of unknown reaction components are equal to the number of equations, the structure is known as statically determinate. 1 of 6 EQUILIBRIUM OF A RIGID BODY AND ANALYSIS OF ETRUCTURAS II 9.1 reactions in supports and joints of a two-dimensional structure and statically indeterminate reactions: Statically indeterminate structures

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

Engineering Mechanics: Statics STRUCTURAL ANALYSIS. by Dr. Ibrahim A. Assakkaf SPRING 2007 ENES 110 Statics

Engineering Mechanics: Statics STRUCTURAL ANALYSIS. by Dr. Ibrahim A. Assakkaf SPRING 2007 ENES 110 Statics CHAPTER Engineering Mechanics: Statics STRUCTURAL ANALYSIS College of Engineering Department of Mechanical Engineering Tenth Edition 6a by Dr. Ibrahim A. Assakkaf SPRING 2007 ENES 110 Statics Department

More information

EQUATIONS OF EQUILIBRIUM & TWO-AND THREE-FORCE MEMEBERS

EQUATIONS OF EQUILIBRIUM & TWO-AND THREE-FORCE MEMEBERS EQUATIONS OF EQUILIBRIUM & TWO-AND THREE-FORCE MEMEBERS Today s Objectives: Students will be able to: a) Apply equations of equilibrium to solve for unknowns, and, b) Recognize two-force members. READING

More information

three Equilibrium 1 and planar trusses ELEMENTS OF ARCHITECTURAL STRUCTURES: FORM, BEHAVIOR, AND DESIGN DR. ANNE NICHOLS SPRING 2015 lecture ARCH 614

three Equilibrium 1 and planar trusses ELEMENTS OF ARCHITECTURAL STRUCTURES: FORM, BEHAVIOR, AND DESIGN DR. ANNE NICHOLS SPRING 2015 lecture ARCH 614 ELEMENTS OF ARCHITECTURAL STRUCTURES: FORM, BEHAVIOR, AND DESIGN DR. ANNE NICHOLS SPRING 2015 lecture three equilibrium and planar trusses Equilibrium 1 Equilibrium balanced steady resultant of forces

More information

Engineering Mechanics: Statics in SI Units, 12e

Engineering Mechanics: Statics in SI Units, 12e Engineering Mechanics: Statics in SI Units, 12e 5 Equilibrium of a Rigid Body Chapter Objectives Develop the equations of equilibrium for a rigid body Concept of the free-body diagram for a rigid body

More information

7 STATICALLY DETERMINATE PLANE TRUSSES

7 STATICALLY DETERMINATE PLANE TRUSSES 7 STATICALLY DETERMINATE PLANE TRUSSES OBJECTIVES: This chapter starts with the definition of a truss and briefly explains various types of plane truss. The determinancy and stability of a truss also will

More information

2.0 Introduction. F i. [Eq. 2.1] M i. [Eq. 2.2]

2.0 Introduction. F i. [Eq. 2.1] M i. [Eq. 2.2] Chapter Statics.0 Introduction A Statics analysis is generally the first step in determining how an engineering system deforms under load, and how the system supports the load internally. For equilibrium,

More information

BOOK OF COURSE WORKS ON STRENGTH OF MATERIALS FOR THE 2 ND YEAR STUDENTS OF THE UACEG

BOOK OF COURSE WORKS ON STRENGTH OF MATERIALS FOR THE 2 ND YEAR STUDENTS OF THE UACEG BOOK OF COURSE WORKS ON STRENGTH OF MATERIALS FOR THE ND YEAR STUDENTS OF THE UACEG Assoc.Prof. Dr. Svetlana Lilkova-Markova, Chief. Assist. Prof. Dimitar Lolov Sofia, 011 STRENGTH OF MATERIALS GENERAL

More information

The analysis of trusses Mehrdad Negahban (1999)

The analysis of trusses Mehrdad Negahban (1999) The analysis of trusses Mehrdad Negahban (1999) A truss: A truss is a structure made of two force members all pin connected to each other. The method of joints: This method uses the free-body-diagram of

More information

Please review the following statement: I certify that I have not given unauthorized aid nor have I received aid in the completion of this exam.

Please review the following statement: I certify that I have not given unauthorized aid nor have I received aid in the completion of this exam. Please review the following statement: I certify that I have not given unauthorized aid nor have I received aid in the completion of this exam. Signature: INSTRUCTIONS Begin each problem in the space provided

More information

Chapter 11. Displacement Method of Analysis Slope Deflection Method

Chapter 11. Displacement Method of Analysis Slope Deflection Method Chapter 11 Displacement ethod of Analysis Slope Deflection ethod Displacement ethod of Analysis Two main methods of analyzing indeterminate structure Force method The method of consistent deformations

More information

Free Body Diagram: Solution: The maximum load which can be safely supported by EACH of the support members is: ANS: A =0.217 in 2

Free Body Diagram: Solution: The maximum load which can be safely supported by EACH of the support members is: ANS: A =0.217 in 2 Problem 10.9 The angle β of the system in Problem 10.8 is 60. The bars are made of a material that will safely support a tensile normal stress of 8 ksi. Based on this criterion, if you want to design the

More information

Method of Sections for Truss Analysis

Method of Sections for Truss Analysis RH 331 Note Set 5.2 F2013abn Method of Sections for Truss nalysis Notation: () = shorthand for compression = name for load or axial force vector (T) = shorthand for tension Joint onfigurations (special

More information

MECHANICS OF MATERIALS

MECHANICS OF MATERIALS CHATR Stress MCHANICS OF MATRIALS and Strain Axial Loading Stress & Strain: Axial Loading Suitability of a structure or machine may depend on the deformations in the structure as well as the stresses induced

More information

Indeterminate Analysis Force Method 1

Indeterminate Analysis Force Method 1 Indeterminate Analysis Force Method 1 The force (flexibility) method expresses the relationships between displacements and forces that exist in a structure. Primary objective of the force method is to

More information

Lecture 0. Statics. Module 1. Overview of Mechanics Analysis. IDeALab. Prof. Y.Y.KIM. Solid Mechanics

Lecture 0. Statics. Module 1. Overview of Mechanics Analysis. IDeALab. Prof. Y.Y.KIM. Solid Mechanics Lecture 0. Statics Module 1. Overview of Mechanics Analysis Overview of Mechanics Analysis Procedure of Solving Mechanics Problems Objective : Estimate the force required in the flexor muscle Crandall,

More information

Discontinuous Distributions in Mechanics of Materials

Discontinuous Distributions in Mechanics of Materials Discontinuous Distributions in Mechanics of Materials J.E. Akin, Rice University 1. Introduction The study of the mechanics of materials continues to change slowly. The student needs to learn about software

More information

READING QUIZ. 2. When using the method of joints, typically equations of equilibrium are applied at every joint. A) Two B) Three C) Four D) Six

READING QUIZ. 2. When using the method of joints, typically equations of equilibrium are applied at every joint. A) Two B) Three C) Four D) Six READING QUIZ 1. One of the assumptions used when analyzing a simple truss is that the members are joined together by. A) Welding B) Bolting C) Riveting D) Smooth pins E) Super glue 2. When using the method

More information

There are three main types of structure - mass, framed and shells.

There are three main types of structure - mass, framed and shells. STRUCTURES There are three main types of structure - mass, framed and shells. Mass structures perform due to their own weight. An example would be a dam. Frame structures resist loads due to the arrangement

More information

FLEXIBILITY METHOD FOR INDETERMINATE FRAMES

FLEXIBILITY METHOD FOR INDETERMINATE FRAMES UNIT - I FLEXIBILITY METHOD FOR INDETERMINATE FRAMES 1. What is meant by indeterminate structures? Structures that do not satisfy the conditions of equilibrium are called indeterminate structure. These

More information

Truss Analysis Method of Joints. Steven Vukazich San Jose State University

Truss Analysis Method of Joints. Steven Vukazich San Jose State University Truss nalysis Method of Joints Steven Vukazich San Jose State University General Procedure for the nalysis of Simple Trusses using the Method of Joints 1. raw a Free Body iagram (FB) of the entire truss

More information

The University of Melbourne Engineering Mechanics

The University of Melbourne Engineering Mechanics The University of Melbourne 436-291 Engineering Mechanics Tutorial Four Poisson s Ratio and Axial Loading Part A (Introductory) 1. (Problem 9-22 from Hibbeler - Statics and Mechanics of Materials) A short

More information

Vector Mechanics: Statics

Vector Mechanics: Statics PDHOnline Course G492 (4 PDH) Vector Mechanics: Statics Mark A. Strain, P.E. 2014 PDH Online PDH Center 5272 Meadow Estates Drive Fairfax, VA 22030-6658 Phone & Fax: 703-988-0088 www.pdhonline.org www.pdhcenter.com

More information

Chapter 7: Bending and Shear in Simple Beams

Chapter 7: Bending and Shear in Simple Beams Chapter 7: Bending and Shear in Simple Beams Introduction A beam is a long, slender structural member that resists loads that are generally applied transverse (perpendicular) to its longitudinal axis.

More information

Engineering Mechanics: Statics in SI Units, 12e

Engineering Mechanics: Statics in SI Units, 12e Engineering Mechanics: Statics in SI Units, 12e 3 Equilibrium of a Particle Chapter Objectives To introduce the concept of the free-body diagram for a particle To show how to solve particle equilibrium

More information

SIMPLE TRUSSES, THE METHOD OF JOINTS, & ZERO-FORCE MEMBERS

SIMPLE TRUSSES, THE METHOD OF JOINTS, & ZERO-FORCE MEMBERS SIMPLE TRUSSES, THE METHOD OF JOINTS, & ZERO-FORCE MEMBERS Today s Objectives: Students will be able to: a) Define a simple truss. b) Determine the forces in members of a simple truss. c) Identify zero-force

More information

[7] Torsion. [7.1] Torsion. [7.2] Statically Indeterminate Torsion. [7] Torsion Page 1 of 21

[7] Torsion. [7.1] Torsion. [7.2] Statically Indeterminate Torsion. [7] Torsion Page 1 of 21 [7] Torsion Page 1 of 21 [7] Torsion [7.1] Torsion [7.2] Statically Indeterminate Torsion [7] Torsion Page 2 of 21 [7.1] Torsion SHEAR STRAIN DUE TO TORSION 1) A shaft with a circular cross section is

More information

Statics: Lecture Notes for Sections

Statics: Lecture Notes for Sections Chapter 6: Structural Analysis Today s Objectives: Students will be able to: a) Define a simple truss. b) Determine the forces in members of a simple truss. c) Identify zero-force members. READING QUIZ

More information

Pinned Truss Freebody Diagram (FBD) Blog Post pdf

Pinned Truss Freebody Diagram (FBD) Blog Post pdf Pinned Truss Freebody Diagram (FBD) Blog Post pdf Author: Surya Batchu Senior Stress Engineer Founder, STRESS EBOOK LLC. http://www.stressebook.com 1 P a g e Freebody Diagram (FBD) of a Pinned Truss In

More information

3. BEAMS: STRAIN, STRESS, DEFLECTIONS

3. BEAMS: STRAIN, STRESS, DEFLECTIONS 3. BEAMS: STRAIN, STRESS, DEFLECTIONS The beam, or flexural member, is frequently encountered in structures and machines, and its elementary stress analysis constitutes one of the more interesting facets

More information

Torsion/Axial Illustration: 1 (3/30/00)

Torsion/Axial Illustration: 1 (3/30/00) Torsion/Axial Illustration: 1 (3/30/00) Table of Contents Intro / General Strategy Axial: Different Materia The Displacement Method 1 2 Calculate the Stresses General Strategy The same structure is loaded

More information

ENGINEERING MECHANICS STATIC

ENGINEERING MECHANICS STATIC Trusses Simple trusses The basic element of a truss is the triangle, three bars joined by pins at their ends, fig. a below, constitutes a rigid frame. The term rigid is used to mean noncollapsible and

More information

FRAMES AND MACHINES Learning Objectives 1). To evaluate the unknown reactions at the supports and the interaction forces at the connection points of a

FRAMES AND MACHINES Learning Objectives 1). To evaluate the unknown reactions at the supports and the interaction forces at the connection points of a FRAMES AND MACHINES Learning Objectives 1). To evaluate the unknown reactions at the supports and the interaction forces at the connection points of a rigid frame in equilibrium by solving the equations

More information

[5] Stress and Strain

[5] Stress and Strain [5] Stress and Strain Page 1 of 34 [5] Stress and Strain [5.1] Internal Stress of Solids [5.2] Design of Simple Connections (will not be covered in class) [5.3] Deformation and Strain [5.4] Hooke s Law

More information

Methods of Analysis. Force or Flexibility Method

Methods of Analysis. Force or Flexibility Method INTRODUCTION: The structural analysis is a mathematical process by which the response of a structure to specified loads is determined. This response is measured by determining the internal forces or stresses

More information

Engineering Mechanics: Statics in SI Units, 12e

Engineering Mechanics: Statics in SI Units, 12e Engineering Mechanics: Statics in SI Units, 12e 3 Equilibrium of a Particle 1 Chapter Objectives Concept of the free-body diagram for a particle Solve particle equilibrium problems using the equations

More information

ENGR-1100 Introduction to Engineering Analysis. Lecture 13

ENGR-1100 Introduction to Engineering Analysis. Lecture 13 ENGR-1100 Introduction to Engineering Analysis Lecture 13 EQUILIBRIUM OF A RIGID BODY & FREE-BODY DIAGRAMS Today s Objectives: Students will be able to: a) Identify support reactions, and, b) Draw a free-body

More information

March 24, Chapter 4. Deflection and Stiffness. Dr. Mohammad Suliman Abuhaiba, PE

March 24, Chapter 4. Deflection and Stiffness. Dr. Mohammad Suliman Abuhaiba, PE Chapter 4 Deflection and Stiffness 1 2 Chapter Outline Spring Rates Tension, Compression, and Torsion Deflection Due to Bending Beam Deflection Methods Beam Deflections by Superposition Strain Energy Castigliano

More information

COLUMNS: BUCKLING (DIFFERENT ENDS)

COLUMNS: BUCKLING (DIFFERENT ENDS) COLUMNS: BUCKLING (DIFFERENT ENDS) Buckling of Long Straight Columns Example 4 Slide No. 1 A simple pin-connected truss is loaded and supported as shown in Fig. 1. All members of the truss are WT10 43

More information

Linear Static Analysis of a Simply-Supported Truss (SI)

Linear Static Analysis of a Simply-Supported Truss (SI) APPENDIX C Linear Static Analysis of a Simply-Supported Truss (SI) Objectives: Create a MSC.Nastran model comprised of CROD elements. Prepare a MSC.Nastran input file for a Linear Static analysis. Visualize

More information

Mechanics of Materials

Mechanics of Materials Mechanics of Materials 2. Introduction Dr. Rami Zakaria References: 1. Engineering Mechanics: Statics, R.C. Hibbeler, 12 th ed, Pearson 2. Mechanics of Materials: R.C. Hibbeler, 9 th ed, Pearson 3. Mechanics

More information

Course Overview. Statics (Freshman Fall) Dynamics: x(t)= f(f(t)) displacement as a function of time and applied force

Course Overview. Statics (Freshman Fall) Dynamics: x(t)= f(f(t)) displacement as a function of time and applied force Course Overview Statics (Freshman Fall) Engineering Mechanics Dynamics (Freshman Spring) Strength of Materials (Sophomore Fall) Mechanism Kinematics and Dynamics (Sophomore Spring ) Aircraft structures

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 11 The Force Method of Analysis: Frames Instructional Objectives After reading this chapter the student will be

More information

PURE BENDING. If a simply supported beam carries two point loads of 10 kn as shown in the following figure, pure bending occurs at segment BC.

PURE BENDING. If a simply supported beam carries two point loads of 10 kn as shown in the following figure, pure bending occurs at segment BC. BENDING STRESS The effect of a bending moment applied to a cross-section of a beam is to induce a state of stress across that section. These stresses are known as bending stresses and they act normally

More information

STATICS VECTOR MECHANICS FOR ENGINEERS: Eleventh Edition CHAPTER. Ferdinand P. Beer E. Russell Johnston, Jr. David F. Mazurek

STATICS VECTOR MECHANICS FOR ENGINEERS: Eleventh Edition CHAPTER. Ferdinand P. Beer E. Russell Johnston, Jr. David F. Mazurek Eleventh E 6 Analysis CHAPTER VECTOR MECHANICS OR ENGINEERS: STATICS erdinand P. Beer E. Russell Johnston, Jr. David. Mazurek of Structures Contents Application Introduction Definition of a Truss Simple

More information

Engineering Mechanics Department of Mechanical Engineering Dr. G. Saravana Kumar Indian Institute of Technology, Guwahati

Engineering Mechanics Department of Mechanical Engineering Dr. G. Saravana Kumar Indian Institute of Technology, Guwahati Engineering Mechanics Department of Mechanical Engineering Dr. G. Saravana Kumar Indian Institute of Technology, Guwahati Module 3 Lecture 6 Internal Forces Today, we will see analysis of structures part

More information

Mechanical Properties of Materials

Mechanical Properties of Materials Mechanical Properties of Materials Strains Material Model Stresses Learning objectives Understand the qualitative and quantitative description of mechanical properties of materials. Learn the logic of

More information

6/6/2008. Qualitative Influence Lines for Statically Indeterminate Structures: Muller-Breslau s Principle

6/6/2008. Qualitative Influence Lines for Statically Indeterminate Structures: Muller-Breslau s Principle Qualitative Influence Lines for Statically Indeterminate Structures: Muller-Breslau s Principle The influence line for a force (or moment) response function is given by the deflected shape of the released

More information