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

Size: px
Start display at page:

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

Transcription

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

2 Lecture overview What is usermat.f used for? Stress, strain and material Jacobian matrix How is usermat.f used? usermat.f restrictions Example of application Where to find additional information 2

3 What is usermat.f used for? The usermat.f subroutine allows writing the stress-strain relationship of a material and applies to any analysis procedure involving mechanical behaviour. The ANSYS installation includes an example which corresponds to a plasticity model, which is the same as TB,BISO, for different stress states and that can be used as reference. Such a routine can be found in the following folder: \ANSYS Inc\v150\ansys\customize\user 3

4 Stress, strain and material Jacobian matrix The stress measure (σ) used by the subroutine is the Cauchy stress (true stress), and the strain measure (ε) is the logarithmic strain (true strain). The strains and incremental strains passed into usermat.f are the total mechanical strains from which the thermal strains (if they exist) are subtracted. usermat.f must also provide the material Jacobian matrix defined as: Jacobian = σ ε ij ij being σ ε ij ij the stress increment the strain increment 4

5 Stress, strain and material Jacobian matrix One important remark to mention is that ANSYS outputs engineering shear strains whether NLGEOM is ON or OFF. This is true for usermat.f as well. Engineering shear strains are twice the tensor shear strains. 5

6 Stress, strain and material Jacobian matrix usermat.f is based on the current configuration for nonlinear geometry analysis (NLGEOM,ON). The program uses a co-rotational approach to account for rigid body rotation. Because the program already accounts for the strains passed into usermat.f for the rigid body rotation, there is no need to apply additional rotation within usermat.f. The subroutine is called at every material integration point of the elements during the solution phase. The program passes in stresses, strains, and state variable values at the beginning of the time increment and strain increment at the current increment, then updates the stresses and state variables to the appropriate values at the end of the time increment. 6

7 Stress, strain and material Jacobian matrix usermat.f assumes use of a nonlinear constitutive model, so results are copied from integration points to nodes. In MAPDL, for linear elastic materials (or if stress value < yield stress value), the default is to extrapolate stresses and strains from integration points to nodes. Consequently, when comparing results for usermat.f with linear elastic materials, differences may be seen. Therefore, to make the comparison valid, one should use the APDL command ERESX,NO to force copying stresses and strains at integration points to nodes, even for linear elastic materials. There is no way, currently, to have usermat.f extrapolate stresses and strains from integration points to nodes (they are always copied). However, it is possible to do so in UserElem.F (explained in Lecture 7). 7

8 Stress, strain and material Jacobian matrix Stress, strain, and the material Jacobian tensors are stored in a vector or matrix format. In particular, the order of components for all tensors is as follows: 8

9 Stress, strain and material Jacobian matrix The order of components for the material Jacobian matrix is as follows: 9

10 How is usermat.f used? The file usermat.f consists of 4 routines which are called depending on the corresponding stress state. Below is a list of such 4 routines with a brief description of the stress/strain state as well as finite elements they can be used in conjunction with: usermat3d usermatps usermatbm usermat1d 3D solid elements or plane elements in plane strain or axisymmetric stress state plane stress states (such as PLANE182, PLANE183 or SHELL181) 3D beam elements (BEAM188, BEAM189) 1D truss elements (LINK180) 10

11 How is usermat.f used? Main input arguments are listed below: Number of state variables to be defined with TB,STATE command Number of material properties to be defined with TB,USER command T T t ε t ε Vector of material properties F F t t + t 11

12 How is usermat.f used? Main input/output arguments are listed below: Stress at time to be updated at time t t + t State variables at time to be updated at time t t + t 12

13 How is usermat.f used? Main output arguments are listed below: Bisection occurs if user routine does not converge material Jacobian matrix 13

14 usermat.f restrictions The following restrictions apply to the usermat.f subroutine: The subroutine supports current-technology elements only and is not applicable to legacy elements. Details on current-technology elements can be found here: ANSYS Documentation > Mechanical APDL > Element Reference > 2. Element Classifications > 2.4. Current-Technology Elements The subroutine usermat.f is not applicable to legacy elements for which dedicated subroutines should be used instead. Further information is available in the online documentation: ANSYS Documentation > Mechanical APDL > Feature Archive > IV. Legacy Elements 14

15 usermat.f restrictions State variables (defined via the TB,STATE command) are supported only by full graphics in the POST1 postprocessor; The subroutine is not intended for modelling incompressible elastic materials (*), such as hyperelastic materials. A special treatment such as a penalty approach may be needed to ensure incompressibility. In any case, if the material exhibits nearly incompressible behavior, use a finite tangent bulk modulus. (*) Fully-incompressible materials can be modeled using the subroutine UserHyper.F, which will be described in Lecture 5. 15

16 Example of application A simple bilinear plasticity material model, identical to TB,BISO, is used to demonstrate the user material subroutine usermat.f. The example is a two-element test case under simple tension. Element 1 has material defined using the TB,BISO option, while Element 2 has material defined using the TB,USER option. A 100% deformation is applied to both elements. Finite deformation (NLGEOM,ON) is considered. The /POST26 processor results of stress components and plastic strain components are printed for both elements and are expected to be the same. 16

17 Example of application Below is the description of the APDL syntax needed to use usermat.f. In this specific example the user material was assigned to material #2 and its mechanical properties, namely Young s modulus, Poisson s ratio, yielding stress and tangent modulus, are temperature-dependent. The number of state variables is 8. TB,USER,2,2,4 TBTEMP,1.0 TBDATA,1,190000,0.3,100,10 TBTEMP,2.0 TBDATA,1,210000,0.3,200,10 TB,STATE,2,,8 17

18 Example of application Output information: TB,BISO vs. TB,USER Information regarding the number of state variables, inputted using the TB,STATE syntax, is provided as well: 18

19 Example of application /POST26 output: results are identical 19

20 Example of application In order to be able to get the values of the state variables, the following APDL command should be inserted at the /SOLU processor level: OUTRES,SVAR,ALL In particular, the option ALL allows writing the results for every substep. Also, it might be convenient to print the values of the state variables (8 in this example) in the output file. This can be achieved by means of the following do-loop to be inserted at the /POST1 processor level: *DO,AR99,1,8 PRESOL,SVAR,AR99 *ENDDO 20

21 Example of application Below is the list of the state variables utilized in this example: SVAR > SVAR > SVAR > SVAR > SVAR > SVAR > SVAR > SVAR > Equivalent plastic strain X component of plastic strain Y component of plastic strain Z component of plastic strain XY component of plastic strain YZ component of plastic strain XZ component of plastic strain von Mises stress as also specified in the subroutine usermat3d: 21

22 Example of application /POST1 output: printout of state variable #1 (equivalent plastic strain) at last substep. 22

23 Example of application State variables can also be plotted (the first one in this example). This can be done by means of the following APDL command: PLESOL,SVAR,1 However, it is worth mentioning that this is not supported by PowerGraphics. Therefore there is the need to insert the /GRAPH,FULL command in the script. We can also print/plot the evolution of the state variables by utilizing this undocumented APDL command: ESOL,,,,SVAR,1 PRVAR,1 (or PLVAR,1 to plot) 23

24 Example of application /POST26 output: graph of the evolution of state variable #1 (equivalent plastic strain)

25 Example of application /POST26 output: printout of the evolution of state variable #1 (equivalent plastic strain). 25

26 Example of application /POST1 output: contour plot of the equivalent plastic strain at last substep. We notice that the results are identical for both models. APDL commands: /POST1 PLESOL,NL,EPEQ,0,1.0 (A) structure with TB,BISO material model (A) (B) (B) structure with user-defined elasto-plastic material model 26

27 Example of application /POST1 output: contour plot of state variable #1 (equivalent plastic strain) at last substep. We notice that it is non-zero only when considering the structure (cube on the right) with the user-defined routine. APDL commands: /POST1 PLESOL,SVAR,1 (A) structure with TB,BISO material model (A) (B) (B) structure with user-defined elasto-plastic material model 27

28 Where to find additional information Additional information on rate-independent plasticity can be found in the online manual: ANSYS Documentation > Mechanical APDL > Material Reference > 3. Material Models // 3.4. Rate-Independent Plasticity ANSYS Documentation > Mechanical APDL > Theory Reference > 4. Structures with Material Nonlinearities > 4.2. Rate-Independent Plasticity ANSYS Documentation > Mechanical APDL > Structural Analysis Guide > 8. Nonlinear Structural Analysis > 8.4. Modeling Material Nonlinearities Also, the ANSYS training course ANSYS Mechanical Advanced Nonlinear Materials provides detailed information regarding plasticity and, in this respect, it is recommended. 28

29 Where to find additional information Another usage example of the usermat subroutine is available in the online documentation, precisely in Chapter 40 of the Technology Demonstration Guide: ANSYS Documentation > Mechanical APDL > Technology Demonstration Guide > 40. Large-Deformation Neo-Hookean Analysis (via UserMat Subroutine) The problem formulates a 3-D large deformation, hyperelastic material to demonstrate the user material capability in nonlinear geometry analyses. Details are given for stress and material tangent calculations and formulation in a co-rotated frame, as well as conversion of tensor quantities to Voigt notation. 29

Chaboche Nonlinear Kinematic Hardening Model

Chaboche Nonlinear Kinematic Hardening Model Model Sheldon Imaoka Memo Number: STI85A ANSYS Release:.. May 4, 8 Introduction The Chaboche nonlinear kinematic hardening model was added in ANSYS 5.6 to complement the existing isotropic and kinematic

More information

ANSYS Mechanical Basic Structural Nonlinearities

ANSYS Mechanical Basic Structural Nonlinearities Lecture 4 Rate Independent Plasticity ANSYS Mechanical Basic Structural Nonlinearities 1 Chapter Overview The following will be covered in this Chapter: A. Background Elasticity/Plasticity B. Yield Criteria

More information

User-Materials in ANSYS

User-Materials in ANSYS User-Materials in ANSYS Holzapfel-Model l lfor Soft Tissues Prof. Dr.-Ing A. Fritsch Possibilities of user programming ANSYS User Programmable Features (UPF) are capabilities you can use to write your

More information

Theoretical Manual Theoretical background to the Strand7 finite element analysis system

Theoretical Manual Theoretical background to the Strand7 finite element analysis system Theoretical Manual Theoretical background to the Strand7 finite element analysis system Edition 1 January 2005 Strand7 Release 2.3 2004-2005 Strand7 Pty Limited All rights reserved Contents Preface Chapter

More information

Lecture #6: 3D Rate-independent Plasticity (cont.) Pressure-dependent plasticity

Lecture #6: 3D Rate-independent Plasticity (cont.) Pressure-dependent plasticity Lecture #6: 3D Rate-independent Plasticity (cont.) Pressure-dependent plasticity by Borja Erice and Dirk Mohr ETH Zurich, Department of Mechanical and Process Engineering, Chair of Computational Modeling

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

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

Computational Inelasticity FHLN05. Assignment A non-linear elasto-plastic problem

Computational Inelasticity FHLN05. Assignment A non-linear elasto-plastic problem Computational Inelasticity FHLN05 Assignment 2017 A non-linear elasto-plastic problem General instructions A written report should be submitted to the Division of Solid Mechanics no later than October

More information

CAEFEM v9.5 Information

CAEFEM v9.5 Information CAEFEM v9.5 Information Concurrent Analysis Corporation, 50 Via Ricardo, Thousand Oaks, CA 91320 USA Tel. (805) 375 1060, Fax (805) 375 1061 email: info@caefem.com or support@caefem.com Web: http://www.caefem.com

More information

Course in. Geometric nonlinearity. Nonlinear FEM. Computational Mechanics, AAU, Esbjerg

Course in. Geometric nonlinearity. Nonlinear FEM. Computational Mechanics, AAU, Esbjerg Course in Nonlinear FEM Geometric nonlinearity Nonlinear FEM Outline Lecture 1 Introduction Lecture 2 Geometric nonlinearity Lecture 3 Material nonlinearity Lecture 4 Material nonlinearity it continued

More information

MODIFICATION IN ADINA SOFTWARE FOR ZAHORSKI MATERIAL

MODIFICATION IN ADINA SOFTWARE FOR ZAHORSKI MATERIAL MODIFICATION IN ADINA SOFTWARE FOR ZAHORSKI MATERIAL Major Maciej Major Izabela Czestochowa University of Technology, Faculty of Civil Engineering, Address ul. Akademicka 3, Częstochowa, Poland e-mail:

More information

The Finite Element Method II

The Finite Element Method II [ 1 The Finite Element Method II Non-Linear finite element Use of Constitutive Relations Xinghong LIU Phd student 02.11.2007 [ 2 Finite element equilibrium equations: kinematic variables Displacement Strain-displacement

More information

3D Elasticity Theory

3D Elasticity Theory 3D lasticity Theory Many structural analysis problems are analysed using the theory of elasticity in which Hooke s law is used to enforce proportionality between stress and strain at any deformation level.

More information

The Finite Element Method for Mechonics of Solids with ANSYS Applicotions

The Finite Element Method for Mechonics of Solids with ANSYS Applicotions The Finite Element Method for Mechonics of Solids with ANSYS Applicotions ELLIS H. DILL 0~~F~~~~"P Boca Raton London New Vork CRC Press is an imprint 01 the Taylor & Francis Group, an Informa business

More information

MATERIAL ELASTIC HERRMANN INCOMPRESSIBLE command.

MATERIAL ELASTIC HERRMANN INCOMPRESSIBLE command. MATERIAL ELASTIC HERRMANN INCOMPRESSIBLE command Synopsis The MATERIAL ELASTIC HERRMANN INCOMPRESSIBLE command is used to specify the parameters associated with an isotropic, linear elastic material idealization

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

ENGN 2290: Plasticity Computational plasticity in Abaqus

ENGN 2290: Plasticity Computational plasticity in Abaqus ENGN 229: Plasticity Computational plasticity in Abaqus The purpose of these exercises is to build a familiarity with using user-material subroutines (UMATs) in Abaqus/Standard. Abaqus/Standard is a finite-element

More information

DEVELOPMENT OF A CONTINUUM PLASTICITY MODEL FOR THE COMMERCIAL FINITE ELEMENT CODE ABAQUS

DEVELOPMENT OF A CONTINUUM PLASTICITY MODEL FOR THE COMMERCIAL FINITE ELEMENT CODE ABAQUS DEVELOPMENT OF A CONTINUUM PLASTICITY MODEL FOR THE COMMERCIAL FINITE ELEMENT CODE ABAQUS Mohsen Safaei, Wim De Waele Ghent University, Laboratory Soete, Belgium Abstract The present work relates to the

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

Constitutive models: Incremental plasticity Drücker s postulate

Constitutive models: Incremental plasticity Drücker s postulate Constitutive models: Incremental plasticity Drücker s postulate if consistency condition associated plastic law, associated plasticity - plastic flow law associated with the limit (loading) surface Prager

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

MODELING OF ELASTO-PLASTIC MATERIALS IN FINITE ELEMENT METHOD

MODELING OF ELASTO-PLASTIC MATERIALS IN FINITE ELEMENT METHOD MODELING OF ELASTO-PLASTIC MATERIALS IN FINITE ELEMENT METHOD Andrzej Skrzat, Rzeszow University of Technology, Powst. Warszawy 8, Rzeszow, Poland Abstract: User-defined material models which can be used

More information

MATERIAL ELASTIC ANISOTROPIC command

MATERIAL ELASTIC ANISOTROPIC command MATERIAL ELASTIC ANISOTROPIC command.. Synopsis The MATERIAL ELASTIC ANISOTROPIC command is used to specify the parameters associated with an anisotropic linear elastic material idealization. Syntax The

More information

Lecture 8. Stress Strain in Multi-dimension

Lecture 8. Stress Strain in Multi-dimension Lecture 8. Stress Strain in Multi-dimension Module. General Field Equations General Field Equations [] Equilibrium Equations in Elastic bodies xx x y z yx zx f x 0, etc [2] Kinematics xx u x x,etc. [3]

More information

Module 4 : Nonlinear elasticity Lecture 25 : Inflation of a baloon. The Lecture Contains. Inflation of a baloon

Module 4 : Nonlinear elasticity Lecture 25 : Inflation of a baloon. The Lecture Contains. Inflation of a baloon Lecture 25 : Inflation of a baloon The Lecture Contains Inflation of a baloon 1. Topics in finite elasticity: Hyperelasticity of rubber, elastomers, and biological tissues with examples, M. F Beatty, App.

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

Project. First Saved Monday, June 27, 2011 Last Saved Wednesday, June 29, 2011 Product Version 13.0 Release

Project. First Saved Monday, June 27, 2011 Last Saved Wednesday, June 29, 2011 Product Version 13.0 Release Project First Saved Monday, June 27, 2011 Last Saved Wednesday, June 29, 2011 Product Version 13.0 Release Contents Units Model (A4, B4) o Geometry! Solid Bodies! Parts! Parts! Body Groups! Parts! Parts

More information

ALGORITHM FOR NON-PROPORTIONAL LOADING IN SEQUENTIALLY LINEAR ANALYSIS

ALGORITHM FOR NON-PROPORTIONAL LOADING IN SEQUENTIALLY LINEAR ANALYSIS 9th International Conference on Fracture Mechanics of Concrete and Concrete Structures FraMCoS-9 Chenjie Yu, P.C.J. Hoogenboom and J.G. Rots DOI 10.21012/FC9.288 ALGORITHM FOR NON-PROPORTIONAL LOADING

More information

Settlement and Bearing Capacity of a Strip Footing. Nonlinear Analyses

Settlement and Bearing Capacity of a Strip Footing. Nonlinear Analyses Settlement and Bearing Capacity of a Strip Footing Nonlinear Analyses Outline 1 Description 2 Nonlinear Drained Analysis 2.1 Overview 2.2 Properties 2.3 Loads 2.4 Analysis Commands 2.5 Results 3 Nonlinear

More information

The following syntax is used to describe a typical irreducible continuum element:

The following syntax is used to describe a typical irreducible continuum element: ELEMENT IRREDUCIBLE T7P0 command.. Synopsis The ELEMENT IRREDUCIBLE T7P0 command is used to describe all irreducible 7-node enhanced quadratic triangular continuum elements that are to be used in mechanical

More information

Abstract. 1 Introduction

Abstract. 1 Introduction Contact analysis for the modelling of anchors in concrete structures H. Walter*, L. Baillet** & M. Brunet* *Laboratoire de Mecanique des Solides **Laboratoire de Mecanique des Contacts-CNRS UMR 5514 Institut

More information

Constitutive models. Constitutive model: determines P in terms of deformation

Constitutive models. Constitutive model: determines P in terms of deformation Constitutive models Constitutive model: determines P in terms of deformation Elastic material: P depends only on current F Hyperelastic material: work is independent of path strain energy density function

More information

Mechanics PhD Preliminary Spring 2017

Mechanics PhD Preliminary Spring 2017 Mechanics PhD Preliminary Spring 2017 1. (10 points) Consider a body Ω that is assembled by gluing together two separate bodies along a flat interface. The normal vector to the interface is given by n

More information

Stresses Analysis of Petroleum Pipe Finite Element under Internal Pressure

Stresses Analysis of Petroleum Pipe Finite Element under Internal Pressure ISSN : 48-96, Vol. 6, Issue 8, ( Part -4 August 06, pp.3-38 RESEARCH ARTICLE Stresses Analysis of Petroleum Pipe Finite Element under Internal Pressure Dr.Ragbe.M.Abdusslam Eng. Khaled.S.Bagar ABSTRACT

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

Constitutive Relations

Constitutive Relations Constitutive Relations Dr. Andri Andriyana Centre de Mise en Forme des Matériaux, CEMEF UMR CNRS 7635 École des Mines de Paris, 06904 Sophia Antipolis, France Spring, 2008 Outline Outline 1 Review of field

More information

Computational Materials Modeling FHLN05 Computer lab

Computational Materials Modeling FHLN05 Computer lab Motivation Computational Materials Modeling FHLN05 Computer lab In the basic Finite Element (FE) course, the analysis is restricted to materials where the relationship between stress and strain is linear.

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

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

The Finite Element Method for the Analysis of Non-Linear and Dynamic Systems. Prof. Dr. Eleni Chatzi Lecture ST1-19 November, 2015

The Finite Element Method for the Analysis of Non-Linear and Dynamic Systems. Prof. Dr. Eleni Chatzi Lecture ST1-19 November, 2015 The Finite Element Method for the Analysis of Non-Linear and Dynamic Systems Prof. Dr. Eleni Chatzi Lecture ST1-19 November, 2015 Institute of Structural Engineering Method of Finite Elements II 1 Constitutive

More information

THE BEHAVIOUR OF REINFORCED CONCRETE AS DEPICTED IN FINITE ELEMENT ANALYSIS.

THE BEHAVIOUR OF REINFORCED CONCRETE AS DEPICTED IN FINITE ELEMENT ANALYSIS. THE BEHAVIOUR OF REINFORCED CONCRETE AS DEPICTED IN FINITE ELEMENT ANALYSIS. THE CASE OF A TERRACE UNIT. John N Karadelis 1. INTRODUCTION. Aim to replicate the behaviour of reinforced concrete in a multi-scale

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

CVEEN 7330 Modeling Exercise 2c

CVEEN 7330 Modeling Exercise 2c CVEEN 7330 Modeling Exercise 2c Table of Contents Table of Contents... 1 Objectives:... 2 FLAC Input:... 2 DEEPSOIL INPUTS:... 5 Required Outputs from FLAC:... 6 Required Output from DEEPSOIL:... 6 Additional

More information

ELASTICITY (MDM 10203)

ELASTICITY (MDM 10203) LASTICITY (MDM 10203) Lecture Module 5: 3D Constitutive Relations Dr. Waluyo Adi Siswanto University Tun Hussein Onn Malaysia Generalised Hooke's Law In one dimensional system: = (basic Hooke's law) Considering

More information

Computational Inelasticity FHLN05. Assignment A non-linear elasto-plastic problem

Computational Inelasticity FHLN05. Assignment A non-linear elasto-plastic problem Computational Inelasticity FHLN05 Assignment 2018 A non-linear elasto-plastic problem General instructions A written report should be submitted to the Division of Solid Mechanics no later than November

More information

Hyperbolic Soil Bearing Capacity

Hyperbolic Soil Bearing Capacity 1 Introduction Hyperbolic Soil Bearing Capacity This example involves analyzing the bearing capacity of a round footing. The example is useful for illustrating several SIGMA/W features and procedures,

More information

USER S MANUAL 1D Seismic Site Response Analysis Example University of California: San Diego August 30, 2017

USER S MANUAL 1D Seismic Site Response Analysis Example   University of California: San Diego August 30, 2017 USER S MANUAL 1D Seismic Site Response Analysis Example http://www.soilquake.net/ucsdsoilmodels/ University of California: San Diego August 30, 2017 Table of Contents USER'S MANUAL TABLE OF CONTENTS Page

More information

MATERIAL MECHANICS, SE2126 COMPUTER LAB 2 PLASTICITY

MATERIAL MECHANICS, SE2126 COMPUTER LAB 2 PLASTICITY MATERIAL MECHANICS, SE2126 COMPUTER LAB 2 PLASTICITY PART A INTEGRATED CIRCUIT An integrated circuit can be thought of as a very complex maze of electronic components and metallic connectors. These connectors

More information

Finite Element Solutions for Geotechnical Engineering

Finite Element Solutions for Geotechnical Engineering Release Notes Release Date: July, 2015 Product Ver.: GTSNX 2015 (v2.1) Integrated Solver Optimized for the next generation 64-bit platform Finite Element Solutions for Geotechnical Engineering Enhancements

More information

2008 International ANSYS Conference

2008 International ANSYS Conference 2008 International ANSYS Conference Study of Nonlinear Parametric Response in a Beam using ANSYS Satish Remala, John Baker, and Suzanne Smith University of Kentucky 2008 ANSYS, Inc. All rights reserved.

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

Lecture 7. Pile Analysis

Lecture 7. Pile Analysis Lecture 7 14.5 Release Pile Analysis 2012 ANSYS, Inc. February 9, 2013 1 Release 14.5 Pile definition in Mechanical - There are a number of methods that can be used to analyze piled foundations in ANSYS

More information

You may not start to read the questions printed on the subsequent pages until instructed to do so by the Invigilator.

You may not start to read the questions printed on the subsequent pages until instructed to do so by the Invigilator. MATHEMATICAL TRIPOS Part III Thursday 1 June 2006 1.30 to 4.30 PAPER 76 NONLINEAR CONTINUUM MECHANICS Attempt FOUR questions. There are SIX questions in total. The questions carry equal weight. STATIONERY

More information

Chapter 5. Vibration Analysis. Workbench - Mechanical Introduction ANSYS, Inc. Proprietary 2009 ANSYS, Inc. All rights reserved.

Chapter 5. Vibration Analysis. Workbench - Mechanical Introduction ANSYS, Inc. Proprietary 2009 ANSYS, Inc. All rights reserved. Workbench - Mechanical Introduction 12.0 Chapter 5 Vibration Analysis 5-1 Chapter Overview In this chapter, performing free vibration analyses in Simulation will be covered. In Simulation, performing a

More information

A Numerical Study of Finite Element Calculations for Incompressible Materials under Applied Boundary Displacements

A Numerical Study of Finite Element Calculations for Incompressible Materials under Applied Boundary Displacements A Numerical Study of Finite Element Calculations for Incompressible Materials under Applied Boundary Displacements A Thesis Submitted to the College of Graduate Studies and Research in Partial Fulfillment

More information

Modelling Anisotropic, Hyperelastic Materials in ABAQUS

Modelling Anisotropic, Hyperelastic Materials in ABAQUS Modelling Anisotropic, Hyperelastic Materials in ABAQUS Salvatore Federico and Walter Herzog Human Performance Laboratory, Faculty of Kinesiology, The University of Calgary 2500 University Drive NW, Calgary,

More information

in this web service Cambridge University Press

in this web service Cambridge University Press CONTINUUM MECHANICS This is a modern textbook for courses in continuum mechanics. It provides both the theoretical framework and the numerical methods required to model the behavior of continuous materials.

More information

Solving the torsion problem for isotropic matrial with a rectangular cross section using the FEM and FVM methods with triangular elements

Solving the torsion problem for isotropic matrial with a rectangular cross section using the FEM and FVM methods with triangular elements Solving the torsion problem for isotropic matrial with a rectangular cross section using the FEM and FVM methods with triangular elements Nasser M. Abbasi. June 0, 04 Contents Introduction. Problem setup...................................

More information

USER S MANUAL 1D Seismic Site Response Analysis Example University of California: San Diego August 30, 2017

USER S MANUAL 1D Seismic Site Response Analysis Example   University of California: San Diego August 30, 2017 USER S MANUAL 1D Seismic Site Response Analysis Example http://www.soilquake.net/ucsdsoilmodels/ University of California: San Diego August 30, 2017 Table of Contents USER'S MANUAL TABLE OF CONTENTS Page

More information

2D Liquefaction Analysis for Bridge Abutment

2D Liquefaction Analysis for Bridge Abutment D Liquefaction Analysis for Bridge Abutment Tutorial by Angel Francisco Martinez Integrated Solver Optimized for the next generation 64-bit platform Finite Element Solutions for Geotechnical Engineering

More information

Permafrost Thawing and Deformations

Permafrost Thawing and Deformations 1 Introduction Permafrost Thawing and Deformations There is a huge interest in the effects of global warming on permafrost regions. One aspect of this is what degree of deformation may be expected if historically

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

(MPa) compute (a) The traction vector acting on an internal material plane with normal n ( e1 e

(MPa) compute (a) The traction vector acting on an internal material plane with normal n ( e1 e EN10: Continuum Mechanics Homework : Kinetics Due 1:00 noon Friday February 4th School of Engineering Brown University 1. For the Cauchy stress tensor with components 100 5 50 0 00 (MPa) compute (a) The

More information

IAP 2006: From nano to macro: Introduction to atomistic modeling techniques and application in a case study of modeling fracture of copper (1.

IAP 2006: From nano to macro: Introduction to atomistic modeling techniques and application in a case study of modeling fracture of copper (1. IAP 2006: From nano to macro: Introduction to atomistic modeling techniques and application in a case study of modeling fracture of copper (1.978 PDF) http://web.mit.edu/mbuehler/www/teaching/iap2006/intro.htm

More information

Dynamic Analysis in FEMAP. May 24 th, presented by Philippe Tremblay Marc Lafontaine

Dynamic Analysis in FEMAP. May 24 th, presented by Philippe Tremblay Marc Lafontaine Dynamic Analysis in FEMAP presented by Philippe Tremblay Marc Lafontaine marc.lafontaine@mayasim.com 514-951-3429 date May 24 th, 2016 Agenda NX Nastran Transient, frequency response, random, response

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

Predicting Fatigue Life with ANSYS Workbench

Predicting Fatigue Life with ANSYS Workbench Predicting Fatigue Life with ANSYS Workbench How To Design Products That Meet Their Intended Design Life Requirements Raymond L. Browell, P. E. Product Manager New Technologies ANSYS, Inc. Al Hancq Development

More information

4/14/11. Chapter 12 Static equilibrium and Elasticity Lecture 2. Condition for static equilibrium. Stability An object is in equilibrium:

4/14/11. Chapter 12 Static equilibrium and Elasticity Lecture 2. Condition for static equilibrium. Stability An object is in equilibrium: About Midterm Exam 3 When and where Thurs April 21 th, 5:45-7:00 pm Rooms: Same as Exam I and II, See course webpage. Your TA will give a brief review during the discussion session. Coverage: Chapts 9

More information

Macroscopic theory Rock as 'elastic continuum'

Macroscopic theory Rock as 'elastic continuum' Elasticity and Seismic Waves Macroscopic theory Rock as 'elastic continuum' Elastic body is deformed in response to stress Two types of deformation: Change in volume and shape Equations of motion Wave

More information

Mechanics of Earthquakes and Faulting

Mechanics of Earthquakes and Faulting Mechanics of Earthquakes and Faulting www.geosc.psu.edu/courses/geosc508 Overview Milestones in continuum mechanics Concepts of modulus and stiffness. Stress-strain relations Elasticity Surface and body

More information

BAR ELEMENT WITH VARIATION OF CROSS-SECTION FOR GEOMETRIC NON-LINEAR ANALYSIS

BAR ELEMENT WITH VARIATION OF CROSS-SECTION FOR GEOMETRIC NON-LINEAR ANALYSIS Journal of Computational and Applied Mechanics, Vol.., No. 1., (2005), pp. 83 94 BAR ELEMENT WITH VARIATION OF CROSS-SECTION FOR GEOMETRIC NON-LINEAR ANALYSIS Vladimír Kutiš and Justín Murín Department

More information

Finite Element Analysis of Compression of Thin, High Modulus, Cylindrical Shells with Low-Modulus Core

Finite Element Analysis of Compression of Thin, High Modulus, Cylindrical Shells with Low-Modulus Core Finite Element Analysis of Compression of Thin, High Modulus, Cylindrical Shells with Low-Modulus Core Robert S. Joseph Design Engineering Analysis Corporation, McMurray, PA ABSTRACT Long, cylindrical

More information

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

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

More information

MOOSE Workshop MOOSE-PF/MARMOT Training Mechanics Part Nashville, February 14th Daniel Schwen

MOOSE Workshop MOOSE-PF/MARMOT Training Mechanics Part Nashville, February 14th Daniel Schwen www.inl.gov MOOSE Workshop MOOSE-PF/MARMOT Training Mechanics Part Nashville, February 14th Daniel Schwen www.inl.gov III. Mechanics Mechanics Outline 1. Introduction 2. Tensor-based System 1. Compute

More information

University of Sheffield The development of finite elements for 3D structural analysis in fire

University of Sheffield The development of finite elements for 3D structural analysis in fire The development of finite elements for 3D structural analysis in fire Chaoming Yu, I. W. Burgess, Z. Huang, R. J. Plank Department of Civil and Structural Engineering StiFF 05/09/2006 3D composite structures

More information

Finite Element Simulation of the Liquid Silicon Oriented Crystallization in a Graphite Mold

Finite Element Simulation of the Liquid Silicon Oriented Crystallization in a Graphite Mold Finite Element Simulation of the Liquid Silicon Oriented Crystallization in a Graphite Mold Alexey I. Borovkov Vadim I. Suprun Computational Mechanics Laboratory, St. Petersburg State Technical University,

More information

STRAIN ASSESSMENT USFOS

STRAIN ASSESSMENT USFOS 1 STRAIN ASSESSMENT IN USFOS 2 CONTENTS: 1 Introduction...3 2 Revised strain calculation model...3 3 Strain predictions for various characteristic cases...4 3.1 Beam with concentrated load at mid span...

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

1 Slope Stability for a Cohesive and Frictional Soil

1 Slope Stability for a Cohesive and Frictional Soil Slope Stability for a Cohesive and Frictional Soil 1-1 1 Slope Stability for a Cohesive and Frictional Soil 1.1 Problem Statement A common problem encountered in engineering soil mechanics is the stability

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

Rock Rheology GEOL 5700 Physics and Chemistry of the Solid Earth

Rock Rheology GEOL 5700 Physics and Chemistry of the Solid Earth Rock Rheology GEOL 5700 Physics and Chemistry of the Solid Earth References: Turcotte and Schubert, Geodynamics, Sections 2.1,-2.4, 2.7, 3.1-3.8, 6.1, 6.2, 6.8, 7.1-7.4. Jaeger and Cook, Fundamentals of

More information

USER S MANUAL. 1D Seismic Site Response Analysis Example. University of California: San Diego.

USER S MANUAL. 1D Seismic Site Response Analysis Example.  University of California: San Diego. USER S MANUAL 1D Seismic Site Response Analysis Example http://www.soilquake.net/ucsdsoilmodels/ University of California: San Diego August 2, 2017 Table of Contents USER'S MANUAL TABLE OF CONTENTS Page

More information

Comparison of Models for Finite Plasticity

Comparison of Models for Finite Plasticity Comparison of Models for Finite Plasticity A numerical study Patrizio Neff and Christian Wieners California Institute of Technology (Universität Darmstadt) Universität Augsburg (Universität Heidelberg)

More information

Nonlinear Structural Materials Module

Nonlinear Structural Materials Module Nonlinear Structural Materials Module User s Guide VERSION 4.4 Nonlinear Structural Materials Module User s Guide 998 203 COMSOL Protected by U.S. Patents 7,59,58; 7,596,474; 7,623,99; and 8,457,932. Patents

More information

Estimating Structural Response to Random Vibration: Reaction Forces

Estimating Structural Response to Random Vibration: Reaction Forces Estimating Structural Response to Random Vibration: Reaction Forces Alex Grishin, Consulting Engineer PADT, Tempe AZ ANSYS Release 17.0 (January, 2016) Among the various enhancements, users may now estimate

More information

MECHANICS OF MATERIALS. EQUATIONS AND THEOREMS

MECHANICS OF MATERIALS. EQUATIONS AND THEOREMS 1 MECHANICS OF MATERIALS. EQUATIONS AND THEOREMS Version 2011-01-14 Stress tensor Definition of traction vector (1) Cauchy theorem (2) Equilibrium (3) Invariants (4) (5) (6) or, written in terms of principal

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

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

Nomenclature. Length of the panel between the supports. Width of the panel between the supports/ width of the beam

Nomenclature. Length of the panel between the supports. Width of the panel between the supports/ width of the beam omenclature a b c f h Length of the panel between the supports Width of the panel between the supports/ width of the beam Sandwich beam/ panel core thickness Thickness of the panel face sheet Sandwich

More information

BENCHMARK LINEAR FINITE ELEMENT ANALYSIS OF LATERALLY LOADED SINGLE PILE USING OPENSEES & COMPARISON WITH ANALYTICAL SOLUTION

BENCHMARK LINEAR FINITE ELEMENT ANALYSIS OF LATERALLY LOADED SINGLE PILE USING OPENSEES & COMPARISON WITH ANALYTICAL SOLUTION BENCHMARK LINEAR FINITE ELEMENT ANALYSIS OF LATERALLY LOADED SINGLE PILE USING OPENSEES & COMPARISON WITH ANALYTICAL SOLUTION Ahmed Elgamal and Jinchi Lu October 07 Introduction In this study: I) The response

More information

3.2 Hooke s law anisotropic elasticity Robert Hooke ( ) Most general relationship

3.2 Hooke s law anisotropic elasticity Robert Hooke ( ) Most general relationship 3.2 Hooke s law anisotropic elasticity Robert Hooke (1635-1703) Most general relationship σ = C ε + C ε + C ε + C γ + C γ + C γ 11 12 yy 13 zz 14 xy 15 xz 16 yz σ = C ε + C ε + C ε + C γ + C γ + C γ yy

More information

Example 37 - Analytical Beam

Example 37 - Analytical Beam Example 37 - Analytical Beam Summary This example deals with the use of RADIOSS linear and nonlinear solvers. A beam submitted to a concentrated load on one extremity and fixed on the other hand is studied.

More information

Exercise: concepts from chapter 8

Exercise: concepts from chapter 8 Reading: Fundamentals of Structural Geology, Ch 8 1) The following exercises explore elementary concepts associated with a linear elastic material that is isotropic and homogeneous with respect to elastic

More information

TRESS - STRAIN RELATIONS

TRESS - STRAIN RELATIONS TRESS - STRAIN RELATIONS Stress Strain Relations: Hook's law, states that within the elastic limits the stress is proportional to t is impossible to describe the entire stress strain curve with simple

More information

SEMM Mechanics PhD Preliminary Exam Spring Consider a two-dimensional rigid motion, whose displacement field is given by

SEMM Mechanics PhD Preliminary Exam Spring Consider a two-dimensional rigid motion, whose displacement field is given by SEMM Mechanics PhD Preliminary Exam Spring 2014 1. Consider a two-dimensional rigid motion, whose displacement field is given by u(x) = [cos(β)x 1 + sin(β)x 2 X 1 ]e 1 + [ sin(β)x 1 + cos(β)x 2 X 2 ]e

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

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

Nonlinear Buckling Prediction in ANSYS. August 2009

Nonlinear Buckling Prediction in ANSYS. August 2009 Nonlinear Buckling Prediction in ANSYS August 2009 Buckling Overview Prediction of buckling of engineering structures is a challenging problem for several reasons: A real structure contains imperfections

More information

Stress, Strain, Mohr s Circle

Stress, Strain, Mohr s Circle Stress, Strain, Mohr s Circle The fundamental quantities in solid mechanics are stresses and strains. In accordance with the continuum mechanics assumption, the molecular structure of materials is neglected

More information

Multi Linear Elastic and Plastic Link in SAP2000

Multi Linear Elastic and Plastic Link in SAP2000 26/01/2016 Marco Donà Multi Linear Elastic and Plastic Link in SAP2000 1 General principles Link object connects two joints, i and j, separated by length L, such that specialized structural behaviour may

More information