Aerospace Structural Composites I Homework 6. Anirban Chaudhuri

Size: px
Start display at page:

Download "Aerospace Structural Composites I Homework 6. Anirban Chaudhuri"

Transcription

1 Aerospace Structural Composites I Homework 6 Anirban Chaudhuri. The unidirectional Boron/Epoxy layer of Example 6.. (using E = 4GPa, E = 8.5GPa, G = 5.59GPa, =.3, t =.5mm) is to be loaded by combined axial and shear stresses with xy r. x Determine the strength of this layer based on the Tsai-Hill failure criterion as a function of the fiber orientation in the range o 9 o, and plot the strength for r =.5 and r =.. Typical strength properties of Boron/Epoxy layers are X t = 6MPa, X c = 5MPa, Y t = 6MPa, Y c = MPa, and S = 67MPa. Solution: The stresses in the principal direction can be found by using the equation (). m n mn x n m mn y mn mn m n xy () where, m=cos and n=sin. We have y = and xy = r x. So the principal stresses are given below. ( m rn ) x ( n rm ) x mn( r ) x () Tsai-Hill criterion is given in equation (3) [Eq. 6.. in book] (3) X Y X S t t t For the case of compressive loading the X t and Y t are replaced by X c and Y c respectively. The values found in equation () are substituted in equation (3) for both tensile and compressive loading case and the strengths are plotted for r =.5 and r =.. The strength ( x ) in each case is found by solving the equation (3) (after substituting the values) in MATLAB. The MATLAB code used for this purpose is given in Appendix I.

2 4 x 8 Strength under tensile loading for r =.5.5 x 9 Strength under compressive loading for r =.5 x 8 6 x (deg) (deg) (a) Tensile loading (b) Compressive loading Fig. : Strength for r =.5 under tensile and compressive loading x 8 Strength under tensile loading for r =..5 x 9 Strength under compressive loading for r = x 5 4 x (deg) (deg) (a) Tensile loading (b) Compressive loading Fig. : Strength for r =. under tensile and compressive loading. Derive the strength coefficients F, G, H, P, Q, R, L, M, and N for Hoffman s strength criterion y of Eq. (6..3). Plot the failure envelope and show the load limits under biaxial load. for Glass/Epoxy with the following properties. x

3 Elastic properties: E = 5.6e6psi, E =.e6psi, G =.6e6psi, =.6, t =.mm. Strength properties: Xt = 54e3psi, X c = 88.5e3psi, Y t = 4.5e3psi, Y c = 7.e3psi, and S =.4e3psi. Solution: The starting general equation for Hoffman criterion is given in equation (4). F( ) G( ) H( ) P Q R L M N (4) The coefficients are evaluated by matching criterion to results obtained under simple load conditions. The equations obtained for simple tensile and compressive tests are given in equation (5). ( F H) Xt PXt ( F H) Xc PXc ( F G) Yt QYt ( F G) Yc QYc ( H G) Yt RYt ( H G) Yc RYc (5) The failure stresses in the and 3 directions are both equal to Y t and Y c. The equations in equation (5) can be easily solved simultaneously to get the values of the coefficients as given below. F H, G X X YY X X P, Q R X X Y Y t c t c t c t c t c (6) Now considering simple shear tests it can be shown that LS3, or L S 3 MS, or M S NS, or N S 3 3 (7) Substituting the values of the coefficients obtained in equations (6) and (7) in equation (4) and using a plane stress criterion with 3 = 3 = 3 = we get, XX t c XX t c YY t c Xt Xc Yt Yc S (8)

4 Equation (8) is exactly the same as given in equation 6..3 in the book. To plot the failure envelope for Hoffman criteria is set to and then equation (8) is plotted using MATLAB (details are given in the MATLAB code provided in Appendix II). Now for a unidirectional ply aligned along the x-direction we can assume the biaxial stress criteria is equivalent to / =.. This is the equation of a straight line passing through the origin and it is also plotted on the failure envelope and the failure region is shown in figure 3. The safe region is shown as the shaded (gray) region in figure 3. Fig. 3: Hoffman criterion failure envelope and the failure region for the given biaxial loading APPENDIX I MATLAB code for problem % Anirban Chaudhuri % Aerospace Structural Composites I % HW 6 prob close all;clc;clear all;format short;format compact; % Initial Constants for the given materials E = 4e9; % Youngs Modulus for material E = 8.5e9; % Youngs Modulus for material G = 5.59e9; % Shear Modulus for the given materials

5 nu =.3; t =.5; % Poisson's Ratio for the given materials % individual ply thickness (m) (CAN BE ANY RANDOM NUMBER) theta = linspace(,9); th = theta.*pi./8; % Strength properties of Boron/Epoxy layers Xt = 6e6; Xc = 5e6; Yt = 6e6; Yc = e6; S = 67e6; r =.; % Distribution of strength of this layer based on Tsai-Hill criterion as a % function of the fiber orientation m = cos(th); n = sin(th); % For Tensile loading var_intert = (/Xt^)*(m.^+*m.*n.*r).^+(/Yt^)*(n.^-*m.*n.*r).^- (/Xt^)*(m.^+*m.*n.*r).*(n.^-*m.*n.*r)+(/S^)*(-m.*n+(m.^- n.^).*r).^; sigxt = sqrt(./var_intert); figure() plot(theta,sigxt,'linewidth',) xlabel('\theta (deg)') ylabel('\sigma_x ') title('strength under tensile loading for r =.') % For Compressive loading var_interc = (/Xc^)*(m.^+*m.*n.*r).^+(/Yc^)*(n.^-*m.*n.*r).^- (/Xc^)*(m.^+*m.*n.*r).*(n.^-*m.*n.*r)+(/S^)*(-m.*n+(m.^- n.^).*r).^; sigxc = sqrt(./var_interc); figure() plot(theta,sigxc,'linewidth',) xlabel('\theta (deg)') ylabel('\sigma_x ') title('strength under compressive loading for r =.') APPENDIX II MATLAB code for problem % Anirban Chaudhuri % Aerospace Structural Composites I % HW 6 prob close all;clc;clear all;format short;format compact; % Initial Constants for the given materials E = 5.6e6; % Youngs Modulus for material E =.e6; % Youngs Modulus for material G =.6e6; % Shear Modulus for the given materials

6 nu =.6; % Poisson's Ratio for the given materials t =.; % individual ply thickness (mm) theta = linspace(,9); th = theta.*pi./8; % Strength properties of Boron/Epoxy layers Xt = 54e3; Xc = 88.5e3; Yt = 4.5e3; Yc = 7.e3; S =.4e3; r =.; % The constants in the Hoffman criteria are evaluated below and the values are directly entered in the ezplot command C = /(Xt*Xc); C = /(Yt*Yc); C3 = (/Xt-/Xc); C4 = (/Yt-/Yc); C5 = /S^; figure() hold on; % Plotting the failure envelope ezplot('7.3373e-*x^ e-*x*y+.995e-8*y^-4.859e-6*x+.6374e-4*y- ',[-Xc-35e3,Xt+35e3,-Yc-5e3,Yt+5e3]) % Plotting the straight line sigma =.*sigma for the biaxial loading % This is true only for the case when the plies are aligned in the % x-direction ezplot('y-.*x',[-xc-35e3,xt+35e3,-yc,yt+5e3])

Getting Started with Composites Modeling and Analysis

Getting Started with Composites Modeling and Analysis Getting Started with Composites Modeling and Analysis IN THIS WEBINAR: PRESENTED BY: Orthotropic materials and how to define them Composite Laminate properties and modeling Composite failure theories and

More information

Chapter 2 - Macromechanical Analysis of a Lamina. Exercise Set. 2.1 The number of independent elastic constants in three dimensions are: 2.

Chapter 2 - Macromechanical Analysis of a Lamina. Exercise Set. 2.1 The number of independent elastic constants in three dimensions are: 2. Chapter - Macromechanical Analysis of a Lamina Exercise Set. The number of independent elastic constants in three dimensions are: Anisotropic Monoclinic 3 Orthotropic 9 Transversely Orthotropic 5 Isotropic.

More information

Stress, Strain Stress strain relationships for different types of materials Stress strain relationships for a unidirectional/bidirectional lamina

Stress, Strain Stress strain relationships for different types of materials Stress strain relationships for a unidirectional/bidirectional lamina Chapter 2 Macromechanical Analysis of a Lamina Stress, Strain Stress strain relationships for different types of materials Stress strain relationships for a unidirectional/bidirectional lamina Islamic

More information

ME 582 Advanced Materials Science. Chapter 2 Macromechanical Analysis of a Lamina (Part 2)

ME 582 Advanced Materials Science. Chapter 2 Macromechanical Analysis of a Lamina (Part 2) ME 582 Advanced Materials Science Chapter 2 Macromechanical Analysis of a Lamina (Part 2) Laboratory for Composite Materials Research Department of Mechanical Engineering University of South Alabama, Mobile,

More information

Aerospace Structural Composites I Homework 5. Anirban Chaudhuri

Aerospace Structural Composites I Homework 5. Anirban Chaudhuri Aerospace Structural Composites I Homework 5 Airba Chaudhuri. Expad your MATLAB routies to calculate also the B ad D matrices ad check it o Example 2.4.2, usig E = 3.6GPa, E 2 =.27GPa, G 2 = 4.4GPa, 2

More information

QUESTION BANK Composite Materials

QUESTION BANK Composite Materials QUESTION BANK Composite Materials 1. Define composite material. 2. What is the need for composite material? 3. Mention important characterits of composite material 4. Give examples for fiber material 5.

More information

TABLE OF CONTENTS. Mechanics of Composite Materials, Second Edition Autar K Kaw University of South Florida, Tampa, USA

TABLE OF CONTENTS. Mechanics of Composite Materials, Second Edition Autar K Kaw University of South Florida, Tampa, USA Mechanics of Composite Materials, Second Edition Autar K Kaw University of South Florida, Tampa, USA TABLE OF CONTENTS 1. INTRODUCTION TO COMPOSITE MATERIALS 1.1 Introduction... 1.2 Classification... 1.2.1

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

LAMINATION THEORY FOR THE STRENGTH OF FIBER COMPOSITE MATERIALS

LAMINATION THEORY FOR THE STRENGTH OF FIBER COMPOSITE MATERIALS XXII. LAMINATION THEORY FOR THE STRENGTH OF FIBER COMPOSITE MATERIALS Introduction The lamination theory for the elastic stiffness of fiber composite materials is the backbone of the entire field, it holds

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

Mechanics of Composite Materials, Second Edition Autar K Kaw University of South Florida, Tampa, USA

Mechanics of Composite Materials, Second Edition Autar K Kaw University of South Florida, Tampa, USA Mechanics of Composite Materials, Second Edition Autar K Kaw University of South Florida, Tampa, USA What programs are in PROMAL? Master Menu The master menu screen with five separate applications from

More information

Geology 229 Engineering Geology. Lecture 5. Engineering Properties of Rocks (West, Ch. 6)

Geology 229 Engineering Geology. Lecture 5. Engineering Properties of Rocks (West, Ch. 6) Geology 229 Engineering Geology Lecture 5 Engineering Properties of Rocks (West, Ch. 6) Common mechanic properties: Density; Elastic properties: - elastic modulii Outline of this Lecture 1. Uniaxial rock

More information

DYNAMIC FAILURE ANALYSIS OF LAMINATED COMPOSITE PLATES

DYNAMIC FAILURE ANALYSIS OF LAMINATED COMPOSITE PLATES Association of Metallurgical Engineers of Serbia AMES Scientific paper UDC:669.1-419:628.183=20 DYNAMIC FAILURE ANALYSIS OF LAMINATED COMPOSITE PLATES J. ESKANDARI JAM 1 and N. GARSHASBI NIA 2 1- Aerospace

More information

Smart Materials, Adaptive Structures, and Intelligent Mechanical Systems

Smart Materials, Adaptive Structures, and Intelligent Mechanical Systems Smart Materials, Adaptive Structures, and Intelligent Mechanical Systems Bishakh Bhattacharya & Nachiketa Tiwari Indian Institute of Technology Kanpur Lecture 19 Analysis of an Orthotropic Ply References

More information

Critical Load columns buckling critical load

Critical Load columns buckling critical load Buckling of Columns Buckling of Columns Critical Load Some member may be subjected to compressive loadings, and if these members are long enough to cause the member to deflect laterally or sideway. To

More information

PRELIMINARY PREDICTION OF SPECIMEN PROPERTIES CLT and 1 st order FEM analyses

PRELIMINARY PREDICTION OF SPECIMEN PROPERTIES CLT and 1 st order FEM analyses OPTIMAT BLADES Page 1 of 24 PRELIMINARY PREDICTION OF SPECIMEN PROPERTIES CLT and 1 st order FEM analyses first issue Peter Joosse CHANGE RECORD Issue/revision date pages Summary of changes draft 24-10-02

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

PLY LEVEL UNCERTAINTY EFFECTS ON FAILURE OF COMPOSITE

PLY LEVEL UNCERTAINTY EFFECTS ON FAILURE OF COMPOSITE 7th European Workshop on Structural Health Monitoring July 8-11, 2014. La Cité, Nantes, France More Info at Open Access Database www.ndt.net/?id=17206 PLY LEVEL UNCERTAINTY EFFECTS ON FAILURE OF COMPOSITE

More information

Effect of Thermal Stresses on the Failure Criteria of Fiber Composites

Effect of Thermal Stresses on the Failure Criteria of Fiber Composites Effect of Thermal Stresses on the Failure Criteria of Fiber Composites Martin Leong * Institute of Mechanical Engineering Aalborg University, Aalborg, Denmark Bhavani V. Sankar Department of Mechanical

More information

Prediction of The Ultimate Strength of Composite Laminates Under In-Plane Loading Using A Probabilistic Approach

Prediction of The Ultimate Strength of Composite Laminates Under In-Plane Loading Using A Probabilistic Approach Prediction of the Ultimate Strength of Composite Laminates Under In-Plane Loading Prediction of The Ultimate Strength of Composite Laminates Under In-Plane Loading Using A Probabilistic Approach Tae Jin

More information

Enhancing Prediction Accuracy In Sift Theory

Enhancing Prediction Accuracy In Sift Theory 18 TH INTERNATIONAL CONFERENCE ON COMPOSITE MATERIALS Enhancing Prediction Accuracy In Sift Theory J. Wang 1 *, W. K. Chiu 1 Defence Science and Technology Organisation, Fishermans Bend, Australia, Department

More information

PROMAL2012 SOFTWARE PACKAGE A USER GUIDE

PROMAL2012 SOFTWARE PACKAGE A USER GUIDE PROMAL2012 SOFTWARE PACKAGE A USER GUIDE 1. This manual is only for VISTA, WINDOWS 7 and WINDOWS 8 users. The PROMAL2012 software and manual are available at http://www.eng.usf.edu/~kaw/promal2012/ 2.

More information

NUMERICAL FEM ANALYSIS FOR THE PART OF COMPOSITE HELICOPTER ROTOR BLADE

NUMERICAL FEM ANALYSIS FOR THE PART OF COMPOSITE HELICOPTER ROTOR BLADE Journal of KONES Powertrain and Transport, Vol. 19, No. 1 2012 NUMERICAL FEM ANALYSIS FOR THE PART OF COMPOSITE HELICOPTER ROTOR BLADE Hubert D bski Lublin University of Technology, Department of Machine

More information

IJSER 1. INTRODUCTION. M.Elhadary

IJSER 1. INTRODUCTION. M.Elhadary 1591 A new failure criterion for GRP composite materials subjected to in-phase and out-of-phase biaxial fatigue loading under different stress ratios M.Elhadary Abstract this studying the fatigue behavior

More information

ISHIK UNIVERSITY DEPARTMENT OF MECHATRONICS ENGINEERING

ISHIK UNIVERSITY DEPARTMENT OF MECHATRONICS ENGINEERING ISHIK UNIVERSITY DEPARTMENT OF MECHATRONICS ENGINEERING QUESTION BANK FOR THE MECHANICS OF MATERIALS-I 1. A rod 150 cm long and of diameter 2.0 cm is subjected to an axial pull of 20 kn. If the modulus

More information

COMPARISON OF EXPERIMENTAL RESULTS WITH FEM ONES OF RECTANGULAR CFRP TUBES FOR FRONT SIDE MEMBERS OF AUTOMOBILES

COMPARISON OF EXPERIMENTAL RESULTS WITH FEM ONES OF RECTANGULAR CFRP TUBES FOR FRONT SIDE MEMBERS OF AUTOMOBILES 16 TH INTERNATIONAL CONFERENCE ON COMPOSITE MATERIALS COMPARISON OF EXPERIMENTAL RESULTS WITH FEM ONES OF RECTANGULAR CFRP TUBES FOR FRONT SIDE MEMBERS OF AUTOMOBILES Hyoung-Soo Kim*, Goichi Ben**,Yoshio

More information

Predicting Failure of Multiangle Composite Laminates

Predicting Failure of Multiangle Composite Laminates Predicting Failure of Multiangle Composite Laminates Preliminary discussion (not in textbook): Micromechanics failure analyses vs Macromechanics failure analyses Fiber Architecture of Some Common Composite

More information

KINK BAND FORMATION OF FIBER REINFORCED POLYMER (FRP)

KINK BAND FORMATION OF FIBER REINFORCED POLYMER (FRP) KINK BAND FORMATION OF FIBER REINFORCED POLYMER (FRP) 1 University of Science & Technology Beijing, China, niukm@ustb.edu.cn 2 Tsinghua University, Department of Engineering Mechanics, Beijing, China,

More information

20. Rheology & Linear Elasticity

20. Rheology & Linear Elasticity I Main Topics A Rheology: Macroscopic deformation behavior B Linear elasticity for homogeneous isotropic materials 10/29/18 GG303 1 Viscous (fluid) Behavior http://manoa.hawaii.edu/graduate/content/slide-lava

More information

Analysis of Composite Pressure Vessels

Analysis of Composite Pressure Vessels Analysis of Composite Pressure Vessels Reza Mohammadzadeh Gheshlaghi 1 Mohammad Hassan Hojjati Hamid Reza Mohammadi Daniali 3 1 Engineering Research Centre, Tabriz, Iran,3 Department of Mechanical Engineering,

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

ACDC. User Manual. Ver. 1.0

ACDC. User Manual. Ver. 1.0 ACDC User Manual Ver. 1.0 Centre Composite December 2016 ACDC, Ver. 1.0 User Manual Centre Composite, 2016 (software@composite.lv) Table of Contents Introduction... 1 System requirements... 1 Theoretical

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

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

Stress Analysis Report

Stress Analysis Report Stress Analysis Report Analyzed File: Majakkarunko.iam Autodesk Inventor Version: 2013 SP2 (Build 170200200, 200) Creation Date: 29.5.2013, 7:01 Simulation Author: NJu Summary: Project Info (iproperties)

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

Composite Tube Testing and Failure Theory Computational Comparison

Composite Tube Testing and Failure Theory Computational Comparison Composite Tube Testing and Failure Theory Computational Comparison M. Narsai a, S. Adali b, K. Veale c, J. Padayachee d Received 14 December 2017, in revised form 25 Jun 2018 and accepted 9 November 2018

More information

Fracture Mechanics, Damage and Fatigue: Composites

Fracture Mechanics, Damage and Fatigue: Composites University of Liège Aerospace & Mechanical Engineering Fracture Mechanics, Damage and Fatigue: Composites Ludovic Noels Computational & Multiscale Mechanics of Materials CM3 http://www.ltas-cm3.ulg.ac.be/

More information

Composites Design and Analysis. Stress Strain Relationship

Composites Design and Analysis. Stress Strain Relationship Composites Design and Analysis Stress Strain Relationship Composite design and analysis Laminate Theory Manufacturing Methods Materials Composite Materials Design / Analysis Engineer Design Guidelines

More information

OPTIMISATION OF LAMINATED COMPOSITE PLATES CONSIDERING DIFFERENT FAILURE CRITERIA

OPTIMISATION OF LAMINATED COMPOSITE PLATES CONSIDERING DIFFERENT FAILURE CRITERIA OPTIMIATION OF LAMINATED COMPOITE PLATE CONIDERING DIFFERENT FAILURE CRITERIA R.H. Lopez 1, M.A. Luersen, J.E.ouza de Cursi 1 1 Laboratoire de Mécanique de Rouen, Institut National des ciences Appliquées

More information

Module III - Macro-mechanics of Lamina. Lecture 23. Macro-Mechanics of Lamina

Module III - Macro-mechanics of Lamina. Lecture 23. Macro-Mechanics of Lamina Module III - Macro-mechanics of Lamina Lecture 23 Macro-Mechanics of Lamina For better understanding of the macromechanics of lamina, the knowledge of the material properties in essential. Therefore, the

More information

Unit IV State of stress in Three Dimensions

Unit IV State of stress in Three Dimensions Unit IV State of stress in Three Dimensions State of stress in Three Dimensions References Punmia B.C.,"Theory of Structures" (SMTS) Vol II, Laxmi Publishing Pvt Ltd, New Delhi 2004. Rattan.S.S., "Strength

More information

ME 7502 Lecture 2 Effective Properties of Particulate and Unidirectional Composites

ME 7502 Lecture 2 Effective Properties of Particulate and Unidirectional Composites ME 75 Lecture Effective Properties of Particulate and Unidirectional Composites Concepts from Elasticit Theor Statistical Homogeneit, Representative Volume Element, Composite Material Effective Stress-

More information

COMPUTER AIDED DESIGN IN CASE OF THE LAMINATED COMPOSITE MATERIALS

COMPUTER AIDED DESIGN IN CASE OF THE LAMINATED COMPOSITE MATERIALS 6 th International Conference Computational Mechanics and Virtual Engineering COMEC 15 15-16 October 15, Braşov, Romania COMPUER AIDED DESIGN IN CASE OF HE LAMINAED COMPOSIE MAERIALS Camelia Cerbu ransilvania

More information

Most of the material in this package is based on a recently published book. This is:

Most of the material in this package is based on a recently published book. This is: Mechanics of Composite Materials Version 2.1 Bill Clyne, University of Cambridge Boban Tanovic, MATTER Assumed Pre-knowledge It is assumed that the student is familiar with simple concepts of mechanical

More information

MINE ROOF SUPPORT DESIGN AND ANALYSIS. Document no : Revision no : 1.0

MINE ROOF SUPPORT DESIGN AND ANALYSIS. Document no : Revision no : 1.0 MINE ROOF SUPPORT DESIGN AND ANALYSIS Document no : 1806-2697-23 Revision no : 1.0 DOCUMENT TITLE : MINE ROOF SUPPORT DESIGN AND ANALYSIS DOCUMENT NUMBER : 1806-2697-23 ISSUE : Issue 1.0 DATE : 7 October

More information

BIAXIAL STRENGTH INVESTIGATION OF CFRP COMPOSITE LAMINATES BY USING CRUCIFORM SPECIMENS

BIAXIAL STRENGTH INVESTIGATION OF CFRP COMPOSITE LAMINATES BY USING CRUCIFORM SPECIMENS BIAXIAL STRENGTH INVESTIGATION OF CFRP COMPOSITE LAMINATES BY USING CRUCIFORM SPECIMENS H. Kumazawa and T. Takatoya Airframes and Structures Group, Japan Aerospace Exploration Agency 6-13-1, Ohsawa, Mitaka,

More information

Composite Plate Documentation. John Robinson

Composite Plate Documentation. John Robinson Composite Plate Documentation Release v ersion John Robinson February 18, 2016 Contents 1 Indices and tables 3 2 How to Use Composite Plate 5 3 Modules 7 Python Module Index 15 i ii Contents: Contents

More information

Chapter 3. Load and Stress Analysis. Lecture Slides

Chapter 3. Load and Stress Analysis. Lecture Slides Lecture Slides Chapter 3 Load and Stress Analysis 2015 by McGraw Hill Education. This is proprietary material solely for authorized instructor use. Not authorized for sale or distribution in any manner.

More information

APPENDIX 1 MODEL CALCULATION OF VARIOUS CODES

APPENDIX 1 MODEL CALCULATION OF VARIOUS CODES 163 APPENDIX 1 MODEL CALCULATION OF VARIOUS CODES A1.1 DESIGN AS PER NORTH AMERICAN SPECIFICATION OF COLD FORMED STEEL (AISI S100: 2007) 1. Based on Initiation of Yielding: Effective yield moment, M n

More information

Static Failure (pg 206)

Static Failure (pg 206) Static Failure (pg 06) All material followed Hookeʹs law which states that strain is proportional to stress applied, until it exceed the proportional limits. It will reach and exceed the elastic limit

More information

Sample Question Paper

Sample Question Paper Scheme I Sample Question Paper Program Name : Mechanical Engineering Program Group Program Code : AE/ME/PG/PT/FG Semester : Third Course Title : Strength of Materials Marks : 70 Time: 3 Hrs. Instructions:

More information

EXPLICIT DYNAMIC SIMULATION OF DROP-WEIGHT LOW VELOCITY IMPACT ON CARBON FIBROUS COMPOSITE PANELS

EXPLICIT DYNAMIC SIMULATION OF DROP-WEIGHT LOW VELOCITY IMPACT ON CARBON FIBROUS COMPOSITE PANELS EXPLICIT DYNAMIC SIMULATION OF DROP-WEIGHT LOW VELOCITY IMPACT ON CARBON FIBROUS COMPOSITE PANELS Umar Farooq and Karl Gregory School of Built Environment and Department of Engineering, University of Bolton,

More information

D : SOLID MECHANICS. Q. 1 Q. 9 carry one mark each. Q.1 Find the force (in kn) in the member BH of the truss shown.

D : SOLID MECHANICS. Q. 1 Q. 9 carry one mark each. Q.1 Find the force (in kn) in the member BH of the truss shown. D : SOLID MECHANICS Q. 1 Q. 9 carry one mark each. Q.1 Find the force (in kn) in the member BH of the truss shown. Q.2 Consider the forces of magnitude F acting on the sides of the regular hexagon having

More information

Materials and Structures. Indian Institute of Technology Kanpur

Materials and Structures. Indian Institute of Technology Kanpur Introduction to Composite Materials and Structures Nachiketa Tiwari Indian Institute of Technology Kanpur Lecture 15 Behavior of Unidirectional Composites Lecture Overview Mt Material ilaxes in unidirectional

More information

Evolution Group 7 - Pile Design

Evolution Group 7 - Pile Design Evolution Group 7 - Pile Design Summary of UK Design for Pile Groups - Chris Raison In the UK there are no specific requirements given in the National Annex covering design of pile groups. Particular issues

More information

Computational Analysis for Composites

Computational Analysis for Composites Computational Analysis for Composites Professor Johann Sienz and Dr. Tony Murmu Swansea University July, 011 The topics covered include: OUTLINE Overview of composites and their applications Micromechanics

More information

ON THE NUMERICAL ANALYSIS OF COMPOSITE MATERIAL

ON THE NUMERICAL ANALYSIS OF COMPOSITE MATERIAL The 4th International Conference Advanced Composite Materials Engineering COMAT 8- October, Brasov, Romania O THE UMERICAL AALYSIS OF COMPOSITE MATERIAL D.D. icoara Transilvania University, City Brasov,

More information

COMPLEX STRESS TUTORIAL 4 THEORIES OF FAILURE. You should judge your progress by completing the self assessment exercises.

COMPLEX STRESS TUTORIAL 4 THEORIES OF FAILURE. You should judge your progress by completing the self assessment exercises. COMPLEX STRESS TUTORIAL 4 THEORIES OF FAILURE This short tutorial covers no known elements of the E.C. or Edexcel Exams but should be studied as part of complex stress, structures and materials. You should

More information

MAE 322 Machine Design Lecture 2. Dr. Hodge Jenkins Mercer University

MAE 322 Machine Design Lecture 2. Dr. Hodge Jenkins Mercer University MAE 322 Machine Design Lecture 2 Dr. Hodge Jenkins Mercer University Statics Load Failure Theories to Understand Maximum Normal Stress (MNS) Maximum Shear Stress (MSS) Distortion Energy (DE) Coulomb-Mohr

More information

Finite element analysis of drilled holes in uni-directional composite laminates using failure theories

Finite element analysis of drilled holes in uni-directional composite laminates using failure theories American Journal of Science and Technology 2014; 1(3): 101-105 Published online May 30, 2014 (http://www.aascit.org/journal/ajst) Finite element analysis of drilled holes in uni-directional composite laminates

More information

STRUCTURAL EFFICIENCY VIA MINIMISATION OF ELASTIC ENERGY IN DAMAGE TOLERANT LAMINATES

STRUCTURAL EFFICIENCY VIA MINIMISATION OF ELASTIC ENERGY IN DAMAGE TOLERANT LAMINATES ECCM16-16 TH EUROPEAN CONFERENCE ON COMPOSITE MATERIALS, Seville, Spain, 22-26 June 214 STRUCTURAL EFFICIENCY VIA MINIMISATION OF ELASTIC ENERGY IN DAMAGE TOLERANT LAMINATES M. Nielsen a, A. T. Rhead a,

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

A RESEARCH ON NONLINEAR STABILITY AND FAILURE OF THIN- WALLED COMPOSITE COLUMNS WITH OPEN CROSS-SECTION

A RESEARCH ON NONLINEAR STABILITY AND FAILURE OF THIN- WALLED COMPOSITE COLUMNS WITH OPEN CROSS-SECTION A RESEARCH ON NONLINEAR STABILITY AND FAILURE OF THIN- WALLED COMPOSITE COLUMNS WITH OPEN CROSS-SECTION H. Debski a*, J. Bienias b, P. Jakubczak b a Faculty of Mechanical Engineering, Department of Machine

More information

EFFECT OF ELLIPTIC OR CIRCULAR HOLES ON THE STRESS DISTRIBUTION IN PLATES

EFFECT OF ELLIPTIC OR CIRCULAR HOLES ON THE STRESS DISTRIBUTION IN PLATES EFFECT OF ELLIPTIC OR CIRCULAR HOLES ON THE STRESS DISTRIBUTION IN PLATES OF WOOD OR PLYWOOD CONSIDERED AS ORTHOTROPIC MATERIALS Information Revied and Reaffirmed March 1956 No. 1510 EFFECT OF ELLIPTIC

More information

The Frictional Regime

The Frictional Regime The Frictional Regime Processes in Structural Geology & Tectonics Ben van der Pluijm WW Norton+Authors, unless noted otherwise 1/25/2016 10:08 AM We Discuss The Frictional Regime Processes of Brittle Deformation

More information

Online publication date: 23 October 2010

Online publication date: 23 October 2010 This article was downloaded by: [informa internal users] On: 1 November 2010 Access details: Access Details: [subscription number 755239602] Publisher Taylor & Francis Informa Ltd Registered in England

More information

CHAPTER 3 THE EFFECTS OF FORCES ON MATERIALS

CHAPTER 3 THE EFFECTS OF FORCES ON MATERIALS CHAPTER THE EFFECTS OF FORCES ON MATERIALS EXERCISE 1, Page 50 1. A rectangular bar having a cross-sectional area of 80 mm has a tensile force of 0 kn applied to it. Determine the stress in the bar. Stress

More information

Capability Assessment of Finite Element Software in Predicting the Last Ply Failure of Composite Laminates

Capability Assessment of Finite Element Software in Predicting the Last Ply Failure of Composite Laminates Available online at www.sciencedirect.com Procedia Engineering 41 (2012 ) 1647 1653 International Symposium on Robotics and Intelligent Sensors 2012 (IRIS 2012) Capability Assessment of Finite Element

More information

STANDARD SAMPLE. Reduced section " Diameter. Diameter. 2" Gauge length. Radius

STANDARD SAMPLE. Reduced section  Diameter. Diameter. 2 Gauge length. Radius MATERIAL PROPERTIES TENSILE MEASUREMENT F l l 0 A 0 F STANDARD SAMPLE Reduced section 2 " 1 4 0.505" Diameter 3 4 " Diameter 2" Gauge length 3 8 " Radius TYPICAL APPARATUS Load cell Extensometer Specimen

More information

Use Hooke s Law (as it applies in the uniaxial direction),

Use Hooke s Law (as it applies in the uniaxial direction), 0.6 STRSS-STRAIN RLATIONSHIP Use the principle of superposition Use Poisson s ratio, v lateral longitudinal Use Hooke s Law (as it applies in the uniaxial direction), x x v y z, y y vx z, z z vx y Copyright

More information

Fracture Mechanics of Composites with Residual Thermal Stresses

Fracture Mechanics of Composites with Residual Thermal Stresses J. A. Nairn Material Science & Engineering, University of Utah, Salt Lake City, Utah 84 Fracture Mechanics of Composites with Residual Thermal Stresses The problem of calculating the energy release rate

More information

RATE-DEPENDENT OFF-AXIS COMPRESSIVE STRENGTH OF A UNIDIRECTIONAL CARBON/EPOXY LAMINATE AT HIGH TEMPERATURE

RATE-DEPENDENT OFF-AXIS COMPRESSIVE STRENGTH OF A UNIDIRECTIONAL CARBON/EPOXY LAMINATE AT HIGH TEMPERATURE 16 TH INTERNATIONAL CONFERENCE ON COMPOSITE MATERIALS RATE-DEPENDENT OFF-AXIS COMPRESSIVE STRENGTH OF A UNIDIRECTIONAL CARBON/EPOXY LAMINATE AT HIGH TEMPERATURE Masamichi KAWAI *, Satoru SAITO **, Jian-Qi

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

Materials and Structures. Indian Institute of Technology Kanpur

Materials and Structures. Indian Institute of Technology Kanpur Introduction to Composite Materials and Structures Nachiketa Tiwari Indian Institute of Technology Kanpur Lecture 16 Behavior of Unidirectional Composites Lecture Overview Mt Material ilaxes in unidirectional

More information

9 Strength Theories of Lamina

9 Strength Theories of Lamina 9 trength Theories of Lamina 9- TRENGTH O ORTHOTROPIC LAMINA or isotropic materials the simplest method to predict failure is to compare the applied stresses to the strengths or some other allowable stresses.

More information

1.050: Beam Elasticity (HW#9)

1.050: Beam Elasticity (HW#9) 1050: Beam Elasticity (HW#9) MIT 1050 (Engineering Mechanics I) Fall 2007 Instructor: Markus J BUEHER Due: November 14, 2007 Team Building and Team Work: We strongly encourage you to form Homework teams

More information

Module 5: Theories of Failure

Module 5: Theories of Failure Module 5: Theories of Failure Objectives: The objectives/outcomes of this lecture on Theories of Failure is to enable students for 1. Recognize loading on Structural Members/Machine elements and allowable

More information

Multiscale Approach to Damage Analysis of Laminated Composite Structures

Multiscale Approach to Damage Analysis of Laminated Composite Structures Multiscale Approach to Damage Analysis of Laminated Composite Structures D. Ivančević and I. Smojver Department of Aeronautical Engineering, Faculty of Mechanical Engineering and Naval Architecture, University

More information

Development of a Progressive Failure Model for Notched Woven Composite Laminates. Daniel Christopher Munden

Development of a Progressive Failure Model for Notched Woven Composite Laminates. Daniel Christopher Munden Development of a Progressive Failure Model for Notched Woven Composite Laminates Daniel Christopher Munden Thesis submitted to the faculty of the Virginia Polytechnic Institute and State University in

More information

Influence of fibre proportion and position on the machinability of GFRP composites- An FEA model

Influence of fibre proportion and position on the machinability of GFRP composites- An FEA model Indian Journal of Engineering & Materials Sciences Vol. 12, October 2005, pp. 443-450 Influence of fibre proportion and position on the machinability of GFRP composites- An FEA model D Abdul Budan* Department

More information

Stress-Strain Behavior

Stress-Strain Behavior Stress-Strain Behavior 6.3 A specimen of aluminum having a rectangular cross section 10 mm 1.7 mm (0.4 in. 0.5 in.) is pulled in tension with 35,500 N (8000 lb f ) force, producing only elastic deformation.

More information

[5] Stress and Strain

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

More information

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

CHAPER THREE ANALYSIS OF PLANE STRESS AND STRAIN

CHAPER THREE ANALYSIS OF PLANE STRESS AND STRAIN CHAPER THREE ANALYSIS OF PLANE STRESS AND STRAIN Introduction This chapter is concerned with finding normal and shear stresses acting on inclined sections cut through a member, because these stresses may

More information

Composite Laminate Modeling

Composite Laminate Modeling omposite Laminate Modeling White Paper for Femap and NX Nastran Users Venkata Bheemreddy, Ph.D., Senior Staff Mechanical Engineer Adrian Jensen, PE, Senior Staff Mechanical Engineer WHAT THIS WHITE PAPER

More information

BALLISTIC IMPACT MODELING OF COMPOSITE MATERIALS

BALLISTIC IMPACT MODELING OF COMPOSITE MATERIALS 7 th International LS-DYNA Users Conference Penetration/Explosive BALLISTIC IMPACT MODELING OF COMPOSITE MATERIALS Chian-Fong Yen Materials Sciences Corporation 5 Office Center Drive Fort Washington, PA

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

Modified MAT54: Composite Material Modeling for Crash Simulation

Modified MAT54: Composite Material Modeling for Crash Simulation Modified MAT54: Composite Material Modeling for Crash Simulation Bonnie Wade (UW) Prof. Paolo Feraboli AMTAS FALL MEETING 213 The Joint Advanced Materials and Structures Center of Excellence Testing AMTAS

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

Characterizations of Aluminum Alloy Sheet Materials Numisheet 2005

Characterizations of Aluminum Alloy Sheet Materials Numisheet 2005 Characterizations of Aluminum Alloy Sheet Materials Numisheet 25 John C. Brem, Frederic Barlat, Robert E. Dick, and Jeong-Whan Yoon Alcoa Technical Center, PA, 1569-1, USA Abstract. This report reproduces

More information

The minus sign indicates that the centroid is located below point E. We will relocate the axis as shown in Figure (1) and take discard the sign:

The minus sign indicates that the centroid is located below point E. We will relocate the axis as shown in Figure (1) and take discard the sign: AOE 304: Thin Walled Structures Solutions to Consider a cantilever beam as shown in the attached figure. At the tip of the beam, a bending moment M = 1000 N-m is applied at an angle θ with respect to the

More information

Module 4: Behaviour of a Laminae-II. Learning Unit 1: M1. M4.1 Mechanics of Composites. M4.1.1 Introduction to Mechanics of Composites

Module 4: Behaviour of a Laminae-II. Learning Unit 1: M1. M4.1 Mechanics of Composites. M4.1.1 Introduction to Mechanics of Composites Module 4: Behaviour of a Laminae-II Learning Unit 1: M1 M4.1 Mechanics of Composites M4.1.1 Introduction to Mechanics of Composites The relation between ply uniaxial strengths and constituent properties

More information

Donald P. Shiley School of Engineering ME 328 Machine Design, Spring 2019 Assignment 1 Review Questions

Donald P. Shiley School of Engineering ME 328 Machine Design, Spring 2019 Assignment 1 Review Questions Donald P. Shiley School of Engineering ME 328 Machine Design, Spring 2019 Assignment 1 Review Questions Name: This is assignment is in workbook format, meaning you may fill in the blanks (you do not need

More information

Parameter Design of High Speed Coupling for 6 MW Wind Turbine Considering Torsional Vibration

Parameter Design of High Speed Coupling for 6 MW Wind Turbine Considering Torsional Vibration Parameter Design of High Speed Coupling for 6 MW Wind Turbine Considering Torsional Vibration JongHun Kang 1, Junwoo Bae 2, Seungkeun Jeong 3, SooKeun Park 4 and Hyoung Woo Lee 1 # 1 Department of Mechatronics

More information

THE ROLE OF DELAMINATION IN NOTCHED AND UNNOTCHED TENSILE STRENGTH

THE ROLE OF DELAMINATION IN NOTCHED AND UNNOTCHED TENSILE STRENGTH THE ROLE OF DELAMINATION IN NOTCHED AND UNNOTCHED TENSILE STRENGTH M. R. Wisnom University of Bristol Advanced Composites Centre for Innovation and Science University Walk, Bristol BS8 1TR, UK M.Wisnom@bristol.ac.uk

More information

Jeff Brown Hope College, Department of Engineering, 27 Graves Pl., Holland, Michigan, USA UNESCO EOLSS

Jeff Brown Hope College, Department of Engineering, 27 Graves Pl., Holland, Michigan, USA UNESCO EOLSS MECHANICS OF MATERIALS Jeff Brown Hope College, Department of Engineering, 27 Graves Pl., Holland, Michigan, USA Keywords: Solid mechanics, stress, strain, yield strength Contents 1. Introduction 2. Stress

More information

Numerical Analysis of Composite Panels in the Post-Buckling Field taking into account Progressive Failure

Numerical Analysis of Composite Panels in the Post-Buckling Field taking into account Progressive Failure Copyright c 007 ICCES ICCES, vol.1, no.3, pp.93-98, 007 Numerical Analysis of Composite Panels in the Post-Buckling Field taking into account Progressive Failure C. Bisagni 1 Summary The research here

More information

Failure Analysis of Unidirectional Composite Pinned- Joints

Failure Analysis of Unidirectional Composite Pinned- Joints 217 IJEDR Volume, Issue 4 ISSN: 2321-9939 Failure Analysis of Unidirectional Composite Pinned- Joints 1 Sai Ashok.M, 2 Mr. U. Koteswara Rao 1 M-tech Machine Design, 2 Associate Professor & Asst. COE 1

More information

ME 243. Mechanics of Solids

ME 243. Mechanics of Solids ME 243 Mechanics of Solids Lecture 2: Stress and Strain Ahmad Shahedi Shakil Lecturer, Dept. of Mechanical Engg, BUET E-mail: sshakil@me.buet.ac.bd, shakil6791@gmail.com Website: teacher.buet.ac.bd/sshakil

More information