Stiffness of Tapered Beam

Size: px
Start display at page:

Download "Stiffness of Tapered Beam"

Transcription

1 Problem: A bar in tension has a conical shape of length L. The task is to find the stiffness of the tapered section. Compare the stiffness given by ANSYS to the theoretical stiffness given by: EA1 ( r2 r1 ) k = 1+ L r1 and compute a percent error between the computed and theoretical stiffness. Let r 1 be both.25 in or.5 in. Let r 2 be both.5 in or 2 in. Let L be both 2 in or 5 in. Perform the stiffness calculation for every combination of the above factors (8 runs in all). Joseph Shigley and Charles Mischke. Mechanical Engineering Design 5th ed. New York: McGraw Hill, May 2002.

2 Overview Anticipated time to complete this tutorial: 1.5 hours Tutorial Overview This tutorial is divided into five parts: 1) Tutorial Basics 2) Problem Planning 3) 4) Solution 5) Hand Calculations Audience This tutorial assumes an intermediate knowledge of ANSYS 8.0; therefore, it goes into moderate detail to explain each step. A problem planning section has been added to help set up the problem. More advanced ANSYS 8.0 users should be able to complete this tutorial fairly quickly. Prerequisites 1) ANSYS 8.0 in house Structural Tutorial 2) Completion of three or more Basic Machine Design Tutorials Objectives 1)Write ANSYS model with command lines in a log file 2)Use the log file to solve the problem for each run 3)Use the log file to compute the desired results for each run Outcomes 1) Learn how to set up the problem before starting Ansys 2) Increase familiarity with the graphical user interface (GUI) 3) Learn how to create and mesh more complex geometries 4) Increase familiarity with post processing tools 2

3 In this tutorial: Instructions appear on the left. Stiffness of Tapered Beam Visual aids corresponding to the text appear on the right. Tutorial Basics All commands on the toolbars are labeled. However, only operations applicable to the tutorial are explained. The instructions should be used as follows: Bold > Example: Italics MB1 MB2 MB3 Text in bold are buttons, options, or selections that the user needs to click on > Preprocessor > Element Type > Add/Edit/DeleteFile would mean to follow the options as shown to the right to get you to the Element Types window Text in italics are hints and notes Click on the left mouse button Click on the middle mouse button Click on the right mouse button Some basic ANSYS functions are: To rotate the models use Ctrl and MB3. To zoom use Ctrl and MB2 and move the mouse up and down. To translate the models use Ctrl and MB1. 3

4 Problem Planning The repetitious nature of this problem suggests the use of a log file. The variable parameters include r 1, r 2, and L. You will input these as scalar parameters. Although the applied force and Young's Modulus will not vary from run to run, you will include them as scalar parameters because you will use them in scalar calculations. For example, the theoretical value of k for a tapered beam can be entered as a scalar parameter in the following way: K_theoretical = ( *E*r1*r1/L)*(1+(r2-r1)/r1) The tapered section under investigation will be created from 2 circular cross sections with radii r 2 and r 1 at the left and right ends respectively. A third, tapered section, will then be defined by using the first two cross sections as its ends. To find k in ANSYS you will use the relation K_act = F/x This means that you will apply a force in the positive x direction at the right end of the beam and then measure the resulting displacement at the right end of the beam. Again, you will use a scalar calculation to have ANSYS solve for the value of K_act. You will also have ANSYS perform a scalar calculation for the percent error between K_theoretical and K_actual. The formula for percent error is given by Percent_Error = 100*(K_theoretical - K_act)/K_theoretical This lesson will lead you through the steps of writing a log file. Instructions on each command (pulled from the ANSYS help file) appear in the right column. Commands that you should write to your log file will appear as 8 pt. Arial text in the left column. The information contained in this tutorial will be valuable to you as you do other analysis in ANSYS. Please pay careful attention to the instructions in the right column and do not gloss over the information given for each command. 4

5 1) Start a new notepad file. Give it an appropriate file name and save it to the desired directory. 2) The first command of the log file will be an instruction to tell ANSYS to clear whatever database it is working on and start a new one. The syntax used to perform this operation is shown to the right in bold text. The options for the clear (i.e. START or NOSTART are also shown with their definitions. Type the following command line as the first line in your notepad file: /CLEAR, Read Clears the database. Read File read option: START -- Reread start80.ans file (default). NOSTART -- Do not reread start80.ans file. /CLEAR, START 3) Next, you are going to enter a command to change the file name of your project. /FILNAME,Stiffness of Tapered Beam,1 /FILNAME, Fname, Key Changes the Jobname for the analysis. Fname Name (32 characters maximum) to be used as the Jobname. Defaults to the initial Jobname as specified on the ANSYS execution command, or to File if none specified. Key Specify whether to use the existing log and error files or start new files. 0, OFF -- Use existing log and error files. 1, ON -- Start new log and error files (old files are closed but not deleted). 4) Next, you are going to enter a command to give the project a title. /TITLE,TAPERED BEAM /TITLE, Title Defines a main title. Title Input up to 72 alphanumeric characters. Parameter substitution may be forced within the title by enclosing the parameter name or parametric expression within percent (%) signs. 5

6 5) Type the command to enter the preprocessor. /PREP7 Enters the model creation preprocessor. /PREP7 6) Define the beam element for the model. You are going to use a Beam189 element for this model. ET,1,BEAM189 ET, ITYPE, Ename, KOP1, KOP2, KOP3, KOP4, KOP5, KOP6, INOPR Defines a local element type from the element library. ITYPE Arbitrary local element type number. Defaults to 1 + current maximum. Ename Element name (or number) as given in the element library in Chapter 4 of the ANSYS Elements Reference. The name consists of a category prefix and a unique number, such as BEAM3. The category prefix of the name (BEAM for the example) may be omitted but is displayed upon output for clarity. If Ename = 0, the element is defined as a null element. KOP1, KOP2, KOP3, KOP4, KOP5, KOP6 KEYOPT values (1 through 6) for this element, as described in the ANSYS Elements Reference. INOPR If 1, suppress all element solution printout for this element type. 7) Now you are going to set scalar parameters that you will call during other parts of the command sequence. Any scalar parameter is defined using the *SET command. *SET,F,1000 *SET,E,30E6 *SET,R1,.25 *SET,R2,.5 *SET,L,2 *SET,K_THEORETICAL,( *E*R1*R1/L)*(1+(R2-R1)/R1) *SET, Par, VALUE Assigns values to user-named parameters. Par An alphanumeric name used to identify this parameter. Par may be up to 32 characters, beginning with a letter and containing only letters, numbers, and underscores VALUE Numerical value or alphanumeric character string (up to 8 characters enclosed in single quotes) to be assigned to this parameter. 6

7 8) You will now write commands that define the material properties. MPTEMP,1,0 MPTEMP, STLOC, T1, T2, T3, T4, T5, T6 Defines a temperature table for material properties. STLOC Starting location in table for entering temperatures. T1, T2, T3, T4, T5, T6 Temperatures assigned to six locations starting with STLOC. MPDATA, Lab, MAT, STLOC, C1, C2, C3, C4, C5, C6 Defines property data to be associated with the temperature table. Lab Valid property label. (note only the applicable property labels are shown below). EX -- Elastic moduli (also EY, EZ). PRXY -- Major Poisson's ratios (also PRYZ, PRXZ). MPDATA,EX,1,0,E MPDATA,PRXY,1,0,.3 STLOC Starting location in table for generating data. Note that E is used in the definition of Young s modulus above. Earlier you defined E as a scalar parameter (30e6). 7

8 9) You will now define the cross sections of the end of the beam; you will name them A1 and A2. A1 will have radius r1 (already defined as a scalar parameter) and A2 will have radius r2. SECTYPE,1, BEAM, CSOLID, A1, 0 SECOFFSET, CENT SECDATA,R1,18,3,0,0,0,0,0,0,0 SECTYPE,2, BEAM, CSOLID, A2, 0 SECOFFSET, CENT SECDATA,R2,18,3,0,0,0,0,0,0,0 10) You will now define the tapered cross section using a similar command. The left end of the tapered section will be have cross section A2 (also defined as section 2 above). The right end of the tapered section will have cross section A1 (defined as section 1 above). The location of the left end of the beam will be X,Y,Z = 0,0,0 and the location of the right end of the beam will be X,Y,Z = L,0,0 where L was already defined as a scalar parameter. SECTYPE,3,TAPER,, SECDATA, 2,0,0,0, SECDATA, 1,L,0,0, SECTYPE, SECID, Type, Subtype, Name, REFINEKEY Associates section type information with a section ID number. SECID Section identification number. Type BEAM -- Defines a beam section. See subtypes below. TAPER -- Defines a tapered beam section. The sections at the end points must be topologically identical. Subtype When Type = BEAM, the possible beam sections that can be defined for Subtype are: RECT Rectangle QUAD Quadrilateral CSOLID Circular solid CTUBE Circular tube CHAN Channel I I-shaped section Z Z-shaped section L L-shaped section T T-shaped section HATS Hat-shaped section HREC Hollow rectangle or box ASEC Arbitrary section -- integrated cross-section inertia properties supplied by user MESH User-defined mesh -- see the SECREAD command for more information about this data Name An 8-character name for the section. SECOFFSET, Location, OFFSET1, OFFSET2, CG-Y, CG-Z, SH-Y, SH-Z Defines the section offset for cross sections. Location CENT -- Beam node will be offset to centroid (default). SECDATA See ANSYS help for information regarding the arguments for this function. Different arguments exist for each section type (i.e. beam or tapered) 8

9 11) You will now define keypoints used in the model. K,1,0,0,0, K,2,L,0,0, K, NPT, X, Y, Z Defines a keypoint. NPT Reference number for keypoint. If zero, the lowest available number is assigned [NUMSTR]. X, Y, Z Keypoint location in the active coordinate system. 12) You will now create a line between keypoint 1 and 2. L,1,2 L, P1, P2, NDIV, SPACE, XV1, YV1, ZV1, XV2, YV2, ZV2 Defines a line between two keypoints. P1 Keypoint at the beginning of line. If P1 = P, graphical picking is enabled and all remaining command fields are ignored (valid only in the GUI). P2 Keypoint at the end of line. 13) You will now define the element line attributes for the created line. LATT,1,,1,,,,3 LATT, MAT, REAL, TYPE, --, KB, KE, SECNUM Associates element attributes with the selected, unmeshed lines. MAT, REAL, TYPE Material number, real constant set number, and type number to be associated with selected, unmeshed lines. KB, KE Beginning and ending orientation keypoints to be associated with selected, unmeshed lines. SECNUM Section identifier to be associated with selected, unmeshed lines. 9

10 14) Define the element size for the line. LESIZE,ALL,L/25,,,,1,,,1, LESIZE, NL1, SIZE, ANGSIZ, NDIV, SPACE, KFORC, LAYER1, LAYER2, KYNDIV Specifies the divisions and spacing ratio on unmeshed lines. NL1 Number of the line to be modified. If ALL, modify all selected lines [LSEL]. SIZE If NDIV is blank, SIZE is the division (element edge) length. The number of divisions is automatically calculated from the line length (rounded upward to next integer. 15) Mesh the line. LMESH,1 LMESH, NL1, NL2, NINC Generates nodes and line elements along lines. NL1, NL2, NINC Mesh lines from NL1 to NL2 (defaults to NL1) in steps of NINC (defaults to 1). 16) Turn on the 3D display of the elements. /ESHAPE,1,0 /ESHAPE, SCALE, KEY Displays elements with shapes determined from the real constants or section definition. SCALE Scaling factor: 0 -- Use simple display of line and area elements (default) Use real constants or section definition to form a solid shape display of elements. KEY Current shell thickness key: 0 -- Use current thickness in the displaced solid shape display of shell elements (valid for SHELL181, SHELL208, and SHELL209). Default Use initial thickness in the displaced solid shape display of shell elements. 10

11 17) Enter a command to replot the element shape. /REPLOT 18) Exit the preprocessor. FINISH 19) Enter the solver. /SOLU Enters the solution processor. /SOL 20) Constrain the left end of the beam in all DOF. DK,1,,,,0,ALL,,,,,, DK, KPOI, Lab, VALUE, VALUE2, KEXPND, Lab2, Lab3, Lab4, Lab5, Lab6 Defines DOF constraints at keypoints. KPOI Keypoint at which constraint is to be specified. Lab Valid degree of freedom label. VALUE Degree of freedom value or table name reference for tabular boundary conditions. VALUE2 Second degree of freedom value (if any).. KEXPND Expansion key: 0 -- Constraint applies only to the node at this keypoint Flags this keypoint for constraint expansion. Lab2, Lab3, Lab4, Lab5, Lab6 Additional degree of freedom labels. The same values are applied to the keypoints for these labels. 11

12 21) Apply the force, F, to keypoint 2 in the positive x direction. FK,2,FX,F FK, KPOI, Lab, VALUE, VALUE2 Defines force loads at keypoints. KPOI Keypoint at which force is to be specified. Lab Valid force label. Structural labels: FX, FY, or FZ (forces) VALUE Force value or table name reference for specifying tabular boundary conditions. 22) Create a command to solve the model. SOLVE 23) Exit the solver. FINISH 23) Enter the post processor. /POST1 24) Plot nodal solution for the x component of stress. AVPRIN,0, PLNSOL, S,X, 0,1.0 /POST1 Enters the database results postprocessor. AVPRIN, PLNSOL See ANSYS help for information regarding the arguments for this function (too long to list here). 25) Create three more scalar parameters that calculate K_act, X_Disp, and Percent_Error. *SET,K_ACT,F/UX(2) *SET,X_DISP,UX(2) *SET,PERCENT_ERROR,100*(K_THEORETICAL- K_ACT)/K_THEORETICAL 26) Exit the post processor. FINISH 27) Save the log file. 12

13 Solution 28) Copy the contents of the log file into the command line in ANSYS and press enter. Press enter to close the appropriate dialog boxes and proceed with the solution. 29) When the solution is finished select > Parameters > Scalar Parameters The Scalar Parameters window will open. You can read the values of k_theoretical, k_act, and Percent_Error. Make a table and record the answers. 30) Run all combinations of r1, r2, and L described in the problem statement. Make a table and record the answers. Simply change the parameters (r1, r2, and L) in the log file and re-run the solution. 13

14 K_Theoretical is given by the following equation for a tapered beam Hand Calculations k = EA1 ( r2 r1 ) 1+ L r1 14

Truss Optimization. Problem:

Truss Optimization. Problem: Problem: Assuming that the compression members of the truss showing in the figure will not buckle, find the minimum cross sectional area of each member using an allowable stress of 50 MPa. The dimensions

More information

Statically Indeterminate Beam

Statically Indeterminate Beam Problem: A rectangular aluminum bar.5 inches thick and 2 inches wide is welded to fixed supports at the ends, and the bar supports a load W=800 lb, acting through the pin as shown. Find the reactions at

More information

Buckling of Euler Column

Buckling of Euler Column Problem: An Euler column with one end fixed and one end free is to be made of an aluminum alloy (E = 71 GPa). The cross sectional area of the column is 600 mm and the column is.5 m long. Determine the

More information

Bell Crank. Problem: Joseph Shigley and Charles Mischke. Mechanical Engineering Design 5th ed (New York: McGraw Hill, May 2002) page 87.

Bell Crank. Problem: Joseph Shigley and Charles Mischke. Mechanical Engineering Design 5th ed (New York: McGraw Hill, May 2002) page 87. Problem: A cast-iron bell-crank lever, depicted in the figure below is acted upon by forces F 1 of 250 lb and F 2 of 333 lb. The section A-A at the central pivot has a curved inner surface with a radius

More information

Latch Spring. Problem:

Latch Spring. Problem: Problem: Shown in the figure is a 12-gauge (0.1094 in) by 3/4 in latching spring which supports a load of F = 3 lb. The inside radius of the bend is 1/8 in. Estimate the stresses at the inner and outer

More information

Buckling (with sections)

Buckling (with sections) roblem: An Euler column with one end fixed and one end free is to be made of an aluminum alloy (E = 71 Ga). The oss sectional area of the column is 600 mm and the column is.5 m long. Determine the column

More information

Statically Indeterminate Beam

Statically Indeterminate Beam Problem: Using Castigliano's Theorem, determine the deflection at point A. Neglect the weight of the beam. W 1 N/m B 5 cm H 1 cm 1.35 m Overview Anticipated time to complete this tutorial: 45 minutes Tutorial

More information

Truss Bracket. Problem:

Truss Bracket. Problem: Problem: The truss structure shown above is mounted on the sides of buildings during construction for use as scaffolding for workers. A design team has created a new bracket design (shown below) to use

More information

Stresses in an Elliptical Beam

Stresses in an Elliptical Beam Problem: An offset tensile link is shaped to clear an obstruction with a geometry as shown in the figure. The cross section at the critical location is elliptical, with a major axis of 4 in and a minor

More information

Module 3: Buckling of 1D Simply Supported Beam

Module 3: Buckling of 1D Simply Supported Beam Module : Buckling of 1D Simply Supported Beam Table of Contents Page Number Problem Description Theory Geometry 4 Preprocessor 7 Element Type 7 Real Constants and Material Properties 8 Meshing 9 Solution

More information

Structural modal analysis - 2D frame

Structural modal analysis - 2D frame Structural modal analysis - 2D frame Determine the first six vibration characteristics, namely natural frequencies and mode shapes, of a structure depicted in Fig. 1, when Young s modulus= 27e9Pa, Poisson

More information

Exercise 1. 3-Point Bending Using the GUI and the Bottom-up-Method

Exercise 1. 3-Point Bending Using the GUI and the Bottom-up-Method Exercise 1 3-Point Bending Using the GUI and the Bottom-up-Method Contents Learn how to... 1 Given... 2 Questions... 2 Taking advantage of symmetries... 2 A. Preprocessor (Setting up the Model)... 3 A.1

More information

Module 1.2: Moment of a 1D Cantilever Beam

Module 1.2: Moment of a 1D Cantilever Beam Module 1.: Moment of a 1D Cantilever Beam Table of Contents Page Number Problem Description Theory Geometry Preprocessor 6 Element Type 6 Real Constants and Material Properties 7 Meshing 9 Loads 10 Solution

More information

Structural modal analysis - 2D frame

Structural modal analysis - 2D frame Structural modal analysis - 2D frame Determine the first six vibration characteristics, namely natural frequencies and mode shapes, of a structure depicted in Fig. 1, when Young s modulus= 27e9Pa, Poisson

More information

Chapter 2. Structural Tutorial

Chapter 2. Structural Tutorial Chapter 2. Structural Tutorial Tutorials> Chapter 2. Structural Tutorial Static Analysis of a Corner Bracket Problem Specification Problem Description Build Geometry Define Materials Generate Mesh Apply

More information

file://c:\documents and Settings\sala\Configuración local\temp\~hha54f.htm

file://c:\documents and Settings\sala\Configuración local\temp\~hha54f.htm Página 1 de 26 Tutorials Chapter 2. Structural Tutorial 2.1. Static Analysis of a Corner Bracket 2.1.1. Problem Specification Applicable ANSYS Products: Level of Difficulty: Interactive Time Required:

More information

Structural static analysis - Analyzing 2D frame

Structural static analysis - Analyzing 2D frame Structural static analysis - Analyzing 2D frame In this tutorial we will analyze 2D frame (see Fig.1) consisting of 2D beams with respect to resistance to two different kinds of loads: (a) the downward

More information

Example Cantilever beam

Example Cantilever beam Course in ANSYS Example0300 Example Cantilever beam Objective: Compute the maximum deflection and locate point of maximum deflection Tasks: How should this be modelled? Compare results with results obtained

More information

NonLinear Materials AH-ALBERTA Web:

NonLinear Materials AH-ALBERTA Web: NonLinear Materials Introduction This tutorial was completed using ANSYS 7.0 The purpose of the tutorial is to describe how to include material nonlinearities in an ANSYS model. For instance, the case

More information

Structural static analysis - Analyzing 2D frame

Structural static analysis - Analyzing 2D frame Structural static analysis - Analyzing 2D frame In this tutorial we will analyze 2D frame (see Fig.1) consisting of 2D beams with respect to resistance to two different kinds of loads: (a) the downward

More information

Module 1.6: Distributed Loading of a 2D Cantilever Beam

Module 1.6: Distributed Loading of a 2D Cantilever Beam Module 1.6: Distributed Loading of a 2D Cantilever Beam Table of Contents Page Number Problem Description 2 Theory 2 Geometry 4 Preprocessor 7 Element Type 7 Real Constants and Material Properties 8 Meshing

More information

Linear Static Analysis of a Plate with Hole

Linear Static Analysis of a Plate with Hole Fergyanto E. Gunawan (f.e.gunawan@gmail.com) Department of Mechanical Engineering Toyohashi University of Technology Objectives: Modeling a symmetric structure Bottom-up and top-down approaches in modeling

More information

ANSYS 5.6 Tutorials Lecture # 2 - Static Structural Analysis

ANSYS 5.6 Tutorials Lecture # 2 - Static Structural Analysis R50 ANSYS 5.6 Tutorials Lecture # 2 - Static Structural Analysis Example 1 Static Analysis of a Bracket 1. Problem Description: The objective of the problem is to demonstrate the basic ANSYS procedures

More information

Module 1.5: Moment Loading of a 2D Cantilever Beam

Module 1.5: Moment Loading of a 2D Cantilever Beam Module 1.5: Moment Loading of a D Cantilever Beam Table of Contents Page Number Problem Description Theory Geometry 4 Preprocessor 7 Element Type 7 Real Constants and Material Properties 8 Meshing 9 Loads

More information

ANSYS. Geometry. Material Properties. E=2.8E7 psi v=0.3. ansys.fem.ir Written By:Mehdi Heydarzadeh Page 1

ANSYS. Geometry. Material Properties. E=2.8E7 psi v=0.3. ansys.fem.ir Written By:Mehdi Heydarzadeh Page 1 Attention: This tutorial is outdated, you will be redirected automatically to the new site. If you are not redirected, click this link to the confluence site. Problem Specification Geometry Material Properties

More information

Lecture # 5 Modal or Dynamic Analysis of an Airplane Wing

Lecture # 5 Modal or Dynamic Analysis of an Airplane Wing Lecture # 5 Modal or Dynamic Analysis of an Airplane Wing Problem Description This is a simple modal analysis of a wing of a model airplane. The wing is of uniform configuration along its length and its

More information

Two Dimensional Truss

Two Dimensional Truss Two Dimensional Truss Introduction This tutorial was created using ANSYS 7.0 to solve a simple 2D Truss problem. This is the first of four introductory ANSYS tutorials. Problem Description Determine the

More information

Module 1.7: Point Loading of a 3D Cantilever Beam

Module 1.7: Point Loading of a 3D Cantilever Beam Module 1.7: Point Loading of a D Cantilever Beam Table of Contents Page Number Problem Description Theory Geometry 4 Preprocessor 6 Element Type 6 Material Properties 7 Meshing 8 Loads 9 Solution 15 General

More information

Course in ANSYS. Example0601. ANSYS Computational Mechanics, AAU, Esbjerg

Course in ANSYS. Example0601. ANSYS Computational Mechanics, AAU, Esbjerg Course in Example0601 Example Turbine Blade Example0601 2 Example Turbine Blade Objective: Solve for the temperature distribution within the 6mm thick turbine blade, with 2mm x 6mm rectangular cooling

More information

Course in ANSYS. Example Truss 2D. Example0150

Course in ANSYS. Example Truss 2D. Example0150 Course in ANSYS Example0150 Example Truss 2D Objective: Compute the maximum deflection Tasks: Display the deflection figure? Topics: Topics: Start of analysis, Element type, Real constants, Material, modeling,

More information

NonLinear Analysis of a Cantilever Beam

NonLinear Analysis of a Cantilever Beam NonLinear Analysis of a Cantilever Beam Introduction This tutorial was created using ANSYS 7.0 The purpose of this tutorial is to outline the steps required to do a simple nonlinear analysis of the beam

More information

Example Plate with a hole

Example Plate with a hole Course in ANSYS Example Plate with a hole A Objective: Determine the maximum stress in the x-direction for point A and display the deformation figure Tasks: Create a submodel to increase the accuracy of

More information

ANSYS EXERCISE ANSYS 5.6 Temperature Distribution in a Turbine Blade with Cooling Channels

ANSYS EXERCISE ANSYS 5.6 Temperature Distribution in a Turbine Blade with Cooling Channels I. ANSYS EXERCISE ANSYS 5.6 Temperature Distribution in a Turbine Blade with Cooling Channels Copyright 2001-2005, John R. Baker John R. Baker; phone: 270-534-3114; email: jbaker@engr.uky.edu This exercise

More information

ANSYS Tutorials. Table of Contents. Grady Lemoine

ANSYS Tutorials. Table of Contents. Grady Lemoine ANSYS Tutorials Grady Lemoine Table of Contents Example 1: 2-D Static Stress Analysis in ANSYS...2 Example 2: 3-D Static Stress Analysis...5 Example 3: 2-D Frame With Multiple Materials and Element Types...10

More information

TWO-DIMENSIONAL PROBLEM OF THE THEORY OF ELASTICITY. INVESTIGATION OF STRESS CONCENTRATION FACTORS.

TWO-DIMENSIONAL PROBLEM OF THE THEORY OF ELASTICITY. INVESTIGATION OF STRESS CONCENTRATION FACTORS. Ex_1_2D Plate.doc 1 TWO-DIMENSIONAL PROBLEM OF THE THEORY OF ELASTICITY. INVESTIGATION OF STRESS CONCENTRATION FACTORS. 1. INTRODUCTION Two-dimensional problem of the theory of elasticity is a particular

More information

Course in ANSYS. Example0153. ANSYS Computational Mechanics, AAU, Esbjerg

Course in ANSYS. Example0153. ANSYS Computational Mechanics, AAU, Esbjerg Course in Example0153 Example Offshore structure F Objective: Display the deflection figure and von Mises stress distribution Tasks: Import geometry from IGES. Display the deflection figure? Display the

More information

University of Utah ME EN 6510/5510 Introduction to Finite Elements Fall 2005

University of Utah ME EN 6510/5510 Introduction to Finite Elements Fall 2005 University of Utah ME EN 6510/5510 Introduction to Finite Elements Fall 2005 Running ANSYS on the CADE lab workstations CADE Lab Accounts You need to get account information in EMCB 224 from the operators

More information

Chapter 3 Analysis of Original Steel Post

Chapter 3 Analysis of Original Steel Post Chapter 3. Analysis of original steel post 35 Chapter 3 Analysis of Original Steel Post This type of post is a real functioning structure. It is in service throughout the rail network of Spain as part

More information

Coupled Structural/Thermal Analysis

Coupled Structural/Thermal Analysis Coupled Structural/Thermal Analysis Introduction This tutorial was completed using ANSYS 7.0 The purpose of this tutorial is to outline a simple coupled thermal/structural analysis. A steel link, with

More information

Cold Drawn Tube. Problem:

Cold Drawn Tube. Problem: Cold Dawn Tube Poblem: An AISI 1 cold-dawn steel tube has an ID of 1.5 in and an OD of 1.75 in. What maximum extenal pessue can this tube take if the lagest pincipal nomal stess is not to exceed 8 pecent

More information

Course in ANSYS. Example0154. ANSYS Computational Mechanics, AAU, Esbjerg

Course in ANSYS. Example0154. ANSYS Computational Mechanics, AAU, Esbjerg Course in Example0154 Example Frame 2D E = 210000N/mm 2 n = 0.3 L= 1000mm H = 1000mm a = 20mm b = 50mm c = 400mm F = 10000N I = 208333N/mm 4 Example0154 2 Example Frame 2D Objective: Compute the maximum

More information

Finite Element Analysis Using NEi Nastran

Finite Element Analysis Using NEi Nastran Appendix B Finite Element Analysis Using NEi Nastran B.1 INTRODUCTION NEi Nastran is engineering analysis and simulation software developed by Noran Engineering, Inc. NEi Nastran is a general purpose finite

More information

6. Results Combination in Hexagonal Shell

6. Results Combination in Hexagonal Shell 6. Results Combination in Hexagonal Shell Applicable CivilFEM Product: All CivilFEM Products Level of Difficulty: Moderate Interactive Time Required: 0 minutes Discipline: Load combinations results Analysis

More information

ANSYS Tutorial Version 6

ANSYS Tutorial Version 6 ANSYS Tutorial Version 6 Fracture Analysis Consultants, Inc www.fracanalysis.com Revised: November 2011 Table of Contents: 1.0 Introduction... 4 2.0 Tutorial 1: Crack Insertion and Growth in a Cube...

More information

Interface with FE programs

Interface with FE programs Page 1 of 47 Interdisciplinary > RFlex > Flexible body Interface Interface with FE programs RecurDyn/RFlex can import FE model from ANSYS, NX/NASTRAN, MSC/NASTRAN and I-DEAS. Figure 1 RecurDyn/RFlex Interface

More information

Modelling and Analysis Lab (FEA)

Modelling and Analysis Lab (FEA) Channabasaveshwara Institute of Technology (Affiliated to VTU, Belagavi & Approved by AICTE, New Delhi) (NAAC Accredited & ISO 9001:2015 Certified Institution) NH 206 (B.H. Road), Gubbi, Tumakuru 572 216.

More information

Modeling a Shell to a Solid Element Transition

Modeling a Shell to a Solid Element Transition LESSON 9 Modeling a Shell to a Solid Element Transition Objectives: Use MPCs to replicate a Solid with a Surface. Compare stress results of the Solid and Surface 9-1 9-2 LESSON 9 Modeling a Shell to a

More information

3. Check by Eurocode 3 a Steel Truss

3. Check by Eurocode 3 a Steel Truss TF 3. Check by Eurocode 3 a Steel Truss Applicable CivilFEM Product: All CivilFEM Products Level of Difficulty: Moderate Interactive Time Required: 40 minutes Discipline: Structural Steel Analysis Type:

More information

Course in ANSYS. Example0410. ANSYS Computational Mechanics, AAU, Esbjerg

Course in ANSYS. Example0410. ANSYS Computational Mechanics, AAU, Esbjerg Course in Example0410 Example Frame 2D Objective: Compute the harmonic response Tasks: Perform a modal analysis Display the mode shapes Perform a harmonic analysis Topics: Topics: Start of analysis, Element

More information

Course in ANSYS. Example0500. ANSYS Computational Mechanics, AAU, Esbjerg

Course in ANSYS. Example0500. ANSYS Computational Mechanics, AAU, Esbjerg Course in Example0500 Example Column beam Objective: Compute the critical buckling load and display the mode shape Tasks: Create a table and compare results with results obtained from buckling theory?

More information

An Explanation on Computation of Fracture Mechanics Parameters in ANSYS

An Explanation on Computation of Fracture Mechanics Parameters in ANSYS University of Tennessee Space Institute Department of Mechanical, Aerospace & Biomedical Engineering Fracture Mechanics Course (ME 524) An Explanation on Computation of Fracture Mechanics Parameters in

More information

Start AxisVM by double-clicking the AxisVM icon in the AxisVM folder, found on the Desktop, or in the Start, Programs Menu.

Start AxisVM by double-clicking the AxisVM icon in the AxisVM folder, found on the Desktop, or in the Start, Programs Menu. 1. BEAM MODEL Start New Start AxisVM by double-clicking the AxisVM icon in the AxisVM folder, found on the Desktop, or in the Start, Programs Menu. Create a new model with the New Icon. In the dialogue

More information

Course in. FEM ANSYS Classic

Course in. FEM ANSYS Classic Course in Geometric modeling Modeling Programme for Lesson: Modeling considerations Element Type Real Constants Material Properties Sections Geometry/Modeling WorkPlane & Coordinate systems Keypoints Lines

More information

Course in ANSYS. Example0152. ANSYS Computational Mechanics, AAU, Esbjerg

Course in ANSYS. Example0152. ANSYS Computational Mechanics, AAU, Esbjerg Course in Example0152 Example Truss 2D E = 210e09N/m 2 n = 0.3 L1 = L2 = L3 = 3.6m H = 3.118m a = b = 0.050mm F1 = 280kN F2 = 210kN F3 = 280kN F4 = 360kN Example0152 2 Example Truss 2D Objective: Compute

More information

MAE 323: Lab 7. Instructions. Pressure Vessel Alex Grishin MAE 323 Lab Instructions 1

MAE 323: Lab 7. Instructions. Pressure Vessel Alex Grishin MAE 323 Lab Instructions 1 Instructions MAE 323 Lab Instructions 1 Problem Definition Determine how different element types perform for modeling a cylindrical pressure vessel over a wide range of r/t ratios, and how the hoop stress

More information

Abaqus/CAE Axisymmetric Tutorial (Version 2016)

Abaqus/CAE Axisymmetric Tutorial (Version 2016) Abaqus/CAE Axisymmetric Tutorial (Version 2016) Problem Description A round bar with tapered diameter has a total load of 1000 N applied to its top face. The bottom of the bar is completely fixed. Determine

More information

Exercise 1: Axle Structural Static Analysis

Exercise 1: Axle Structural Static Analysis Exercise 1: Axle Structural Static Analysis The purpose of this exercise is to cover the basic functionality of the Mechanical Toolbar (MTB) in the context of performing an actual analysis. Details of

More information

CE366/ME380 Finite Elements in Applied Mechanics I Fall 2007

CE366/ME380 Finite Elements in Applied Mechanics I Fall 2007 CE366/ME380 Finite Elements in Applied Mechanics I Fall 2007 FE Project 1: 2D Plane Stress Analysis of acantilever Beam (Due date =TBD) Figure 1 shows a cantilever beam that is subjected to a concentrated

More information

Introduction to MSC.Patran

Introduction to MSC.Patran Exercise 1 Introduction to MSC.Patran Objectives: Create geometry for a Beam. Add Loads and Boundary Conditions. Review analysis results. MSC.Patran 301 Exercise Workbook - Release 9.0 1-1 1-2 MSC.Patran

More information

Finite Element Method using Pro/ENGINEER and ANSYS

Finite Element Method using Pro/ENGINEER and ANSYS Finite Element Method using Pro/ENGINEER and ANSYS Notes by R.W. Toogood The transfer of a model from Pro/ENGINEER to ANSYS will be demonstrated here for a simple solid model. Model idealizations such

More information

Exercise 9a - Analysis Setup and Loading

Exercise 9a - Analysis Setup and Loading Exercise 9a - Analysis Setup and Loading This exercise will focus on setting up a model for analysis. At the end of this exercise, you will run an analysis in OptiStruct. While this exercise is focused

More information

SETTLEMENT OF A CIRCULAR FOOTING ON SAND

SETTLEMENT OF A CIRCULAR FOOTING ON SAND 1 SETTLEMENT OF A CIRCULAR FOOTING ON SAND In this chapter a first application is considered, namely the settlement of a circular foundation footing on sand. This is the first step in becoming familiar

More information

Sliding Split Tube Telescope

Sliding Split Tube Telescope LESSON 15 Sliding Split Tube Telescope Objectives: Shell-to-shell contact -accounting for shell thickness. Creating boundary conditions and loads by way of rigid surfaces. Simulate large displacements,

More information

Dynamics and Vibration. Tutorial

Dynamics and Vibration. Tutorial Dynamics and Vibration Tutorial Startup To use Dynamics and Vibration Analysis (DVA), you must first start TK Solver. Once in TK, select Dynamics & Vibration from the Applications Menu. The DVA Menu will

More information

Release 10. Kent L. Lawrence. Mechanical and Aerospace Engineering University of Texas at Arlington SDC PUBLICATIONS

Release 10. Kent L. Lawrence. Mechanical and Aerospace Engineering University of Texas at Arlington SDC PUBLICATIONS ANSYS Release 10 Tutorial Kent L. Lawrence Mechanical and Aerospace Engineering University of Texas at Arlington SDC PUBLICATIONS Schroff Development Corporation www.schroff.com www.schroff-europe.com

More information

ANSYS Mechanical APDL Tutorials

ANSYS Mechanical APDL Tutorials ANSYS Mechanical APDL Tutorials ANSYS, Inc. Southpointe 275 Technology Drive Canonsburg, PA 15317 ansysinfo@ansys.com http://www.ansys.com (T) 724-746-3304 (F) 724-514-9494 Release 13.0 November 2010 ANSYS,

More information

Chapter 3. Thermal Tutorial

Chapter 3. Thermal Tutorial Chapter 3. Thermal Tutorial Tutorials> Chapter 3. Thermal Tutorial Solidification of a Casting Problem Specification Problem Description Prepare for a Thermal Analysis Input Geometry Define Materials Generate

More information

ANSYS Tutorial Release 11.0

ANSYS Tutorial Release 11.0 ANSYS Tutorial Release 11.0 Structural & Thermal Analysis Using the ANSYS Release 11.0 Environment Kent L. Lawrence Mechanical and Aerospace Engineering University of Texas at Arlington SDC PUBLICATIONS

More information

Introduction To Finite Element Analysis

Introduction To Finite Element Analysis Creating a Part In this part of the tutorial we will introduce you to some basic modelling concepts. If you are already familiar with modelling in Pro Engineer you will find this section very easy. Before

More information

Course in ANSYS. Example0303. ANSYS Computational Mechanics, AAU, Esbjerg

Course in ANSYS. Example0303. ANSYS Computational Mechanics, AAU, Esbjerg Course in Example0303 Example Gear axle 3D Objective: Compute the maximum stress von Mise Tasks: How should this be modeled? Topics: Element type, Real constants, modeling, Plot results, output graphics,

More information

Finite Element Analysis using ANSYS Mechanical APDL & ANSYS Workbench

Finite Element Analysis using ANSYS Mechanical APDL & ANSYS Workbench Finite Element Analysis using ANSYS Mechanical APDL & ANSYS Workbench Course Curriculum (Duration: 120 Hrs.) Section I: ANSYS Mechanical APDL Chapter 1: Before you start using ANSYS a. Introduction to

More information

ANSYS Workbench Guide

ANSYS Workbench Guide ANSYS Workbench Guide Introduction This document serves as a step-by-step guide for conducting a Finite Element Analysis (FEA) using ANSYS Workbench. It will cover the use of the simulation package through

More information

FOUNDATION IN OVERCONSOLIDATED CLAY

FOUNDATION IN OVERCONSOLIDATED CLAY 1 FOUNDATION IN OVERCONSOLIDATED CLAY In this chapter a first application of PLAXIS 3D is considered, namely the settlement of a foundation in clay. This is the first step in becoming familiar with the

More information

Linear Bifurcation Buckling Analysis of Thin Plate

Linear Bifurcation Buckling Analysis of Thin Plate LESSON 13a Linear Bifurcation Buckling Analysis of Thin Plate Objectives: Construct a quarter model of a simply supported plate. Place an edge load on the plate. Run an Advanced FEA bifurcation buckling

More information

Normal Modes - Rigid Element Analysis with RBE2 and CONM2

Normal Modes - Rigid Element Analysis with RBE2 and CONM2 LESSON 16 Normal Modes - Rigid Element Analysis with RBE2 and CONM2 Y Y Z Z X Objectives: Create a geometric representation of a tube. Use the geometry model to define an analysis model comprised of plate

More information

Module 1.7W: Point Loading of a 3D Cantilever Beam

Module 1.7W: Point Loading of a 3D Cantilever Beam Module 1.7W: Point Loading of a 3D Cantilever Beam Table of Contents Page Number Problem Description 2 Theory 2 Workbench Analysis System 4 Engineering Data 5 Geometry 6 Model 11 Setup 13 Solution 14 Results

More information

Torsional-lateral buckling large displacement analysis with a simple beam using Abaqus 6.10

Torsional-lateral buckling large displacement analysis with a simple beam using Abaqus 6.10 Torsional-lateral buckling large displacement analysis with a simple beam using Abaqus 6.10 This document contains an Abaqus tutorial for performing a buckling analysis using the finite element program

More information

ANSYS Element. elearning. Peter Barrett October CAE Associates Inc. and ANSYS Inc. All rights reserved.

ANSYS Element. elearning. Peter Barrett October CAE Associates Inc. and ANSYS Inc. All rights reserved. ANSYS Element Selection elearning Peter Barrett October 2012 2012 CAE Associates Inc. and ANSYS Inc. All rights reserved. ANSYS Element Selection What is the best element type(s) for my analysis? Best

More information

ECE421: Electronics for Instrumentation

ECE421: Electronics for Instrumentation ECE421: Electronics for Instrumentation Lecture #8: Introduction to FEA & ANSYS Mostafa Soliman, Ph.D. March 23 rd 2015 Mostafa Soliman, Ph.D. 1 Outline Introduction to Finite Element Analysis Introduction

More information

Institute of Mechatronics and Information Systems

Institute of Mechatronics and Information Systems EXERCISE 4 Free vibrations of an electrical machine model Target Getting familiar with the fundamental issues of free vibrations analysis of a simplified model of an electrical machine, with the use of

More information

Oasys Pdisp. Copyright Oasys 2013

Oasys Pdisp. Copyright Oasys 2013 Oasys Pdisp Copyright Oasys 2013 All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording, taping,

More information

[ ] u 1. ME309 Homework #2 $ % & u = 1 s 2 " # u 2. s,u. A,E constant along length. 4Etc

[ ] u 1. ME309 Homework #2 $ % & u = 1 s 2  # u 2. s,u. A,E constant along length. 4Etc ME09 Homework # OBJECTIVES: Introduction to convergence issues and modeling approaches Postprocessing procedures Element selection Experience with shape functions and stiffness terms NOTES: Problems 1and

More information

Transient Response of a Rocket

Transient Response of a Rocket Transient Response of a Rocket 100 Force 0 1.0 1.001 3.0 Time Objectives: Develope a finite element model that represents an axial force (thrust) applied to a rocket over time. Perform a linear transient

More information

ME Week 12 Piston Mechanical Event Simulation

ME Week 12 Piston Mechanical Event Simulation Introduction to Mechanical Event Simulation The purpose of this introduction to Mechanical Event Simulation (MES) project is to explorer the dynamic simulation environment of Autodesk Simulation. This

More information

Ansys Lab Frame Analysis

Ansys Lab Frame Analysis Ansys Lab Frame Analysis Analyze the highway overpass frame shown in Figure. The main horizontal beam is W24x162 (area = 47.7 in 2, moment of inertia = 5170 in 4, height = 25 in). The inclined members

More information

IJMH - International Journal of Management and Humanities ISSN:

IJMH - International Journal of Management and Humanities ISSN: EXPERIMENTAL STRESS ANALYSIS SPUR GEAR USING ANSYS SOFTWARE T.VADIVELU 1 (Department of Mechanical Engineering, JNTU KAKINADA, Kodad, India, vadimay28@gmail.com) Abstract Spur Gear is one of the most important

More information

Linear and Nonlinear Analysis of a Cantilever Beam

Linear and Nonlinear Analysis of a Cantilever Beam LESSON 1 Linear and Nonlinear Analysis of a Cantilever Beam P L Objectives: Create a beam database to be used for the specified subsequent exercises. Compare small vs. large displacement analysis. Linear

More information

General modeling guidelines

General modeling guidelines General modeling guidelines Some quotes from industry FEA experts: Finite element analysis is a very powerful tool with which to design products of superior quality. Like all tools, it can be used properly,

More information

Finite Element Course ANSYS Mechanical Tutorial Tutorial 3 Cantilever Beam

Finite Element Course ANSYS Mechanical Tutorial Tutorial 3 Cantilever Beam Problem Specification Finite Element Course ANSYS Mechanical Tutorial Tutorial 3 Cantilever Beam Consider the beam in the figure below. It is clamped on the left side and has a point force of 8kN acting

More information

Course in ANSYS. Example0504. ANSYS Computational Mechanics, AAU, Esbjerg

Course in ANSYS. Example0504. ANSYS Computational Mechanics, AAU, Esbjerg Course in Example0504 Example Cantilever beam Objective: Compute the buckling load Tasks: Display the deflection figure? Topics: Topics: Start of analysis, Element type, Real constants, Material, modeling,

More information

5. Shell Reinforcement According To Eurocode 2

5. Shell Reinforcement According To Eurocode 2 5. Shell Reinforcement According To Eurocode Applicable CivilFEM Product: All CivilFEM Products Level of Difficulty: Moderate Interactive Time Required: 5 minutes Discipline: Concrete Shell Reinforcement

More information

Shell-to-Solid Element Connector(RSSCON)

Shell-to-Solid Element Connector(RSSCON) WORKSHOP 11 Shell-to-Solid Element Connector(RSSCON) Solid Shell MSC.Nastran 105 Exercise Workbook 11-1 11-2 MSC.Nastran 105 Exercise Workbook WORKSHOP 11 Shell-to-Solid Element Connector The introduction

More information

Generative Part Structural Analysis Fundamentals

Generative Part Structural Analysis Fundamentals CATIA V5 Training Foils Generative Part Structural Analysis Fundamentals Version 5 Release 19 September 2008 EDU_CAT_EN_GPF_FI_V5R19 About this course Objectives of the course Upon completion of this course

More information

Installation Guide. Beginners guide to structural analysis

Installation Guide. Beginners guide to structural analysis Installation Guide To install Abaqus, students at the School of Civil Engineering, Sohngaardsholmsvej 57, should log on to \\studserver, whereas the staff at the Department of Civil Engineering should

More information

Abaqus CAE Tutorial 6: Contact Problem

Abaqus CAE Tutorial 6: Contact Problem ENGI 7706/7934: Finite Element Analysis Abaqus CAE Tutorial 6: Contact Problem Problem Description In this problem, a segment of an electrical contact switch (steel) is modeled by displacing the upper

More information

ME 442. Marc/Mentat-2011 Tutorial-1

ME 442. Marc/Mentat-2011 Tutorial-1 ME 442 Overview Marc/Mentat-2011 Tutorial-1 The purpose of this tutorial is to introduce the new user to the MSC/MARC/MENTAT finite element program. It should take about one hour to complete. The MARC/MENTAT

More information

Pro MECHANICA STRUCTURE WILDFIRE 4. ELEMENTS AND APPLICATIONS Part I. Yves Gagnon, M.A.Sc. Finite Element Analyst & Structural Consultant SDC

Pro MECHANICA STRUCTURE WILDFIRE 4. ELEMENTS AND APPLICATIONS Part I. Yves Gagnon, M.A.Sc. Finite Element Analyst & Structural Consultant SDC Pro MECHANICA STRUCTURE WILDFIRE 4 ELEMENTS AND APPLICATIONS Part I Yves Gagnon, M.A.Sc. Finite Element Analyst & Structural Consultant SDC PUBLICATIONS Schroff Development Corporation www.schroff.com

More information

Shear and Moment Reactions - Linear Static Analysis with RBE3

Shear and Moment Reactions - Linear Static Analysis with RBE3 WORKSHOP 10a Shear and Moment Reactions - Linear Static Analysis with RBE3 250 10 15 M16x2 bolts F = 16 kn C B O 60 60 200 D A Objectives: 75 75 50 300 Create a geometric representation of the bolts. Use

More information

Abaqus-SwiftComp GUI

Abaqus-SwiftComp GUI Abaqus-SwiftComp GUI Version 1.2.2 User s Manual April 21, 2017 Bo Peng Su Tian Lingxuan Zhou Wenbin Yu ii Table of Contents 1 GENERAL INFORMATION...3 1.1 Installation and Get Started...3 1.2 Abaqus-SwiftComp

More information

Exercise 2: Mesh Resolution, Element Shapes, Basis Functions & Convergence Analyses

Exercise 2: Mesh Resolution, Element Shapes, Basis Functions & Convergence Analyses Exercise 2: Mesh Resolution, Element Shapes, Basis Functions & Convergence Analyses Goals In this exercise, we will explore the strengths and weaknesses of different element types (tetrahedrons vs. hexahedrons,

More information