Lecture 27 Introduction to finite elements methods

Size: px
Start display at page:

Download "Lecture 27 Introduction to finite elements methods"

Transcription

1 Fall, 2017 ME 323 Mechanics of Materials Lecture 27 Introduction to finite elements methods Reading assignment: News: Instructor: Prof. Marcial Gonzalez Last modified: 10/24/17 7:02:00 PM

2 Finite element methods - Finite element analysis (FEA) Every structure studied in ME323 and much more 2

3 Finite element methods - Finite element analysis (FEA) - It is an energy method that can handle any geometry and any three-dimensional states of stress. - It is not limited to elastic materials and small deformations. - FEA is a skill of high-demand in the job market and it is always considered a plus! 3

4 - Review of axial deformations and rods + Elongation of the rod + Equivalent stiffness Good approximation when 4

5 - Review of axial deformations and rods + Elastic strain energy + Stiffness matrix 5

6 - Review of axial deformations and rods + Three nodes + Three degrees of freedom + Two elements + Each element has two nodes and two degrees of freedom 6

7 - Review of axial deformations and rods + Three nodes + Three degrees of freedom + Two elements + Each element has two nodes and two degrees of freedom 7

8 - Review of axial deformations and rods + (N+1) nodes + (N) elements Strain energy 8

9 - Review of axial deformations and rods + (N+1) nodes + (N) elements Global stiffness matrix (symmetric matrix) (combination of elemental stiffness matrices) 9

10 - We obtain the equilibrium solution using an energy principle Principle of minimum potential energy For a given set of admissible displacement fields for a conservative system, an equilibrium state of the system will correspond to a state for which the total potential energy is stationary. + An admissible displacement field for a rod is one that satisfies all of the displacement boundary conditions of the problem. + The total potential energy of the system is equal to the sum of the potential of the applied external forces and the strain energy in the rod. + Stationarity of the potential energy correspond to its minimization with respect to the displacement field. for each node in the mesh 10

11 - We obtain the equilibrium solution using an energy principle Principle of minimum potential energy For a given set of admissible displacement fields for a conservative system, an equilibrium state of the system will correspond to a state for which the total potential energy is stationary. + The total potential energy of the system is equal to the sum of the potential of the applied external forces and the strain energy in the rod. 11

12 - We obtain the equilibrium solution using an energy principle Principle of minimum potential energy For a given set of admissible displacement fields for a conservative system, an equilibrium state of the system will correspond to a state for which the total potential energy is stationary. + Stationarity of the potential energy correspond to its minimization with respect to the displacement field. for each node in the mesh A linear system of N+1 equations,, 12

13 - We obtain the equilibrium solution using an energy principle Principle of minimum potential energy For a given set of admissible displacement fields for a conservative system, an equilibrium state of the system will correspond to a state for which the total potential energy is stationary. + An admissible displacement field for a rod is one that satisfies all of the displacement boundary conditions of the problem. Some displacements in are going to be zero. We will enforce these conditions after the minimization of the potential energy. (similar to Castigliano s second therorem) 13

14 - We obtain the equilibrium solution using an energy principle Principle of minimum potential energy For a given set of admissible displacement fields for a conservative system, an equilibrium state of the system will correspond to a state for which the total potential energy is stationary. + Stationarity of the potential energy correspond to its minimization with respect to the displacement field. for each node in the mesh In general: recall for each node in the mesh, is equivalent to: (a linear system of N+1 equations) 14

15 - Example 54: Number of nodes: 4 Number of elements: 3 Boundary conditions: Stiffness of each element: 15

16 - Example 54, solved in 5 steps + Step #1: Identify the degrees of freedom Number of nodes: 4 Number of elements: 3 + Step #2: Build the global stiffness matrix 16

17 - Example 54, solved in 5 steps + Step #3: Enforce boundary conditions Number of nodes: 4 Number of elements: 3 + Step #4: Solve the reduced system of linear equations 17

18 - Example 54, solved in 5 steps + Step #5: Recover the reaction at the supports 18

19 - Example 55, using MATLAB: clear % set number of elements N=3; %define elemental properties EA=[1/4;1;9/4]; L=[1;1;1]; %set up forcing vector F=[0;2;1;0]; %define boundary conditions BC=[1;0;0;1]; %set up global stiffness matrix k=ea./l; K=zeros(N+1,N+1); for ii=1:n K(ii,ii)=K(ii,ii)+k(ii); K(ii+1,ii)=K(ii+1,ii)-k(ii); K(ii,ii+1)=K(ii,ii+1)-k(ii); K(ii+1,ii+1)=K(ii+1,ii+1)+k(ii); end %enforce BC's on [K] and {F} K_reduced = K; F_reduced = F; for jj=n+1:-1:1 if BC(jj)==1 K_reduced(jj,:)=[]; K_reduced(:,jj)=[]; F_reduced(jj)=[]; end end %solve reduced system of equations u_reduced=inv(k_reduced)*f_reduced; %determine reaction at supports r=1; for jj=1:n+1 if BC(jj)==1 nodal_u(jj,1) = 0; else nodal_u(jj,1) = u_reduced(r); r=r+1; end end disp('nodal displacement'); disp(nodal_u'); disp('nodal force'); disp((k*nodal_u)');

20 - Example 55, using MATLAB: clear % set number of elements N=3; %define elemental properties EA=[1/4;1;9/4]; L=[1;1;1]; %set up forcing vector F=[0;2;1;0]; %define boundary conditions BC=[1;0;0;1]; Output: Nodal displacement Nodal force

21 - Can we use the same strategy for any other geometry? Yes! This is called a discretization of the object into elements. 21

22 Finite element methods Three-dimensional elements - Can we use the same strategy for any other geometry? Yes! This is called a discretization of the object into elements. + 8 nodes per element + 3 degrees of freedom per node + 24 degrees of freedom per element 22

23 23

24 Any questions? 24

Lecture 28 Introduction to finite elements methods

Lecture 28 Introduction to finite elements methods Fall, 2017 ME 323 Mechanics of Materials Lecture 28 Introduction to finite elements methods Reading assignment: News: Instructor: Prof. Marcial Gonzalez Last modified: 10/27/17 10:56:52 AM Some announcements

More information

Stress analysis of a stepped bar

Stress analysis of a stepped bar Stress analysis of a stepped bar Problem Find the stresses induced in the axially loaded stepped bar shown in Figure. The bar has cross-sectional areas of A ) and A ) over the lengths l ) and l ), respectively.

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

Finite Element Analysis Prof. Dr. B. N. Rao Department of Civil Engineering Indian Institute of Technology, Madras. Lecture - 06

Finite Element Analysis Prof. Dr. B. N. Rao Department of Civil Engineering Indian Institute of Technology, Madras. Lecture - 06 Finite Element Analysis Prof. Dr. B. N. Rao Department of Civil Engineering Indian Institute of Technology, Madras Lecture - 06 In the last lecture, we have seen a boundary value problem, using the formal

More information

Lecture 12: Finite Elements

Lecture 12: Finite Elements Materials Science & Metallurgy Part III Course M6 Computation of Phase Diagrams H. K. D. H. Bhadeshia Lecture 2: Finite Elements In finite element analysis, functions of continuous quantities such as temperature

More information

Finite Element Method in Geotechnical Engineering

Finite Element Method in Geotechnical Engineering Finite Element Method in Geotechnical Engineering Short Course on + Dynamics Boulder, Colorado January 5-8, 2004 Stein Sture Professor of Civil Engineering University of Colorado at Boulder Contents Steps

More information

Lecture 2: Finite Elements

Lecture 2: Finite Elements Materials Science & Metallurgy Master of Philosophy, Materials Modelling, Course MP7, Finite Element Analysis, H. K. D. H. Bhadeshia Lecture 2: Finite Elements In finite element analysis, functions of

More information

Structural Analysis of Truss Structures using Stiffness Matrix. Dr. Nasrellah Hassan Ahmed

Structural Analysis of Truss Structures using Stiffness Matrix. Dr. Nasrellah Hassan Ahmed Structural Analysis of Truss Structures using Stiffness Matrix Dr. Nasrellah Hassan Ahmed FUNDAMENTAL RELATIONSHIPS FOR STRUCTURAL ANALYSIS In general, there are three types of relationships: Equilibrium

More information

Finite Element Analysis Prof. Dr. B. N. Rao Department of Civil Engineering Indian Institute of Technology, Madras. Module - 01 Lecture - 13

Finite Element Analysis Prof. Dr. B. N. Rao Department of Civil Engineering Indian Institute of Technology, Madras. Module - 01 Lecture - 13 Finite Element Analysis Prof. Dr. B. N. Rao Department of Civil Engineering Indian Institute of Technology, Madras (Refer Slide Time: 00:25) Module - 01 Lecture - 13 In the last class, we have seen how

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

4 Finite Element Method for Trusses

4 Finite Element Method for Trusses 4 Finite Element Method for Trusses To solve the system of linear equations that arises in IPM, it is necessary to assemble the geometric matrix B a. For the sake of simplicity, the applied force vector

More information

Lecture notes Models of Mechanics

Lecture notes Models of Mechanics Lecture notes Models of Mechanics Anders Klarbring Division of Mechanics, Linköping University, Sweden Lecture 7: Small deformation theories Klarbring (Mechanics, LiU) Lecture notes Linköping 2012 1 /

More information

Finite Element Method-Part II Isoparametric FE Formulation and some numerical examples Lecture 29 Smart and Micro Systems

Finite Element Method-Part II Isoparametric FE Formulation and some numerical examples Lecture 29 Smart and Micro Systems Finite Element Method-Part II Isoparametric FE Formulation and some numerical examples Lecture 29 Smart and Micro Systems Introduction Till now we dealt only with finite elements having straight edges.

More information

MECh300H Introduction to Finite Element Methods. Finite Element Analysis (F.E.A.) of 1-D Problems

MECh300H Introduction to Finite Element Methods. Finite Element Analysis (F.E.A.) of 1-D Problems MECh300H Introduction to Finite Element Methods Finite Element Analysis (F.E.A.) of -D Problems Historical Background Hrenikoff, 94 frame work method Courant, 943 piecewise polynomial interpolation Turner,

More information

Finite Element Analysis Prof. Dr. B. N. Rao Department of Civil Engineering Indian Institute of Technology, Madras. Module - 01 Lecture - 11

Finite Element Analysis Prof. Dr. B. N. Rao Department of Civil Engineering Indian Institute of Technology, Madras. Module - 01 Lecture - 11 Finite Element Analysis Prof. Dr. B. N. Rao Department of Civil Engineering Indian Institute of Technology, Madras Module - 01 Lecture - 11 Last class, what we did is, we looked at a method called superposition

More information

ME Final Exam. PROBLEM NO. 4 Part A (2 points max.) M (x) y. z (neutral axis) beam cross-sec+on. 20 kip ft. 0.2 ft. 10 ft. 0.1 ft.

ME Final Exam. PROBLEM NO. 4 Part A (2 points max.) M (x) y. z (neutral axis) beam cross-sec+on. 20 kip ft. 0.2 ft. 10 ft. 0.1 ft. ME 323 - Final Exam Name December 15, 2015 Instructor (circle) PROEM NO. 4 Part A (2 points max.) Krousgrill 11:30AM-12:20PM Ghosh 2:30-3:20PM Gonzalez 12:30-1:20PM Zhao 4:30-5:20PM M (x) y 20 kip ft 0.2

More information

Lecture 15: Revisiting bars and beams.

Lecture 15: Revisiting bars and beams. 3.10 Potential Energy Approach to Derive Bar Element Equations. We place assumptions on the stresses developed inside the bar. The spatial stress and strain matrices become very sparse. We add (ad-hoc)

More information

Institute of Structural Engineering Page 1. Method of Finite Elements I. Chapter 2. The Direct Stiffness Method. Method of Finite Elements I

Institute of Structural Engineering Page 1. Method of Finite Elements I. Chapter 2. The Direct Stiffness Method. Method of Finite Elements I Institute of Structural Engineering Page 1 Chapter 2 The Direct Stiffness Method Institute of Structural Engineering Page 2 Direct Stiffness Method (DSM) Computational method for structural analysis Matrix

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

Module 3 : Equilibrium of rods and plates Lecture 15 : Torsion of rods. The Lecture Contains: Torsion of Rods. Torsional Energy

Module 3 : Equilibrium of rods and plates Lecture 15 : Torsion of rods. The Lecture Contains: Torsion of Rods. Torsional Energy The Lecture Contains: Torsion of Rods Torsional Energy This lecture is adopted from the following book 1. Theory of Elasticity, 3 rd edition by Landau and Lifshitz. Course of Theoretical Physics, vol-7

More information

Institute of Structural Engineering Page 1. Method of Finite Elements I. Chapter 2. The Direct Stiffness Method. Method of Finite Elements I

Institute of Structural Engineering Page 1. Method of Finite Elements I. Chapter 2. The Direct Stiffness Method. Method of Finite Elements I Institute of Structural Engineering Page 1 Chapter 2 The Direct Stiffness Method Institute of Structural Engineering Page 2 Direct Stiffness Method (DSM) Computational method for structural analysis Matrix

More information

Advanced Structural Analysis Prof. Devdas Menon Department of Civil Engineering Indian Institute of Technology, Madras

Advanced Structural Analysis Prof. Devdas Menon Department of Civil Engineering Indian Institute of Technology, Madras Advanced Structural Analysis Prof. Devdas Menon Department of Civil Engineering Indian Institute of Technology, Madras Module - 6.2 Lecture - 34 Matrix Analysis of Plane and Space Frames Good morning.

More information

Formulation of the displacement-based Finite Element Method and General Convergence Results

Formulation of the displacement-based Finite Element Method and General Convergence Results Formulation of the displacement-based Finite Element Method and General Convergence Results z Basics of Elasticity Theory strain e: measure of relative distortions u r r' y for small displacements : x

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

CRITERIA FOR SELECTION OF FEM MODELS.

CRITERIA FOR SELECTION OF FEM MODELS. CRITERIA FOR SELECTION OF FEM MODELS. Prof. P. C.Vasani,Applied Mechanics Department, L. D. College of Engineering,Ahmedabad- 380015 Ph.(079) 7486320 [R] E-mail:pcv-im@eth.net 1. Criteria for Convergence.

More information

December 10, PROBLEM NO points max.

December 10, PROBLEM NO points max. PROBLEM NO. 1 25 points max. PROBLEM NO. 2 25 points max. B 3A A C D A H k P L 2L Given: Consider the structure above that is made up of rod segments BC and DH, a spring of stiffness k and rigid connectors

More information

Review of Strain Energy Methods and Introduction to Stiffness Matrix Methods of Structural Analysis

Review of Strain Energy Methods and Introduction to Stiffness Matrix Methods of Structural Analysis uke University epartment of Civil and Environmental Engineering CEE 42L. Matrix Structural Analysis Henri P. Gavin Fall, 22 Review of Strain Energy Methods and Introduction to Stiffness Matrix Methods

More information

Chapter 3 Variational Formulation & the Galerkin Method

Chapter 3 Variational Formulation & the Galerkin Method Institute of Structural Engineering Page 1 Chapter 3 Variational Formulation & the Galerkin Method Institute of Structural Engineering Page 2 Today s Lecture Contents: Introduction Differential formulation

More information

Code No: RT41033 R13 Set No. 1 IV B.Tech I Semester Regular Examinations, November - 2016 FINITE ELEMENT METHODS (Common to Mechanical Engineering, Aeronautical Engineering and Automobile Engineering)

More information

FEA CODE WITH MATLAB. Finite Element Analysis of an Arch ME 5657 FINITE ELEMENT METHOD. Submitted by: ALPAY BURAK DEMIRYUREK

FEA CODE WITH MATLAB. Finite Element Analysis of an Arch ME 5657 FINITE ELEMENT METHOD. Submitted by: ALPAY BURAK DEMIRYUREK FEA CODE WITH MATAB Finite Element Analysis of an Arch ME 5657 FINITE EEMENT METHOD Submitted by: APAY BURAK DEMIRYUREK This report summarizes the finite element analysis of an arch-beam with using matlab.

More information

Post Graduate Diploma in Mechanical Engineering Computational mechanics using finite element method

Post Graduate Diploma in Mechanical Engineering Computational mechanics using finite element method 9210-220 Post Graduate Diploma in Mechanical Engineering Computational mechanics using finite element method You should have the following for this examination one answer book scientific calculator No

More information

INTRODUCTION TO STRAIN

INTRODUCTION TO STRAIN SIMPLE STRAIN INTRODUCTION TO STRAIN In general terms, Strain is a geometric quantity that measures the deformation of a body. There are two types of strain: normal strain: characterizes dimensional changes,

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

Mathematics FINITE ELEMENT ANALYSIS AS COMPUTATION. What the textbooks don't teach you about finite element analysis. Chapter 3

Mathematics FINITE ELEMENT ANALYSIS AS COMPUTATION. What the textbooks don't teach you about finite element analysis. Chapter 3 Mathematics FINITE ELEMENT ANALYSIS AS COMPUTATION What the textbooks don't teach you about finite element analysis Chapter 3 Completeness and continuity: How to choose shape functions? Gangan Prathap

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

A two-dimensional FE truss program

A two-dimensional FE truss program A two-dimensional FE truss program 4M020: Design Tools Eindhoven University of Technology Introduction The Matlab program fem2d allows to model and analyze two-dimensional truss structures, where trusses

More information

2 marks Questions and Answers

2 marks Questions and Answers 1. Define the term strain energy. A: Strain Energy of the elastic body is defined as the internal work done by the external load in deforming or straining the body. 2. Define the terms: Resilience and

More information

Name (Print) ME Mechanics of Materials Exam # 1 Date: October 5, 2016 Time: 8:00 10:00 PM

Name (Print) ME Mechanics of Materials Exam # 1 Date: October 5, 2016 Time: 8:00 10:00 PM Name (Print) (Last) (First) Instructions: ME 323 - Mechanics of Materials Exam # 1 Date: October 5, 2016 Time: 8:00 10:00 PM Circle your lecturer s name and your class meeting time. Gonzalez Krousgrill

More information

Preprocessor Geometry Properties )Nodes, Elements(, Material Properties Boundary Conditions(displacements, Forces )

Preprocessor Geometry Properties )Nodes, Elements(, Material Properties Boundary Conditions(displacements, Forces ) در برنامه يك تدوين براي بعدي دو يك سازه محيط MATLAB Preprocessor Geometry Properties )Nodes, Elements(, Material Properties Boundary Conditions(displacements, Forces ) Definition of Stiffness Matrices

More information

Chapter 5 Structural Elements: The truss & beam elements

Chapter 5 Structural Elements: The truss & beam elements Institute of Structural Engineering Page 1 Chapter 5 Structural Elements: The truss & beam elements Institute of Structural Engineering Page 2 Chapter Goals Learn how to formulate the Finite Element Equations

More information

Advanced Vibrations. Distributed-Parameter Systems: Approximate Methods Lecture 20. By: H. Ahmadian

Advanced Vibrations. Distributed-Parameter Systems: Approximate Methods Lecture 20. By: H. Ahmadian Advanced Vibrations Distributed-Parameter Systems: Approximate Methods Lecture 20 By: H. Ahmadian ahmadian@iust.ac.ir Distributed-Parameter Systems: Approximate Methods Rayleigh's Principle The Rayleigh-Ritz

More information

Stiffness Matrices, Spring and Bar Elements

Stiffness Matrices, Spring and Bar Elements CHAPTER Stiffness Matrices, Spring and Bar Elements. INTRODUCTION The primary characteristics of a finite element are embodied in the element stiffness matrix. For a structural finite element, the stiffness

More information

Multi-Point Constraints

Multi-Point Constraints Multi-Point Constraints Multi-Point Constraints Multi-Point Constraints Single point constraint examples Multi-Point constraint examples linear, homogeneous linear, non-homogeneous linear, homogeneous

More information

Solution Manual A First Course in the Finite Element Method 5th Edition Logan

Solution Manual A First Course in the Finite Element Method 5th Edition Logan Solution Manual A First Course in the Finite Element Method 5th Edition Logan Instant download and all chapters Solution Manual A First Course in the Finite Element Method 5th Edition Logan https://testbandata.com/download/solution-manual-first-course-finite-elementmethod-5th-edition-logan/

More information

ENGN2340 Final Project: Implementation of a Euler-Bernuolli Beam Element Michael Monn

ENGN2340 Final Project: Implementation of a Euler-Bernuolli Beam Element Michael Monn ENGN234 Final Project: Implementation of a Euler-Bernuolli Beam Element Michael Monn 12/11/13 Problem Definition and Shape Functions Although there exist many analytical solutions to the Euler-Bernuolli

More information

Section 1: Review of Elasticity

Section 1: Review of Elasticity Finite Elements in Elasticit Section : Review of Elasticit Stress & Strain 2 Constitutive Theor 3 Energ Methods Section : Stress and Strain Stress at a point Q : F = lim A 0 A F = lim A 0 A F = lim A 0

More information

The Finite Element Method for the Analysis of Non-Linear and Dynamic Systems. Prof. Dr. Eleni Chatzi Lecture 1-20 September, 2017

The Finite Element Method for the Analysis of Non-Linear and Dynamic Systems. Prof. Dr. Eleni Chatzi Lecture 1-20 September, 2017 The Finite Element Method for the Analysis of Non-Linear and Dynamic Systems Prof. Dr. Eleni Chatzi Lecture 1-20 September, 2017 Institute of Structural Engineering Method of Finite Elements II 1 Course

More information

Chapter 2. Formulation of Finite Element Method by Variational Principle

Chapter 2. Formulation of Finite Element Method by Variational Principle Chapter 2 Formulation of Finite Element Method by Variational Principle The Concept of Variation of FUNCTIONALS Variation Principle: Is to keep the DIFFERENCE between a REAL situation and an APPROXIMATE

More information

UNIT IV FLEXIBILTY AND STIFFNESS METHOD

UNIT IV FLEXIBILTY AND STIFFNESS METHOD SIDDHARTH GROUP OF INSTITUTIONS :: PUTTUR Siddharth Nagar, Narayanavanam Road 517583 QUESTION BANK (DESCRIPTIVE) Subject with Code : SA-II (13A01505) Year & Sem: III-B.Tech & I-Sem Course & Branch: B.Tech

More information

M.S Comprehensive Examination Analysis

M.S Comprehensive Examination Analysis UNIVERSITY OF CALIFORNIA, BERKELEY Spring Semester 2014 Dept. of Civil and Environmental Engineering Structural Engineering, Mechanics and Materials Name:......................................... M.S Comprehensive

More information

Lecture 8: Assembly of beam elements.

Lecture 8: Assembly of beam elements. ecture 8: Assembly of beam elements. 4. Example of Assemblage of Beam Stiffness Matrices. Place nodes at the load application points. Assembling the two sets of element equations (note the common elemental

More information

Using the finite element method of structural analysis, determine displacements at nodes 1 and 2.

Using the finite element method of structural analysis, determine displacements at nodes 1 and 2. Question 1 A pin-jointed plane frame, shown in Figure Q1, is fixed to rigid supports at nodes and 4 to prevent their nodal displacements. The frame is loaded at nodes 1 and by a horizontal and a vertical

More information

JEPPIAAR ENGINEERING COLLEGE

JEPPIAAR ENGINEERING COLLEGE JEPPIAAR ENGINEERING COLLEGE Jeppiaar Nagar, Rajiv Gandhi Salai 600 119 DEPARTMENT OFMECHANICAL ENGINEERING QUESTION BANK VI SEMESTER ME6603 FINITE ELEMENT ANALYSIS Regulation 013 SUBJECT YEAR /SEM: III

More information

ELASTODYNAMIC ANALYSIS OF FOUR BAR MECHANISM USING MATLAB AND ANSYS WB

ELASTODYNAMIC ANALYSIS OF FOUR BAR MECHANISM USING MATLAB AND ANSYS WB International Journal of Mechanical and Production Engineering Research and Development (IJMPERD ) ISSN 49-689 Vol., Issue Sep 1 76-8 TJPRC Pvt. td., EASTODYNAMIC ANAYSIS OF FOUR BAR MECHANISM USING MATAB

More information

BHAR AT HID AS AN ENGIN E ERI N G C O L L E G E NATTR A MPA LL I

BHAR AT HID AS AN ENGIN E ERI N G C O L L E G E NATTR A MPA LL I BHAR AT HID AS AN ENGIN E ERI N G C O L L E G E NATTR A MPA LL I 635 8 54. Third Year M E C H A NICAL VI S E M ES TER QUE S T I ON B ANK Subject: ME 6 603 FIN I T E E LE ME N T A N A L YSIS UNI T - I INTRODUCTION

More information

CAAM 335 Matrix Analysis Planar Trusses

CAAM 335 Matrix Analysis Planar Trusses CAAM 5 Matrix Analysis Planar Trusses September 1, 010 1 The Equations for the Truss We consider trusses with m bars and n nodes. Each node can be displaced in horizontal and vertical direction. If the

More information

COORDINATE TRANSFORMATIONS

COORDINATE TRANSFORMATIONS COORDINAE RANSFORMAIONS Members of a structural system are typically oriented in differing directions, e.g., Fig. 17.1. In order to perform an analysis, the element stiffness equations need to be expressed

More information

The Finite Element Method for the Analysis of Non-Linear and Dynamic Systems

The Finite Element Method for the Analysis of Non-Linear and Dynamic Systems The Finite Element Method for the Analysis of Non-Linear and Dynamic Systems Prof. Dr. Eleni Chatzi Dr. Giuseppe Abbiati, Dr. Konstantinos Agathos Lecture 1-21 September, 2017 Institute of Structural Engineering

More information

MEG 741 Energy and Variational Methods in Mechanics I

MEG 741 Energy and Variational Methods in Mechanics I MEG 741 Energy and Variational Methods in Mechanics I Brendan J. O Toole, Ph.D. Associate Professor of Mechanical Engineering Howard R. Hughes College of Engineering University of Nevada Las Vegas TBE

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

Due Monday, September 14 th, 12:00 midnight

Due Monday, September 14 th, 12:00 midnight Due Monday, September 14 th, 1: midnight This homework is considering the analysis of plane and space (3D) trusses as discussed in class. A list of MatLab programs that were discussed in class is provided

More information

Modelling and Finite Element Analysis of Double Wishbone Suspension

Modelling and Finite Element Analysis of Double Wishbone Suspension Modelling and Finite Element Analysis of Double Wishbone Suspension Amol Patil, Varsha Patil, Prashant Uhle P.G. Student, Dept. of Mechanical Engineering, S S B T S College of Engineering, Jalgaon, Maharastra,

More information

Non-linear and time-dependent material models in Mentat & MARC. Tutorial with Background and Exercises

Non-linear and time-dependent material models in Mentat & MARC. Tutorial with Background and Exercises Non-linear and time-dependent material models in Mentat & MARC Tutorial with Background and Exercises Eindhoven University of Technology Department of Mechanical Engineering Piet Schreurs July 7, 2009

More information

Advanced Structural Analysis Prof. Devdas Menon Department of Civil Engineering Indian Institute of Technology, Madras

Advanced Structural Analysis Prof. Devdas Menon Department of Civil Engineering Indian Institute of Technology, Madras Advanced Structural Analysis Prof. Devdas Menon Department of Civil Engineering Indian Institute of Technology, Madras Module No. # 6.1 Lecture No. # 33 Matrix Analysis of Plane and Space Frames Good morning.

More information

BECAS - an Open-Source Cross Section Analysis Tool

BECAS - an Open-Source Cross Section Analysis Tool BECAS - an Open-Source Cross Section Analysis Tool José P. Blasques and Robert D. Bitsche Presented at DTU Wind Energy stand at the EWEA 2012 conference, Copenhagen, 16.4.2012 BECAS-DTUWind@dtu.dk Motivation

More information

University of Illinois at Urbana-Champaign College of Engineering

University of Illinois at Urbana-Champaign College of Engineering University of Illinois at Urbana-Champaign College of Engineering CEE 570 Finite Element Methods (in Solid and Structural Mechanics) Spring Semester 03 Quiz # April 8, 03 Name: SOUTION ID#: PS.: A the

More information

1 Nonlinear deformation

1 Nonlinear deformation NONLINEAR TRUSS 1 Nonlinear deformation When deformation and/or rotation of the truss are large, various strains and stresses can be defined and related by material laws. The material behavior can be expected

More information

Structural Dynamics. Spring mass system. The spring force is given by and F(t) is the driving force. Start by applying Newton s second law (F=ma).

Structural Dynamics. Spring mass system. The spring force is given by and F(t) is the driving force. Start by applying Newton s second law (F=ma). Structural Dynamics Spring mass system. The spring force is given by and F(t) is the driving force. Start by applying Newton s second law (F=ma). We will now look at free vibrations. Considering the free

More information

Eshan V. Dave, Secretary of M&FGM2006 (Hawaii) Research Assistant and Ph.D. Candidate. Glaucio H. Paulino, Chairman of M&FGM2006 (Hawaii)

Eshan V. Dave, Secretary of M&FGM2006 (Hawaii) Research Assistant and Ph.D. Candidate. Glaucio H. Paulino, Chairman of M&FGM2006 (Hawaii) Asphalt Pavement Aging and Temperature Dependent Properties through a Functionally Graded Viscoelastic Model I: Development, Implementation and Verification Eshan V. Dave, Secretary of M&FGM2006 (Hawaii)

More information

FEA Solution Procedure

FEA Solution Procedure EA Soltion Procedre (demonstrated with a -D bar element problem) EA Procedre for Static Analysis. Prepare the E model a. discretize (mesh) the strctre b. prescribe loads c. prescribe spports. Perform calclations

More information

DHANALAKSHMI COLLEGE OF ENGINEERING, CHENNAI DEPARTMENT OF MECHANICAL ENGINEERING ME 6603 FINITE ELEMENT ANALYSIS PART A (2 MARKS)

DHANALAKSHMI COLLEGE OF ENGINEERING, CHENNAI DEPARTMENT OF MECHANICAL ENGINEERING ME 6603 FINITE ELEMENT ANALYSIS PART A (2 MARKS) DHANALAKSHMI COLLEGE OF ENGINEERING, CHENNAI DEPARTMENT OF MECHANICAL ENGINEERING ME 6603 FINITE ELEMENT ANALYSIS UNIT I : FINITE ELEMENT FORMULATION OF BOUNDARY VALUE PART A (2 MARKS) 1. Write the types

More information

ANALYSIS OF THERMAL STRESSES CONTACT PROBLEM OF FUNCTIONAL MATERIAL INVOLVING FRICTIONAL HEATING WITH AND WITHOUT THERMAL EFFECTS

ANALYSIS OF THERMAL STRESSES CONTACT PROBLEM OF FUNCTIONAL MATERIAL INVOLVING FRICTIONAL HEATING WITH AND WITHOUT THERMAL EFFECTS ANALYSIS OF THERMAL STRESSES CONTACT PROBLEM OF FUNCTIONAL MATERIAL INVOLVING FRICTIONAL HEATING WITH AND WITHOUT THERMAL EFFECTS 1 ANJANI KUMAR SINHA, 2 A. JOHN RAJAN, 3 KUMAR YOGEESH.D, 4 ERIKI ANANDA

More information

Frequently Asked Questions

Frequently Asked Questions Frequently Asked Questions Why do we have to make the assumption that plane sections plane? How about bars with non-axis symmetric cross section? The formulae derived look very similar to beam and axial

More information

Prepared by M. GUNASHANKAR AP/MECH DEPARTMENT OF MECHANICAL ENGINEERING

Prepared by M. GUNASHANKAR AP/MECH DEPARTMENT OF MECHANICAL ENGINEERING CHETTINAD COLLEGE OF ENGINEERING AND TECHNOLOGY-KARUR FINITE ELEMENT ANALYSIS 2 MARKS QUESTIONS WITH ANSWER Prepared by M. GUNASHANKAR AP/MECH DEPARTMENT OF MECHANICAL ENGINEERING FINITE ELEMENT ANALYSIS

More information

MITOCW MITRES2_002S10nonlinear_lec15_300k-mp4

MITOCW MITRES2_002S10nonlinear_lec15_300k-mp4 MITOCW MITRES2_002S10nonlinear_lec15_300k-mp4 The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational resources

More information

3D problem: Fx Fy Fz. Forces act parallel to the members (2 5 ) / 29 (2 5 ) / 29

3D problem: Fx Fy Fz. Forces act parallel to the members (2 5 ) / 29 (2 5 ) / 29 problem: x y z 0 t each joint a a a a 5a j i W k y z x x y z Equations:S x =S y =S z =0 at each joint () Unknowns: Total of : Member forces,,, () Reactions : x, y, z, x, y, z, x, y, z (9) y z x W orces

More information

Basic Energy Principles in Stiffness Analysis

Basic Energy Principles in Stiffness Analysis Basic Energy Principles in Stiffness Analysis Stress-Strain Relations The application of any theory requires knowledge of the physical properties of the material(s) comprising the structure. We are limiting

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

202 Index. failure, 26 field equation, 122 force, 1

202 Index. failure, 26 field equation, 122 force, 1 Index acceleration, 12, 161 admissible function, 155 admissible stress, 32 Airy's stress function, 122, 124 d'alembert's principle, 165, 167, 177 amplitude, 171 analogy, 76 anisotropic material, 20 aperiodic

More information

Advanced Structural Analysis Prof. Devdas Menon Department of Civil Engineering Indian Institute of Technology, Madras

Advanced Structural Analysis Prof. Devdas Menon Department of Civil Engineering Indian Institute of Technology, Madras Advanced Structural Analysis Prof. Devdas Menon Department of Civil Engineering Indian Institute of Technology, Madras Module - 4.3 Lecture - 24 Matrix Analysis of Structures with Axial Elements (Refer

More information

Module 7: Micromechanics Lecture 29: Background of Concentric Cylinder Assemblage Model. Introduction. The Lecture Contains

Module 7: Micromechanics Lecture 29: Background of Concentric Cylinder Assemblage Model. Introduction. The Lecture Contains Introduction In this lecture we are going to introduce a new micromechanics model to determine the fibrous composite effective properties in terms of properties of its individual phases. In this model

More information

Chapter 2: Rigid Bar Supported by Two Buckled Struts under Axial, Harmonic, Displacement Excitation..14

Chapter 2: Rigid Bar Supported by Two Buckled Struts under Axial, Harmonic, Displacement Excitation..14 Table of Contents Chapter 1: Research Objectives and Literature Review..1 1.1 Introduction...1 1.2 Literature Review......3 1.2.1 Describing Vibration......3 1.2.2 Vibration Isolation.....6 1.2.2.1 Overview.

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

Ph.D. Preliminary Examination Analysis

Ph.D. Preliminary Examination Analysis UNIVERSITY OF CALIFORNIA, BERKELEY Spring Semester 2014 Dept. of Civil and Environmental Engineering Structural Engineering, Mechanics and Materials Name:......................................... Ph.D.

More information

. D CR Nomenclature D 1

. D CR Nomenclature D 1 . D CR Nomenclature D 1 Appendix D: CR NOMENCLATURE D 2 The notation used by different investigators working in CR formulations has not coalesced, since the topic is in flux. This Appendix identifies the

More information

Cable Tension APPENDIX D. Objectives: Demonstrate the use of elastic-plastic material properties. Create an enforced displacement on the model.

Cable Tension APPENDIX D. Objectives: Demonstrate the use of elastic-plastic material properties. Create an enforced displacement on the model. APPENDIX D Cable Tension Objectives: Demonstrate the use of elastic-plastic material properties. Create an enforced displacement on the model. Run an MSC.Nastran nonlinear static analysis. Create an accurate

More information

#SEU16. FEA in Solid Edge and FEMAP Mark Sherman

#SEU16. FEA in Solid Edge and FEMAP Mark Sherman FEA in Solid Edge and FEMAP Mark Sherman Realize innovation. FEMAP Continuous development with the same core team! Since 1985 there have been more than 35 releases of FEMAP with only one major architecture

More information

Lecture 1: Course Introduction.

Lecture 1: Course Introduction. Lecture : Course Introduction. What is the Finite Element Method (FEM)? a numerical method for solving problems of engineering and mathematical physics. (Logan Pg. #). In MECH 40 we are concerned with

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

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

Using MATLAB and. Abaqus. Finite Element Analysis. Introduction to. Amar Khennane. Taylor & Francis Croup. Taylor & Francis Croup,

Using MATLAB and. Abaqus. Finite Element Analysis. Introduction to. Amar Khennane. Taylor & Francis Croup. Taylor & Francis Croup, Introduction to Finite Element Analysis Using MATLAB and Abaqus Amar Khennane Taylor & Francis Croup Boca Raton London New York CRC Press is an imprint of the Taylor & Francis Croup, an informa business

More information

Mechanical Design in Optical Engineering. For a prismatic bar of length L in tension by axial forces P we have determined:

Mechanical Design in Optical Engineering. For a prismatic bar of length L in tension by axial forces P we have determined: Deformation of Axial Members For a prismatic bar of length L in tension by axial forces P we have determined: σ = P A δ ε = L It is important to recall that the load P must act on the centroid of the cross

More information

MITOCW MITRES2_002S10linear_lec07_300k-mp4

MITOCW MITRES2_002S10linear_lec07_300k-mp4 MITOCW MITRES2_002S10linear_lec07_300k-mp4 The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational resources

More information

Module I: Two-dimensional linear elasticity. application notes and tutorial. Problems

Module I: Two-dimensional linear elasticity. application notes and tutorial. Problems Module I: Two-dimensional linear elasticity application notes and tutorial Problems 53 selected excerpts from Read Me file for: ElemFin 1.1.1 Yannick CALLAUD in Symantec C++. 1 place of Falleron, 44300

More information

Lecture 21: Isoparametric Formulation of Plane Elements.

Lecture 21: Isoparametric Formulation of Plane Elements. 6.6. Rectangular Plane Stress/Strain Element. he CS element uses a triangular shape. he 3 nodes of the CS element allow us to employ linear multivariate approximations to the u and v displacements. he

More information

Theory and Practice of Rotor Dynamics Prof. Dr. Rajiv Tiwari Department of Mechanical Engineering Indian Institute of Technology Guwahati

Theory and Practice of Rotor Dynamics Prof. Dr. Rajiv Tiwari Department of Mechanical Engineering Indian Institute of Technology Guwahati Theory and Practice of Rotor Dynamics Prof. Dr. Rajiv Tiwari Department of Mechanical Engineering Indian Institute of Technology Guwahati Module - 2 Simpul Rotors Lecture - 2 Jeffcott Rotor Model In the

More information

Homework 6: Energy methods, Implementing FEA.

Homework 6: Energy methods, Implementing FEA. EN75: Advanced Mechanics of Solids Homework 6: Energy methods, Implementing FEA. School of Engineering Brown University. The figure shows a eam with clamped ends sujected to a point force at its center.

More information

Unit M1.5 Statically Indeterminate Systems

Unit M1.5 Statically Indeterminate Systems Unit M1.5 Statically Indeterminate Systems Readings: CDL 2.1, 2.3, 2.4, 2.7 16.001/002 -- Unified Engineering Department of Aeronautics and Astronautics Massachusetts Institute of Technology LEARNING OBJECTIVES

More information

MITOCW MITRES2_002S10nonlinear_lec05_300k-mp4

MITOCW MITRES2_002S10nonlinear_lec05_300k-mp4 MITOCW MITRES2_002S10nonlinear_lec05_300k-mp4 The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational resources

More information

Continuum Mechanics and the Finite Element Method

Continuum Mechanics and the Finite Element Method Continuum Mechanics and the Finite Element Method 1 Assignment 2 Due on March 2 nd @ midnight 2 Suppose you want to simulate this The familiar mass-spring system l 0 l y i X y i x Spring length before/after

More information