Truss Optimization. Problem:

Size: px
Start display at page:

Download "Truss Optimization. Problem:"

Transcription

1 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 are OB BC 5 meters, AB 6 meters. The force is F 500 kn. Take E 207 GPa. 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 hour Tutorial Overview This tutorial is divided into six parts: 1) Tutorial Basics 2) Problem Planning 3) Log File 4) Solution 5) Optimization 6) Hand Calculations Audience This tutorial assumes familiarity of ANSYS 8.0; therefore, it does not go into step by step detail. Prerequisites 1) ANSYS 8.0 in house Structural Tutorial 2) Completion of three or more Basic Machine Design Tutorials Objectives 1) Write a log file to build the model 2) Use the ANSYS optimization tool to minimize the cross sectional area of each truss member 3) Calculate a percent error between the ANSYS solution and the theoretical solution 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. Visual aids corresponding to the text appear on the right. Truss Optimization 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 ANSYS optimization tool requires the use of a log file. The log file contains commands that build, constrain, and solve the model. During the optimization process, this log file will be called by the optimization routine. Optimization in ANSYS requires three types of variables. They are: Design Variables Independent quantities, varied to achieve the optimum design. State Variables Quantities that constrain the design. Also known as "dependent variables," they are typically response quantities that are functions of the design variables. Objective Function The dependent variable that you are attempting to minimize. Take a few minutes to plan how you build a truss model that will have these three variables. 2) Select an appropriate element for the mesh. Truss elements only need translational freedom in the X and Y directions. A link1 element would be suitable for this problem. 3) Determine the design and state variables, and the objective function. The design variables are the variables that can be adjusted during optimization. You want to adjust the cross sectional areas of the truss members, A1, A2, and A3. The state variables are the variables that will constrain the adjustment of the design variables. You want to constrain the stress in each truss member so that it does not exceed 50 MPa. You need to create an objective function that includes A1, A2, and A3. The objective function could be the volume of the truss. The volume would be determined by multiplying the length of each truss section by its cross sectional area. 1) Plan a simple, representative geometry. The truss model can be created with 4 keypoints, 5 lines, and 3 areas (by symmetry you can assume that the stress in l 1 is the same is the stress in l 2, and that the stress in l 4 is the same as the stress in l 5 ). 4

5 Log File 1) Enter the preprocessor. /PREP7 2) Define the element for the model. You are going to use a Link1 element for this model. ET,1,LINK1 /PREP7 Enters the model creation preprocessor. 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. 3) 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,a1,.05 *SET,a2,.05 *SET,a3,.05 *SET,V,10*a1+6*a2+2*a3*sqrt(5**2+6**2) *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. 5

6 Log File 4) Define the real constants (i.e. the cross sectional areas for each real constant number). R,1,a1 R,2,a2 R,3,a3 R, NSET, R1, R2, R3, R4, R5, R6 Defines the element real constants. NSET Set identification number (arbitrary). If same as a previous set number, set is redefined. Set number relates to that defined with the element [REAL]. Note that the GUI automatically sets this value. R1, R2, R3, R4, R5, R6 Real constant values (interpreted as area, moment of inertia, thickness, etc., as required for the particular element type using this set), or table names for tabular input of boundary conditions. Use RMORE command if more than six real constants per set are to be input. 5) Define the material properties. MP,EX,1,207e9 MP,PRXY,1,.292 MP, Lab, MAT, C0, C1, C2, C3, C4 Defines a linear material property as a constant or a function of temperature. Lab Valid material property label. Applicable labels are listed under "Material Properties" in the input table for each element type in the ANSYS Elements Reference. EX -- Elastic moduli (also EY, EZ). PRXY -- Major Poisson's ratios (also PRYZ, PRXZ). 6

7 Log File 6) You will now define keypoints used in the model. K,1,0,0,0 K,2,5,0,0 K,3,10,0,0 K,4,5,6,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. 7) You will now create the five lines used in the model. L,1,2 L,2,3 L,2,4 L,1,4 L,3,4 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. 8) You will now specify the number of element divisions per line. For this problem, you will use 1 element per line. LESIZE,ALL,,,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. 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) NDIV If positive, NDIV is the number of element divisions per line. 7

8 Log File 9) You will now assign different cross sectional areas (real constants) to certain lines. This step involves three commands. The first command specifies which line is selected (you can turn line numbers on if needed). The second command defines the attributes for the selected line. The third command reselects all lines. LSEL,S,LINE,,1,2 LATT,1,1,1,,,, LSEL,ALL LSEL,S,LINE,,3 LATT,1,2,1,,,, LSEL,ALL LSEL,S,LINE,,4,5 LATT,1,3,1,,,, LSEL,ALL Lines 1 and 2 are assigned area 1. Line 3 is assigned area 2. Lines 4 and 5 are assigned area 3. The material number and type number are constant for all lines in this problem. LSEL, Type, Item, Comp, VMIN, VMAX, VINC, KSWP Type Label identifying the type of select: S -- Select a new set (default). ALL -- Restore the full set. The following fields are used only with Type S, R, A, or U: Item Label identifying data. Defaults to LINE. Comp Component of the item (if required). VMIN Minimum value of item range. Ranges are line numbers, coordinate values, attribute numbers, etc., as appropriate for the item. VMAX Maximum value of item range. VINC Value increment within range. Used only with integer ranges (such as for line numbers). Defaults to 1. VINC cannot be negative. 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. 10) Mesh all the lines. LMESH,ALL 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). Use ALL to select all lines. 8

9 Log File 11) Exit the preprocessor FINISH FINISH Exits normally from a processor. 12) Enter the solver. /SOLU Enters the solution processor. /SOLU 13) Add constraints to keypoints 1 and 3. DK,1,ALL,0 DK,3,UY,0 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. 14) Apply the force, F, to keypoint 2 in the negative y direction. FK,2,FY, 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. 15) Solve the model and exit the solver. SOLVE FINISH 16) Enter the post processor. /POST1 /POST1 Enters the database results postprocessor. 9

10 Log File 17) Specify the type of averaging that ANSYS will use for the element table. AVPRIN,0,, AVPRIN, KEY, EFFNU Specifies how principal and vector sums are to be calculated. KEY Averaging key: 0 -- Average the component values from the elements at a common node, then calculate the principal or vector sum from the averaged components (default) Calculate the principal or vector sum values on a per element basis, then average these values from the elements at a common node. 18) Create an element table named Stress that will find the stress in each element. ETABLE, Lab, Item, Comp See ANSYS help for information regarding the arguments for this function (too long to list here). ETABLE,Stress,LS, 1 19) Plot the element table named Stress. PLETABLE,STRESS,NOAVG PLETAB, Itlab, Avglab Displays element table items. Itlab User-defined label, as specified with the ETABLE command, of item to be displayed. Avglab Averaging operation: NOAV -- Do not average element items at common nodes (default). AVG -- Average the element items at common nodes. 10

11 Log File 20) You will now retrieve three different stress values that you will use during the optimization process. They will be called sigma12, sigma3, and sigma45 to correspond to the stresses in elements 1 or 2, element 3, and elements 4 or 5 respectively. *GET,sigma12,ELEM,1,ETAB,STRESS *GET,sigma3,ELEM,3,ETAB,STRESS *GET,sigma45,ELEM,4,ETAB,STRESS *GET, Par, Entity, ENTNUM, Item1, IT1NUM, Item2, IT2NUM Retrieves a value and stores it as a scalar parameter or part of an array parameter. Par The name of the resulting parameter. Entity Entity keyword. Valid keywords are NODE, ELEM, KP, LINE, AREA, VOLU, PDS, etc., as shown for Entity in the tables below. ENTNUM The number or label for the entity (as shown for ENTNUM in the tables below). In some cases, a zero (or blank) ENTNUM represents all entities of the set. Item1 The name of a particular item for the given entity. (ETAB for this problem) IT1NUM The number (or label) for the specified Item1 (STRESS for this problem). 21) Save the log file. 11

12 Solution 22) 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. Work out any bugs in your code at this point. Your solution should appear similar to the one shown below. 12

13 Optimization You will now use the optimization tool in the GUI of ANSYS to define the optimization parameters. Take a moment to review the description of the optimization process given in the Problem Planning section of this tutorial. 23) Assign the log file you just created as the file to be used for optimization. > Design Opt > Analysis File > Assign Browse for your log file and select OK. 24) Define the design variables. > Design Opt > Design Variables The Design Variable window opens. Select Add to add a new variable. Another dialog box will open. You will create three design variables using A1, A2, and A3 and the following parameters: Minimum Value: 1e-6 Maximum Value:.1 Tolerance: Blank 25) Define the state variables. > Design Opt > State Variables The State Variable window opens. Select Add to add a new variable. Another dialog box will open. You will create three state variables using sigma 12, sigma 3, and sigma 45 and the following parameters: Sigma12, Sigma3 Minimum Value: 0 Maximum Value: 50e6 Tolerance: Blank Sigma45 Minimum Value: -50e6 Maximum Value: 50e6 Tolerance: Blank 13

14 26) Define the Objective Function. > Design Opt > Objective Truss Optimization Optimization The only remaining variable for use as the objective function is V. Set the tolerance value to.001. ANSYS will stop optimizing when the third digit after the decimal in the volume resultant stops fluctuating. 27) Set the optimization Tool/Method. > Design Opt > Method/Tool The Method/Tool window opens. Select the First Order method and select OK. Another window opens. Set the maximum number of iterations to ) Start the optimizer. > Design Opt > Run The optimizer will begin to run iterations. You can watch the screen as this occurs. 29) List the optimum design set. > Design Opt > Design Sets > List Click on All Sets, and select OK. A list of all design sets used will appear. The optimal design set will have asterisks next to it. Read off the values for A1, A2, A3, and V. They should be similar to (but probably not exact to) the following: A1: E-02 A2: E-01 A3: E-02 V:

15 Hand Calculations , , (10) (10) (10) 208 tan(50.19) sin(50.19) 250 sin(50.19) 250 m A m A m A F A kn F F kn F F F AC AO AB BC OB OB BC AO AC AO σ y x 250 F AO F OB 50.19

Stiffness of Tapered Beam

Stiffness of Tapered Beam 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

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

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

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

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

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

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

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

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

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 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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Exercise 2: Bike Frame Analysis

Exercise 2: Bike Frame Analysis Exercise 2: Bike Frame Analysis This exercise will analyze a new, innovative mountain bike frame design under structural loads. The objective is to determine the maximum stresses in the frame due to the

More information

Exercise 2: Bike Frame Analysis

Exercise 2: Bike Frame Analysis Exercise 2: Bike Frame Analysis This exercise will analyze a new, innovative mountain bike frame design under structural loads. The objective is to determine the maximum stresses in the frame due to the

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

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

Tutorial 1: Welded Frame - Problem Description

Tutorial 1: Welded Frame - Problem Description Tutorial 1: Welded Frame - Problem Description Introduction In this first tutorial, we will analyse a simple frame: firstly as a welded frame, and secondly as a pin jointed truss. In each case, we will

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

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

Structural static analysis dome

Structural static analysis dome Structural static analysis dome Calculate the maximum displacements of the dome depicted in Fig.1 and consisting of two types of beams with the crosssectional area: 0.08m*0.21m ( zig-zags ) and 0.07m*0.16m

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

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

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. 4. MEMBRANE MODEL 1.1. Preprocessing with surface elements 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

More information

11. Push-over analysis

11. Push-over analysis . Push-over analysis Applicable CivilFEM Product: All CivilFEM Products Level of Difficulty: Moderate Interactive Time Required: 90 minutes Discipline: Structural Steel Analysis Type: Push Over Element

More information

Essay 5 Tutorial for a Three-Dimensional Heat Conduction Problem Using ANSYS

Essay 5 Tutorial for a Three-Dimensional Heat Conduction Problem Using ANSYS Essay 5 Tutorial for a Three-Dimensional Heat Conduction Problem Using ANSYS 5.1 Introduction The problem selected to illustrate the use of ANSYS software for a three-dimensional steadystate heat conduction

More information

WORKSHOP 6.3 WELD FATIGUE USING NOMINAL STRESS METHOD. For ANSYS release 14

WORKSHOP 6.3 WELD FATIGUE USING NOMINAL STRESS METHOD. For ANSYS release 14 WORKSHOP 6.3 WELD FATIGUE USING NOMINAL STRESS METHOD For ANSYS release 14 Objective: In this workshop, a weld fatigue analysis on a VKR-beam with a plate on top using the nominal stress method is demonstrated.

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

Lab Practical - Finite Element Stress & Deformation Analysis

Lab Practical - Finite Element Stress & Deformation Analysis Lab Practical - Finite Element Stress & Deformation Analysis Part A The Basics In this example, some of the basic features of a finite element analysis will be demonstrated through the modelling of a simple

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

Figure Random vibration analysis of a simply supported beam

Figure Random vibration analysis of a simply supported beam Example 6.5.8-1 [Spectrum Analysis] Determine the first two natural frequencies and the response of a damped two degree of freedom system subject to a random acceleration with a spectral density function

More information

FINITE ELEMENT ANALYSIS OF A PLANAR TRUSS

FINITE ELEMENT ANALYSIS OF A PLANAR TRUSS FINITE ELEMENT ANALYSIS OF A PLANAR TRUSS Instructor: Professor James Sherwood Revised: Michael Schraiber, Dimitri Soteropoulos, Sanjay Nainani Programs Utilized: HyperMesh Desktop v2017.2, OptiStruct,

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

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

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

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

ME Optimization of a Truss

ME Optimization of a Truss ME 475 - Optimization of a Truss Analysis Problem Statement: The following problem will be analyzed using Abaqus and optimized using HEEDS. 4 5 8 2 11 3 10 6 9 1 7 12 6 m 300 kn 300 kn 22 m 35 m Figure

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

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

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

FINITE ELEMENT ANALYSIS OF A PLANAR TRUSS

FINITE ELEMENT ANALYSIS OF A PLANAR TRUSS FINITE ELEMENT ANALYSIS OF A PLANAR TRUSS Instructor: Professor James Sherwood Revised: Michael Schraiber, Dimitri Soteropoulos Programs Utilized: HyperMesh Desktop v12.0, OptiStruct, HyperView This tutorial

More information

PES Institute Of Technology Bangalore South Campus. Department of Mechanical Engineering

PES Institute Of Technology Bangalore South Campus. Department of Mechanical Engineering PES Institute Of Technology Department of Mechanical Engineering Computer Aided Modeling & Analysis Laboratory Manual (Finite Element Method) For 6th Semester Mechanical Engineering Coordinator Mr. Madhu.

More information

Melting Using Element Death

Melting Using Element Death Melting Using Element Death Introduction This tutorial was completed using ANSYS 7.0 The purpose of the tutorial is to outline the steps required to use element death to model melting of a material. Element

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

Institute of Mechatronics and Information Systems

Institute of Mechatronics and Information Systems EXERCISE 2 Free vibrations of a beam arget Getting familiar with the fundamental issues of free vibrations analysis of elastic medium, with the use of a finite element computation system ANSYS. Program

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

Linear Buckling Analysis of a Plate

Linear Buckling Analysis of a Plate Workshop 9 Linear Buckling Analysis of a Plate Objectives Create a geometric representation of a plate. Apply a compression load to two apposite sides of the plate. Run a linear buckling analysis. 9-1

More information

ASME Fatigue DOCUMENTATION. ANSYS Mechanical Application. Extension version Compatible ANSYS version

ASME Fatigue DOCUMENTATION. ANSYS Mechanical Application. Extension version Compatible ANSYS version ASME Fatigue ANSYS Mechanical Application DOCUMENTATION Extension version 180.1 Release date 06-Apr-17 Compatible ANSYS version 18.0 www.edrmedeso.com Table of Contents 1 INTRODUCTION... 3 2 PRODUCT RESTRICTIONS...

More information

MECH 3130: Mechanics of Materials. Fall Laboratory Manual. Volume II

MECH 3130: Mechanics of Materials. Fall Laboratory Manual. Volume II MECH 3130: Mechanics of Materials Fall 2015 Laboratory Manual Volume II Instructor Dr. Peter Schwartz Dr. Nels Madsen Lab Teaching Assistants Quang Nguyen: qzn0003@auburn.edu Abhiram Pasumarthy rzp0025@auburn.edu

More information

Tekla Structures Analysis Guide. Product version 21.0 March Tekla Corporation

Tekla Structures Analysis Guide. Product version 21.0 March Tekla Corporation Tekla Structures Analysis Guide Product version 21.0 March 2015 2015 Tekla Corporation Contents 1 Getting started with analysis... 7 1.1 What is an analysis model... 7 Analysis model objects...9 1.2 About

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

FINITE ELEMENT ANALYSIS OF A PLANAR TRUSS

FINITE ELEMENT ANALYSIS OF A PLANAR TRUSS Problem Description: FINITE ELEMENT ANALYSIS OF A PLANAR TRUSS Instructor: Professor James Sherwood Revised: Dimitri Soteropoulos Programs Utilized: Abaqus/CAE 6.11-2 This tutorial explains how to build

More information

FEA of Composites Classical Lamination Theory Example 1

FEA of Composites Classical Lamination Theory Example 1 FEA of Composites Classical Lamination Theory Example 1 22.514 Instructor: Professor James Sherwood Author: Dimitri Soteropoulos Revised by Jacob Wardell Problem Description: A four layer [0/90] s graphite-epoxy

More information

RD-1070: Analysis of an Axi-symmetric Structure using RADIOSS

RD-1070: Analysis of an Axi-symmetric Structure using RADIOSS RADIOSS, MotionSolve, and OptiStruct RD-1070: Analysis of an Axi-symmetric Structure using RADIOSS In this tutorial, you will learn the method of modeling an axi- symmetry problem in RADIOSS. The figure

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

Advance Design. Tutorial

Advance Design. Tutorial TUTORIAL 2018 Advance Design Tutorial Table of Contents About this tutorial... 1 How to use this guide... 3 Lesson 1: Preparing and organizing your model... 4 Step 1: Start Advance Design... 5 Step 2:

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

FINITE ELEMENT ANALYSIS (FEA) OF A C130 TOWING BAR

FINITE ELEMENT ANALYSIS (FEA) OF A C130 TOWING BAR FINITE ELEMENT ANALYSIS (FEA) OF A C130 TOWING BAR Fadzli Ibrahim* & Mohammad Shafiq Toha Mechanical & Aerospace Technology Division (BTJA), Science & Technology Research Institute for Defence (STRIDE),

More information

Abaqus CAE Tutorial 1: 2D Plane Truss

Abaqus CAE Tutorial 1: 2D Plane Truss ENGI 7706/7934: Finite Element Analysis Abaqus CAE Tutorial 1: 2D Plane Truss Lab TA: Xiaotong Huo EN 3029B xh0381@mun.ca Download link for Abaqus student edition: http://academy.3ds.com/software/simulia/abaqus-student-edition/

More information

Problem description. It is desired to analyze the cracked body shown using a 3D finite element mesh: Top view. 50 radius. Material properties:

Problem description. It is desired to analyze the cracked body shown using a 3D finite element mesh: Top view. 50 radius. Material properties: Problem description It is desired to analyze the cracked body shown using a 3D finite element mesh: Top view 30 50 radius 30 Material properties: 5 2 E = 2.07 10 N/mm = 0.29 All dimensions in mm Crack

More information

LAB MANUAL. Dharmapuri ME6711-SIMULATION AND ANALYSIS. Regulation : Branch : B.E. Mechanical Engineering

LAB MANUAL. Dharmapuri ME6711-SIMULATION AND ANALYSIS. Regulation : Branch : B.E. Mechanical Engineering Dharmapuri 636 703 LAB MANUAL Regulation : Branch : 2013 B.E. Mechanical Engineering Year & Semester : IV Year / VII Semester ME6711-SIMULATION AND ANALYSIS Varuvan Vadivelan Institute of Technology, Dharmapuri

More information

2018/10/24 Wednesday, October 24, 2018

2018/10/24 Wednesday, October 24, 2018 2018/10/24 Wednesday, October 24, 2018 11:35 AM Run Ansys by choosing: Each crack tip must be in one area, that's why we broke the geometry as follows: ME524 Page 1 Creating the areas (that will be meshed

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

PLAXIS 3D. Tutorial Manual

PLAXIS 3D. Tutorial Manual PLAXIS 3D Tutorial Manual 2010 Build 2681 TABLE OF CONTENTS TABLE OF CONTENTS 1 Introduction 5 2 Lesson 1: Foundation in overconsolidated clay 7 2.1 Geometry 7 2.2 Case A: Rigid foundation 8 2.3 Case B:

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

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

Course in ANSYS. Example0505. ANSYS Computational Mechanics, AAU, Esbjerg Course in Example0505 Example Plate Objective: Compute the buckling load Tasks: How should this be modelled? Compare results with results obtained from norm calculations? Topics: Element type, Real constants,

More information

PLAXIS 3D. Tutorial Manual

PLAXIS 3D. Tutorial Manual PLAXIS 3D Tutorial Manual 2017 Build 9039 TABLE OF CONTENTS TABLE OF CONTENTS 1 Foundation in overconsolidated clay 7 1.1 Case A: Rigid foundation 8 1.2 Case B: Raft foundation 20 1.3 Case C: Pile-Raft

More information

CE Advanced Structural Analysis. Lab 4 SAP2000 Plane Elasticity

CE Advanced Structural Analysis. Lab 4 SAP2000 Plane Elasticity Department of Civil & Geological Engineering COLLEGE OF ENGINEERING CE 463.3 Advanced Structural Analysis Lab 4 SAP2000 Plane Elasticity February 27 th, 2013 T.A: Ouafi Saha Professor: M. Boulfiza 1. Rectangular

More information

DMU Engineering Analysis Review

DMU Engineering Analysis Review DMU Engineering Analysis Review Overview Conventions What's New? Getting Started Entering DMU Engineering Analysis Review Workbench Generating an Image Visualizing Extrema Generating a Basic Analysis Report

More information

DMU Engineering Analysis Review

DMU Engineering Analysis Review Page 1 DMU Engineering Analysis Review Preface Using This Guide Where to Find More Information Conventions What's New? Getting Started Inserting a CATAnalysis Document Using DMU Space Analysis From CATAnalysis

More information

CE Advanced Structural Analysis. Lab 1 Introduction to SAP2000

CE Advanced Structural Analysis. Lab 1 Introduction to SAP2000 Department of Civil & Geological Engineering COLLEGE OF ENGINEERING CE 463.3 Advanced Structural Analysis Lab 1 Introduction to SAP2000 January 09 th, 2013 T.A: Ouafi Saha Professor: M. Boulfiza Objectives:

More information