A two-dimensional FE truss program

Size: px
Start display at page:

Download "A two-dimensional FE truss program"

Transcription

1 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 are homogeneous and linear elastic. Deformation and rotations must be small, i.e. the behavior is geometrically linear. Model geometry, topology (connectivity), geometrical and material parameters and boundary conditions (prescribed displacements and point loads) must be available as input data. After reading this input, fem2d checks it and initializes some variables. Input data are stored in a data base. When the analysis is finished, output date are stored in the data base and various other data arrays. Save the file fem2d.tar in the directory fem and extract the tar-file. It is very convenient to make a text-file e.g. com.txt to save some Matlab commands which you can copy into the Matlab shell. In the following section an example input is presented, with explanatory comments. The program itself is explained in more detail in the last section. 2 Example input file As an example, the two-bar truss structure, shown in the figure below, will be modelled, loaded and analyzed. y F x Both trusses have different geometrical and material properties, which are given in the table below.

2 2 truss a b cross-sectional area A 0 20 [mm 2 ] Young s modulus E [GPa] Poisson s ratio ν [-] Now lets see which Matlab commands do the job. Before starting, it might be wise to clear everything and close all figures. clear all; close all; First we give the coordinates of the nodes in the array crd0. Now we have to decide on the units and in this example we choose to model everything in mm. crd0 = [ 0 0; 00 0; 0 00/sqrt(3) ]; Then the connectivity of the elements is defined in the array lok. This array has a row for each element. The first column contains the element type, which is 9 for a truss. The second row is the element group number. Typically elements with the same properties are placed in one and the same group. Because our two elements indeed have different properties, they are placed in two different groups. The third and fourth column contain the first and second node of the element. lok = [ 9 2 ; ]; Now we have to provide the geometrical and material properties in the array elda (element data). For each element group we have a row in elda. The first column contains a zero (0), which is not important for our use of fem2d. The second column contains the material identification number. For linear elastic material, which we will use here and also further in other cases, this number is (eleven). The third column contains the cross-sectional area (in mm 2 ). The fourth and fifth column are not used for our problems and always contain a zero (0). The sixth and seventh column contain Young s modulus and Poisson s ratio. So for our example we have : elda = [ ]; Boundary conditions are prescribed nodal displacements and/or prescribed nodal forces. Prescribed nodal displacements are always needed to prevent rigid body motions. Prescribed displacements are provided in the array pp. For each prescribed displacement component we have one row. The first column contains the node, the second column contains the direction (either (= x = horizontal) or 2 (= y = vertical). The third column contains the value. For our example we have : pp = [ 0; 2 0; 3 0; 3 2 0; ]; The prescribed forces are given in the array pf. Again each prescribed force component is placed on a row, with the node in the first, the direction in the second and the value in the third column. For our example :

3 3 pf = [ ]; That is about all. The input is complete and fem2d can be executed to analyze the behavior. fem2d; When the analysis is completed successfully, we want to see some results. First the nodal data, i.e. displacements and reaction forces. They are available in the array s MTp and Mfi. Rows contain nodal data : displacement and forces in the first ( = x = horizontal) and second (2 = y = vertical) directions. Just type the next commands in the Matlab shell. MTp Mfi Element data, like stress and strain, are available in the data base. This is a Matlab structure eda.eldac. For element e we find the date in the array eda(e).eldac. The relevant date can be found at the following locations : eda(e).eldac() = sine of angle between axis and -direction eda(e).eldac(2) = cosine of angle between axis and -direction eda(e).eldac(3) = length eda(e).eldac(4) = cross-sectional area eda(e).eldac(6) = linear axial strain eda(e).eldac(7) = axial stress eda(e).eldac() = axial stretch ratio eda(e).eldac(2) = radial stretch ratio eda(e).eldac(8) = axial force To see some results for our example just type the following in the Matlab shell : eda().eldac(6) eda().eldac(7) eda().eldac(8) eda(2).eldac(6) eda(2).eldac(7) eda(2).eldac(8) These values can ofcourse be stored and printed in various ways. The above input commands can also be put in one single input file, e.g. Ifem2d.m : clear all; close all; crd0 = [ 0 0; 00 0; 0 00/sqrt(2) ]; lok = [ 9 2 ; ]; elda = [ ; ]; pp = [ 0; 2 0; 3 0; 3 2 0; ]; pf = [ ];

4 4 3 The program fem2d The two-dimensional finite element program fem2d is not only suited to analyze truss structures. As we only use it for this purpose, the following explanation is confined to this use. It is recommended to look at the program listing, when reading the text. The program starts with a check of input variables and initialization. This is done in separate m-files. prog= fe2d ; checkinputn; daba; lcase; initialzero; After that the loop over all elements ne is started to make the system of equations. for e=:ne... end; % element loop e In this loop some data are extracted from the data base eda.elpa, which contains the element parameters. ety = element type egr = element group nenod = number of element nodes nedof = number of element degrees of freedom neip = number of element integration points The last variable is irrelevant for the truss element. Element nodal coordinates are also needed : ec0 = initial element nodal coordinates ec = current element nodal coordinates After initialization of element matrix ( em ) and force column ( ef ) to zero, the element stiffness matrix is made. Here we only show the part for the truss element ( ety = 9 ). [ML,V] = geomm(e,eda); l0 = eda(e).elda0(3); A0 = eda(e).elda0(4); E0 = eda(e).elda0(8); em = (A0/l0 * E0) * ML ; The m-file geomm is used to generate the array s ML and V. From the data base we extract the initial element length l0, cross-sectional area A0 and Young s modulus E0. The element stiffness matrix em is assembled into the structural stiffness matrix sm, using information on the connectivity, which is stored in the array lokvg, which finishes the element loop. Now that we have the left hand structural stiffness matrix sm, the right hand force column rs must be made from the prescribed nodal forces, which are contained in the array fe. The total system of equations is reduced by partitioning, which means that prescribed nodal displacements are taken into account. This is done with the m-file partit. The reduced equation system is solved and the solution is found in the column sol.

5 5 sol = inv(sm)*rs; From this solution array, the nodal displacements and new coordinates are extracted. To calculated element strains and stresses, we have to go into an element loop for the second time. Using the nodal displacements, various element values are calculated and stored in the data base. 4 Mesh plotting function Truss structures can be plotted in undeformed and deformed state with a Matlab function pmshn.m. The call to the function looks like : pmshn(option,lok,crd0,crd,eda) We recognize the arrays lok, crd0, crd and eda, respectively the location (connectivity) matrix, the coordinates in initial and current state and the element data base. The first argument is a column array with some options : option() = magfac : magnification factor option(2) = inimsh : -> plotting of initial mesh option(3) = nodpnt : -> plotting of nodal numbers option(4) = elmnrs : -> plotting of element numbers option(5:0) = 0 : values are not relevant for trusses So it will almost always be enough to use : option = [ ]; pmshn(option,lok,crd0,crd,eda);

As an example, the two-bar truss structure, shown in the figure below will be modelled, loaded and analyzed.

As an example, the two-bar truss structure, shown in the figure below will be modelled, loaded and analyzed. Program tr2d 1 FE program tr2d The Matlab program tr2d allows to model and analyze two-dimensional truss structures, where trusses are homogeneous and can behave nonlinear. Deformation and rotations can

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

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

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

As an example we consider the stacking and analysis of a 2-ply symmetric laminate. First we clear the Matlab space and close figures.

As an example we consider the stacking and analysis of a 2-ply symmetric laminate. First we clear the Matlab space and close figures. Program Lam 1 Introduction The collection of Matlab command and function files in the package lam allows the stacking and analysis of a laminate. In fact only a representative piece of a laminate is considered,

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

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

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

ME 475 Modal Analysis of a Tapered Beam

ME 475 Modal Analysis of a Tapered Beam ME 475 Modal Analysis of a Tapered Beam Objectives: 1. To find the natural frequencies and mode shapes of a tapered beam using FEA.. To compare the FE solution to analytical solutions of the vibratory

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

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

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

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

Analysis of Planar Truss

Analysis of Planar Truss Analysis of Planar Truss Although the APES computer program is not a specific matrix structural code, it can none the less be used to analyze simple structures. In this example, the following statically

More information

Two Tier projects for students in ME 160 class

Two Tier projects for students in ME 160 class ME 160 Introduction to Finite Element Method Spring 2016 Topics for Term Projects by Teams of 2 Students Instructor: Tai Ran Hsu, Professor, Dept. of Mechanical engineering, San Jose State University,

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

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

3. Overview of MSC/NASTRAN

3. Overview of MSC/NASTRAN 3. Overview of MSC/NASTRAN MSC/NASTRAN is a general purpose finite element analysis program used in the field of static, dynamic, nonlinear, thermal, and optimization and is a FORTRAN program containing

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

Plane and axisymmetric models in Mentat & MARC. Tutorial with some Background

Plane and axisymmetric models in Mentat & MARC. Tutorial with some Background Plane and axisymmetric models in Mentat & MARC Tutorial with some Background Eindhoven University of Technology Department of Mechanical Engineering Piet J.G. Schreurs Lambèrt C.A. van Breemen March 6,

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

Fig. 1. Circular fiber and interphase between the fiber and the matrix.

Fig. 1. Circular fiber and interphase between the fiber and the matrix. Finite element unit cell model based on ABAQUS for fiber reinforced composites Tian Tang Composites Manufacturing & Simulation Center, Purdue University West Lafayette, IN 47906 1. Problem Statement In

More information

Measurement of deformation. Measurement of elastic force. Constitutive law. Finite element method

Measurement of deformation. Measurement of elastic force. Constitutive law. Finite element method Deformable Bodies Deformation x p(x) Given a rest shape x and its deformed configuration p(x), how large is the internal restoring force f(p)? To answer this question, we need a way to measure deformation

More information

Quintic beam closed form matrices (revised 2/21, 2/23/12) General elastic beam with an elastic foundation

Quintic beam closed form matrices (revised 2/21, 2/23/12) General elastic beam with an elastic foundation General elastic beam with an elastic foundation Figure 1 shows a beam-column on an elastic foundation. The beam is connected to a continuous series of foundation springs. The other end of the foundation

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

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

Strength of Material. Shear Strain. Dr. Attaullah Shah

Strength of Material. Shear Strain. Dr. Attaullah Shah Strength of Material Shear Strain Dr. Attaullah Shah Shear Strain TRIAXIAL DEFORMATION Poisson's Ratio Relationship Between E, G, and ν BIAXIAL DEFORMATION Bulk Modulus of Elasticity or Modulus of Volume

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

Thermal Stress Analysis of a Bi- Metallic Plate

Thermal Stress Analysis of a Bi- Metallic Plate WORKSHOP 10 Thermal Stress Analysis of a Bi- Metallic Plate MSC.Nastran 104 Exercise Workbook 10-1 10-2 MSC.Nastran 104 Exercise Workbook WORKSHOP 10 Thermal Stress Analysis of a Bi-Metallic Plate Model

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

Project Engineer: Wesley Kinkler Project Number: 4.14 Submission Date: 11/15/2003. TAMUK Truss Company Trusses Made Simple

Project Engineer: Wesley Kinkler Project Number: 4.14 Submission Date: 11/15/2003. TAMUK Truss Company Trusses Made Simple Submission Date: 11/15/2003 TAMUK Truss Company Trusses Made Simple Table of Contents Introduction..3 Proposal.3 Solution..5 Hand Calculations 5 TRUSS2D 7 NENastran 7 Comparison of Results... 8 Data Analysis.10

More information

UNIVERSITY OF SASKATCHEWAN ME MECHANICS OF MATERIALS I FINAL EXAM DECEMBER 13, 2008 Professor A. Dolovich

UNIVERSITY OF SASKATCHEWAN ME MECHANICS OF MATERIALS I FINAL EXAM DECEMBER 13, 2008 Professor A. Dolovich UNIVERSITY OF SASKATCHEWAN ME 313.3 MECHANICS OF MATERIALS I FINAL EXAM DECEMBER 13, 2008 Professor A. Dolovich A CLOSED BOOK EXAMINATION TIME: 3 HOURS For Marker s Use Only LAST NAME (printed): FIRST

More information

Static and Modal Analysis of Telescope Frame in Satellite

Static and Modal Analysis of Telescope Frame in Satellite Abstract Static and Modal Analysis of Telescope Frame in Satellite Sun Libin Department of Mechanical Engineering Tsinghua University Feng Hui School of Material Science and Engineering University of Science

More information

Geometric Misfitting in Structures An Interval-Based Approach

Geometric Misfitting in Structures An Interval-Based Approach Geometric Misfitting in Structures An Interval-Based Approach M. V. Rama Rao Vasavi College of Engineering, Hyderabad - 500 031 INDIA Rafi Muhanna School of Civil and Environmental Engineering Georgia

More information

DISPENSA FEM in MSC. Nastran

DISPENSA FEM in MSC. Nastran DISPENSA FEM in MSC. Nastran preprocessing: mesh generation material definitions definition of loads and boundary conditions solving: solving the (linear) set of equations components postprocessing: visualisation

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

Lecture 27 Introduction to finite elements methods

Lecture 27 Introduction to finite elements methods 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 Finite element

More information

AN EFFECTIVE SOLUTION OF THE COMPOSITE (FGM S) BEAM STRUCTURES

AN EFFECTIVE SOLUTION OF THE COMPOSITE (FGM S) BEAM STRUCTURES Engineering MECHANICS, Vol. 15, 2008, No. 2, p. 115 132 115 AN EFFECTIVE SOLUTION OF THE COMPOSITE (FGM S) BEAM STRUCTURES Justín Murín, Vladimír Kutiš* The additive mixture rules have been extended for

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

Application of pseudo-symmetric technique in dynamic analysis of concrete gravity dams

Application of pseudo-symmetric technique in dynamic analysis of concrete gravity dams Application of pseudo-symmetric technique in dynamic analysis of concrete gravity dams V. Lotfi Department of Civil and Environmental Engineering, Amirkabir University, Iran Abstract A new approach is

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

Game Physics. Game and Media Technology Master Program - Utrecht University. Dr. Nicolas Pronost

Game Physics. Game and Media Technology Master Program - Utrecht University. Dr. Nicolas Pronost Game and Media Technology Master Program - Utrecht University Dr. Nicolas Pronost Soft body physics Soft bodies In reality, objects are not purely rigid for some it is a good approximation but if you hit

More information

Lecture 4 Implementing material models: using usermat.f. Implementing User-Programmable Features (UPFs) in ANSYS ANSYS, Inc.

Lecture 4 Implementing material models: using usermat.f. Implementing User-Programmable Features (UPFs) in ANSYS ANSYS, Inc. Lecture 4 Implementing material models: using usermat.f Implementing User-Programmable Features (UPFs) in ANSYS 1 Lecture overview What is usermat.f used for? Stress, strain and material Jacobian matrix

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

N = Shear stress / Shear strain

N = Shear stress / Shear strain UNIT - I 1. What is meant by factor of safety? [A/M-15] It is the ratio between ultimate stress to the working stress. Factor of safety = Ultimate stress Permissible stress 2. Define Resilience. [A/M-15]

More information

General elastic beam with an elastic foundation

General elastic beam with an elastic foundation General elastic beam with an elastic foundation Figure 1 shows a beam-column on an elastic foundation. The beam is connected to a continuous series of foundation springs. The other end of the foundation

More information

ENGN 2340 Final Project Report. Optimization of Mechanical Isotropy of Soft Network Material

ENGN 2340 Final Project Report. Optimization of Mechanical Isotropy of Soft Network Material ENGN 2340 Final Project Report Optimization of Mechanical Isotropy of Soft Network Material Enrui Zhang 12/15/2017 1. Introduction of the Problem This project deals with the stress-strain response of a

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

MATERIAL MECHANICS, SE2126 COMPUTER LAB 4 MICRO MECHANICS. E E v E E E E E v E E + + = m f f. f f

MATERIAL MECHANICS, SE2126 COMPUTER LAB 4 MICRO MECHANICS. E E v E E E E E v E E + + = m f f. f f MATRIAL MCHANICS, S226 COMPUTR LAB 4 MICRO MCHANICS 2 2 2 f m f f m T m f m f f m v v + + = + PART A SPHRICAL PARTICL INCLUSION Consider a solid granular material, a so called particle composite, shown

More information

Content. Department of Mathematics University of Oslo

Content. Department of Mathematics University of Oslo Chapter: 1 MEK4560 The Finite Element Method in Solid Mechanics II (January 25, 2008) (E-post:torgeiru@math.uio.no) Page 1 of 14 Content 1 Introduction to MEK4560 3 1.1 Minimum Potential energy..............................

More information

Practice Final Examination. Please initial the statement below to show that you have read it

Practice Final Examination. Please initial the statement below to show that you have read it EN175: Advanced Mechanics of Solids Practice Final Examination School of Engineering Brown University NAME: General Instructions No collaboration of any kind is permitted on this examination. You may use

More information

46th AIAA/ASME/ASCE/AHS/ASC Structures, Structural Dynamics, and Materials Conference April 2005 Austin, Texas

46th AIAA/ASME/ASCE/AHS/ASC Structures, Structural Dynamics, and Materials Conference April 2005 Austin, Texas th AIAA/ASME/ASCE/AHS/ASC Structures, Structural Dynamics & Materials Conference - April, Austin, Texas AIAA - AIAA - Bi-stable Cylindrical Space Frames H Ye and S Pellegrino University of Cambridge, Cambridge,

More information

Converting Plane Stress Statics to 2D Natural Frequencies, changes in red

Converting Plane Stress Statics to 2D Natural Frequencies, changes in red The following illustrates typical modifications for converting any plane stress static formulation into a plane stress natural frequency and mode shape calculation. The changes and additions to a prior

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

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

Computational models of diamond anvil cell compression

Computational models of diamond anvil cell compression UDC 519.6 Computational models of diamond anvil cell compression A. I. Kondrat yev Independent Researcher, 5944 St. Alban Road, Pensacola, Florida 32503, USA Abstract. Diamond anvil cells (DAC) are extensively

More information

CHAPTER 7 FINITE ELEMENT ANALYSIS OF DEEP GROOVE BALL BEARING

CHAPTER 7 FINITE ELEMENT ANALYSIS OF DEEP GROOVE BALL BEARING 113 CHAPTER 7 FINITE ELEMENT ANALYSIS OF DEEP GROOVE BALL BEARING 7. 1 INTRODUCTION Finite element computational methodology for rolling contact analysis of the bearing was proposed and it has several

More information

IDENTIFICATION OF THE ELASTIC PROPERTIES ON COMPOSITE MATERIALS AS A FUNCTION OF TEMPERATURE

IDENTIFICATION OF THE ELASTIC PROPERTIES ON COMPOSITE MATERIALS AS A FUNCTION OF TEMPERATURE IDENTIFICATION OF THE ELASTIC PROPERTIES ON COMPOSITE MATERIALS AS A FUNCTION OF TEMPERATURE Hugo Sol, hugos@vub.ac.be Massimo Bottiglieri, Massimo.Bottiglieri@vub.ac.be Department Mechanics of Materials

More information

ME FINITE ELEMENT ANALYSIS FORMULAS

ME FINITE ELEMENT ANALYSIS FORMULAS ME 2353 - FINITE ELEMENT ANALYSIS FORMULAS UNIT I FINITE ELEMENT FORMULATION OF BOUNDARY VALUE PROBLEMS 01. Global Equation for Force Vector, {F} = [K] {u} {F} = Global Force Vector [K] = Global Stiffness

More information

EFFECTS OF THERMAL STRESSES AND BOUNDARY CONDITIONS ON THE RESPONSE OF A RECTANGULAR ELASTIC BODY MADE OF FGM

EFFECTS OF THERMAL STRESSES AND BOUNDARY CONDITIONS ON THE RESPONSE OF A RECTANGULAR ELASTIC BODY MADE OF FGM Proceedings of the International Conference on Mechanical Engineering 2007 (ICME2007) 29-31 December 2007, Dhaka, Bangladesh ICME2007-AM-76 EFFECTS OF THERMAL STRESSES AND BOUNDARY CONDITIONS ON THE RESPONSE

More information

MESH MODELING OF ANGLE-PLY LAMINATED COMPOSITE PLATES FOR DNS AND IPSAP

MESH MODELING OF ANGLE-PLY LAMINATED COMPOSITE PLATES FOR DNS AND IPSAP 16 TH INTERNATIONAL CONFERENCE ON COMPOSITE MATERIALS MESH MODELING OF ANGLE-PLY LAMINATED COMPOSITE PLATES FOR DNS AND IPSAP Wanil Byun*, Seung Jo Kim*, Joris Wismans** *Seoul National University, Republic

More information

EMA 3702 Mechanics & Materials Science (Mechanics of Materials) Chapter 2 Stress & Strain - Axial Loading

EMA 3702 Mechanics & Materials Science (Mechanics of Materials) Chapter 2 Stress & Strain - Axial Loading MA 3702 Mechanics & Materials Science (Mechanics of Materials) Chapter 2 Stress & Strain - Axial Loading MA 3702 Mechanics & Materials Science Zhe Cheng (2018) 2 Stress & Strain - Axial Loading Statics

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

Leaf Spring (Material, Contact, geometric nonlinearity)

Leaf Spring (Material, Contact, geometric nonlinearity) 00 Summary Summary Nonlinear Static Analysis - Unit: N, mm - Geometric model: Leaf Spring.x_t Leaf Spring (Material, Contact, geometric nonlinearity) Nonlinear Material configuration - Stress - Strain

More information

Plates and Shells: Theory and Computation. Dr. Mostafa Ranjbar

Plates and Shells: Theory and Computation. Dr. Mostafa Ranjbar Plates and Shells: Theory and Computation Dr. Mostafa Ranjbar Outline -1-! This part of the module consists of seven lectures and will focus on finite elements for beams, plates and shells. More specifically,

More information

MATERIAL MECHANICS, SE2126 COMPUTER LAB 3 VISCOELASTICITY. k a. N t

MATERIAL MECHANICS, SE2126 COMPUTER LAB 3 VISCOELASTICITY. k a. N t MATERIAL MECHANICS, SE2126 COMPUTER LAB 3 VISCOELASTICITY N t i Gt () G0 1 i ( 1 e τ = α ) i= 1 k a k b τ PART A RELAXING PLASTIC PAPERCLIP Consider an ordinary paperclip made of plastic, as they more

More information

UNCONVENTIONAL FINITE ELEMENT MODELS FOR NONLINEAR ANALYSIS OF BEAMS AND PLATES

UNCONVENTIONAL FINITE ELEMENT MODELS FOR NONLINEAR ANALYSIS OF BEAMS AND PLATES UNCONVENTIONAL FINITE ELEMENT MODELS FOR NONLINEAR ANALYSIS OF BEAMS AND PLATES A Thesis by WOORAM KIM Submitted to the Office of Graduate Studies of Texas A&M University in partial fulfillment of the

More information

Nonlinear Static - 1D Plasticity - Isotropic and Kinematic Hardening Walla Walla University

Nonlinear Static - 1D Plasticity - Isotropic and Kinematic Hardening Walla Walla University Nonlinear Static - 1D Plasticity - Isotropic and Kinematic Hardening Walla Walla University Professor Louie L. Yaw c Draft date January 18, 2017 Copyright is reserved. Individual copies may be made for

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

Analysis of a portal steel frame subject to fire by use of a truss model

Analysis of a portal steel frame subject to fire by use of a truss model Analysis of a portal steel frame subject to fire by use of a truss model P. G. Papadopoulos & A. Mathiopoulou Department of Civil Engineering, Aristotle University of Thessaloniki, Greece Abstract A plane

More information

CHAPTER 14 BUCKLING ANALYSIS OF 1D AND 2D STRUCTURES

CHAPTER 14 BUCKLING ANALYSIS OF 1D AND 2D STRUCTURES CHAPTER 14 BUCKLING ANALYSIS OF 1D AND 2D STRUCTURES 14.1 GENERAL REMARKS In structures where dominant loading is usually static, the most common cause of the collapse is a buckling failure. Buckling may

More information

Module 2: Thermal Stresses in a 1D Beam Fixed at Both Ends

Module 2: Thermal Stresses in a 1D Beam Fixed at Both Ends Module 2: Thermal Stresses in a 1D Beam Fixed at Both Ends Table of Contents Problem Description 2 Theory 2 Preprocessor 3 Scalar Parameters 3 Real Constants and Material Properties 4 Geometry 6 Meshing

More information

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

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

More information

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

Geometric nonlinear sensitivity analysis for nonparametric shape optimization with non-zero prescribed displacements

Geometric nonlinear sensitivity analysis for nonparametric shape optimization with non-zero prescribed displacements 0 th World Congress on Structural and Multidisciplinary Optimization May 9-24, 203, Orlando, Florida, USA Geometric nonlinear sensitivity analysis for nonparametric shape optimization with non-zero prescribed

More information

Dynamics Manual. Version 7

Dynamics Manual. Version 7 Dynamics Manual Version 7 DYNAMICS MANUAL TABLE OF CONTENTS 1 Introduction...1-1 1.1 About this manual...1-1 2 Tutorial...2-1 2.1 Dynamic analysis of a generator on an elastic foundation...2-1 2.1.1 Input...2-1

More information

Nonlinear analysis in ADINA Structures

Nonlinear analysis in ADINA Structures Nonlinear analysis in ADINA Structures Theodore Sussman, Ph.D. ADINA R&D, Inc, 2016 1 Topics presented Types of nonlinearities Materially nonlinear only Geometrically nonlinear analysis Deformation-dependent

More information

Stretching of a Prismatic Bar by its Own Weight

Stretching of a Prismatic Bar by its Own Weight 1 APES documentation (revision date: 12.03.10) Stretching of a Prismatic Bar by its Own Weight. This sample analysis is provided in order to illustrate the correct specification of the gravitational acceleration

More information

Purpose of this Guide: To thoroughly prepare students for the exact types of problems that will be on Exam 3.

Purpose of this Guide: To thoroughly prepare students for the exact types of problems that will be on Exam 3. ES230 STRENGTH OF MTERILS Exam 3 Study Guide Exam 3: Wednesday, March 8 th in-class Updated 3/3/17 Purpose of this Guide: To thoroughly prepare students for the exact types of problems that will be on

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

Effect of Specimen Dimensions on Flexural Modulus in a 3-Point Bending Test

Effect of Specimen Dimensions on Flexural Modulus in a 3-Point Bending Test Effect of Specimen Dimensions on Flexural Modulus in a 3-Point Bending Test M. Praveen Kumar 1 and V. Balakrishna Murthy 2* 1 Mechanical Engineering Department, P.V.P. Siddhartha Institute of Technology,

More information

MICROMECHANICAL ANALYSIS OF FRP COMPOSITES SUBJECTED TO LONGITUDINAL LOADING

MICROMECHANICAL ANALYSIS OF FRP COMPOSITES SUBJECTED TO LONGITUDINAL LOADING MICROMECHANICAL ANALYSIS OF FRP COMPOSITES SUBJECTED TO LONGITUDINAL LOADING N. Krishna Vihari 1, P. Phani Prasanthi 1, V. Bala Krishna Murthy 2* and A. Srihari Prasad 3 1 Mech. Engg. Dept., P. V. P. Siddhartha

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

Inverse Design (and a lightweight introduction to the Finite Element Method) Stelian Coros

Inverse Design (and a lightweight introduction to the Finite Element Method) Stelian Coros Inverse Design (and a lightweight introduction to the Finite Element Method) Stelian Coros Computational Design Forward design: direct manipulation of design parameters Level of abstraction Exploration

More information

Soft Bodies. Good approximation for hard ones. approximation breaks when objects break, or deform. Generalization: soft (deformable) bodies

Soft Bodies. Good approximation for hard ones. approximation breaks when objects break, or deform. Generalization: soft (deformable) bodies Soft-Body Physics Soft Bodies Realistic objects are not purely rigid. Good approximation for hard ones. approximation breaks when objects break, or deform. Generalization: soft (deformable) bodies Deformed

More information

INTERNATIONAL JOURNAL OF APPLIED ENGINEERING RESEARCH, DINDIGUL Volume 2, No 1, 2011

INTERNATIONAL JOURNAL OF APPLIED ENGINEERING RESEARCH, DINDIGUL Volume 2, No 1, 2011 Interlaminar failure analysis of FRP cross ply laminate with elliptical cutout Venkateswara Rao.S 1, Sd. Abdul Kalam 1, Srilakshmi.S 1, Bala Krishna Murthy.V 2 1 Mechanical Engineering Department, P. V.

More information

Module-6: Laminated Composites-II. Learning Unit-1: M6.1. M 6.1 Structural Mechanics of Laminates

Module-6: Laminated Composites-II. Learning Unit-1: M6.1. M 6.1 Structural Mechanics of Laminates Module-6: Laminated Composites-II Learning Unit-1: M6.1 M 6.1 Structural Mechanics of Laminates Classical Lamination Theory: Laminate Stiffness Matrix To this point in the development of classical lamination

More information

Code_Aster. SDNV114 Simulation of benchmark SAFE - T5 veil out of reinforced concrete

Code_Aster. SDNV114 Simulation of benchmark SAFE - T5 veil out of reinforced concrete Titre : SDNV114 Simulation du benchmark SAFE - voile T5 [...] Date : 03/05/2016 Page : 1/11 SDNV114 Simulation of benchmark SAFE - T5 veil out of reinforced concrete Summary: This test represents a simplified

More information

pyoptfem Documentation

pyoptfem Documentation pyoptfem Documentation Release V0.0.6 F. Cuvelier November 09, 2013 CONTENTS 1 Presentation 3 1.1 Classical assembly algorithm (base version).............................. 6 1.2 Sparse matrix requirement........................................

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

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

The Direct Stiffness Method II

The Direct Stiffness Method II The Direct Stiffness Method II Chapter : THE DIRECT STIFFNESS METHOD II TABLE OF CONTENTS Page. The Remaining DSM Steps.................2 Assembly: Merge....................2. Governing Rules.................2.2

More information

Introduction to Finite Element Analysis Using Pro/MECHANICA Wildfire 5.0

Introduction to Finite Element Analysis Using Pro/MECHANICA Wildfire 5.0 Introduction to Finite Element Analysis Using Pro/MECHANICA Wildfire 5.0 Randy H. Shih Oregon Institute of Technology SDC PUBLICATIONS Schroff Development Corporation www.schroff.com Better Textbooks.

More information

D : SOLID MECHANICS. Q. 1 Q. 9 carry one mark each.

D : SOLID MECHANICS. Q. 1 Q. 9 carry one mark each. GTE 2016 Q. 1 Q. 9 carry one mark each. D : SOLID MECHNICS Q.1 single degree of freedom vibrating system has mass of 5 kg, stiffness of 500 N/m and damping coefficient of 100 N-s/m. To make the system

More information

A.0 IDUKKI ARCH DAM - ANALYSIS FOR VARIOUS LOAD CASES AND DISCRETISATIONS

A.0 IDUKKI ARCH DAM - ANALYSIS FOR VARIOUS LOAD CASES AND DISCRETISATIONS Annexure A.0 IDUKKI ARCH DAM - ANALYSIS FOR VARIOUS LOAD CASES AND DISCRETISATIONS In this Annexure, Idukki arch dam chosen for case study is analyzed with the developed program for various load conditions

More information

F.M. with Finite Element analysis - Different calculation techniques + Numerical examples (ANSYS Apdl) 2/2

F.M. with Finite Element analysis - Different calculation techniques + Numerical examples (ANSYS Apdl) 2/2 Task 6 - Safety Review and Licensing On the Job Training on Stress Analysis F.M. with Finite Element analysis - Different calculation techniques + Numerical examples (ANSYS Apdl) 2/2 Davide Mazzini Ciro

More information

Fracture Behaviour of FRP Cross-Ply Laminate With Embedded Delamination Subjected To Transverse Load

Fracture Behaviour of FRP Cross-Ply Laminate With Embedded Delamination Subjected To Transverse Load Fracture Behaviour of FRP Cross-Ply Laminate With Embedded Delamination Subjected To Transverse Load Sriram Chintapalli 1, S.Srilakshmi 1 1 Dept. of Mech. Engg., P. V. P. Siddhartha Institute of Technology.

More information

A First Course on Kinetics and Reaction Engineering Example S5.1

A First Course on Kinetics and Reaction Engineering Example S5.1 Example S5.1 Problem Purpose This example illustrates the use of the MATLAB template file SolvBVDif.m to solve a second order boundary value ordinary differential equation. Problem Statement Solve the

More information