CHAPTER 5 USE OF STL FILE FOR FINITE ELEMENT ANALYSIS

Size: px
Start display at page:

Download "CHAPTER 5 USE OF STL FILE FOR FINITE ELEMENT ANALYSIS"

Transcription

1 CHAPTER 5 USE OF STL FILE FOR FINITE ELEMENT ANALYSIS 5.1 Introduction: Most CAD software in the market can generate STL files, and these are generally used for prototyping and rendering purposes. These files represent a triangulated boundary of a solid. Algorithms for the generation of STL triangulation are highly efficient, and the solid can be approximated very precisely. The STL file format is composed of an extensive list of triangle facets and the surface normals. These facets are composed of the coordinates of the three vertices of the triangle, in addition to the coordinates of the normal oriented to the exterior of the solid. This triangulation is built to minimize a geometric approximation criterion that is related to the real boundary of the solid. In any FEA analysis discritisation of a solid model plays a very important role and research is done in the area of effective remeshing of STL file generated from solid model when the aspect ratio is very high, for example the solid model of a cylinder which is converted into STL file using any commercial software. So for remeshing mainly STL file is considered which is developed from boundary represented solid model. But in this chapter an attempt is made to use a triangulated STL file which is already perfectly meshed and originally developed from point cloud data for finite element analysis. Thus in this process the time and efforts required for remeshing can be avoided. Finite element analysis divides the given region into finite size elements. Basically four types of elements are used to discretise the given continuum. They are point elements, line elements, area elements, and volume elements. So one has to choose an appropriate type of element and this selection is mainly dependent upon the application. The point cloud data obtained from either CMM or Laser Scanner is the data of coordinates of various points lying on a surface. This is converted in to small triangular planer surfaces, when STL file is created. Thus STL file converts the point cloud data in to a well stitched area patch without gaps and overlaps, creating a surface model for which triangulated area element being appropriate. 5.2 Classification of elements depending upon shape of the element: The commonly used area elements in finite element analysis are triangles, or quadrilaterals. Triangular elements are preferred as they can 133

2 negotiate curve boundaries also. As STL file gives triangular patches program developed creates triangular elements. the Further classification of element depending upon direction of load. Loads acting in case of area elements can be in-plane loads, or normal loads. If an element is oriented in x-y plane, and if the force acting is in x-y direction it is called as in-plane load, while if the load is in z direction it is called as normal load. The mathematical treatment to estimate stresses for both cases is totally different. If a plate is hinged at one edge and a force parallel to plate is applied at other edge, it is in plane stress. If the ends of a tube are fixed, and if the tube is heated, due to thermal expansion a compressive stress is induced in tube. This is the case of in-plane stress. While the stress induced in boiler shell due to internal pressure, which acts normal to shell, hoop stress (tensile stress) is induced in the shell. This is the case of normal load. Plain Element (a) Fig. 5.1 Shell Element (b) The vertices of elements are called as nodes in finite element analysis. In STL file the triangles are created by joining the three points of which x, y, and z coordinates are known, as such the various points present in point cloud data are nothing but nodes for the purpose of finite element analysis, and the triangular facets created are the triangular elements for the purpose of finite element analysis. Preprocessing, Solution, and Post processing are the three major steps involved in any commercial finite element analysis software. 134

3 (A). Steps in Preprocessing are: a. Defining the type of analysis to be carried out (structural, thermal, fluid, fluid dynamics, electro-magnetic etc.) b. Defining type of element, (point, line, area, volume etc.) Further classification of element such as triangular or quadrilateral. Further classification of element such as plane stress, plane strain, shell etc. c. If required defining real constants such as thickness in case of shell elements. d. Defining material by specifying required material properties, such as modules of elasticity, Poisons ratio etc. e. Creation of model f. Meshing the model g. Applying boundary conditions, such as constraints, and external forces etc. The above mentioned steps are carried out manually and need a skilled interpretation and consumes more time. (B). Solution: In this step a set of linear simultaneous equations is formulated, and then these equations are solved using suitable solver. The number of equations created is product of number of nodes and degree of freedom available per node. The result of solution of equations is stored in a separate data base. This process is carried out with the click of mouse when using commercial software. (C). Post processing: In this step using the results obtained from solution of linear simultaneous equations, further calculations are carried out and the required results are obtained. The results thus obtained are then presented in graphical form, or tabulated form as requested. This process is also carried through software interactively. 5.3 Use of db.log file: This is a database file and it mainly records the different commands used in ANSYS after opening a file. This file is similar to the list command used in AUTOCAD. Hence this db.log file records all the commands records in a particular sequence. In ANSYS major parameters required to define are the type of analysis, type of element, material selection, real constant if required, model creation, meshing parameters and load 135

4 conditions like force acting on nodes and displacement of nodes. All these parameters get recorded in a sequence in db.log file and can be opened in notepad. The file can be edited if required. This modified file can be reopened in ANSYS with all the new changes. But initially the parameter selection is done manually. Using this concept a program is now developed to replace the manual task of preprocessing using following methodology: Parameters assumed are as below: 1. The type of analysis : Structural 2. Type of element : Area element 3. Further classification of : Triangular plane stress analysis element 4. Material properties : (suitable for Steel) Modules of elasticity = 2*10 5 N/mm 2. Poisons ratio = 0.3 All above parameters can be changed if required through software. Analysis type, type of element, its real constants, and material used can be modified through software as they are the physical properties of a physical component 5. Creating model: The file "temp4.dat" is the main input to create model. The file "temp4.dat" consists of the x, y and z coordinates of the vertices of triangles written in sequence as given below: A sample "temp4.dat" file: Node no X Y E E E E E E E E E E E E-02 Z Table 5.1 temp4.dat file 136

5 The first three lines of this sample data file denote the three vertices of the first triangular facet, while the next three lines denote the three vertices of the second triangular facet, and so on. In terminology of finite element analysis the file denotes 12 nodes, the first three nodes denoting element no. 1, while the next three nodes denoting element no.2 and so on. A db.log file as shown below is created by AN SYS using above sample file. 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, , , , , , , , , , , , , , , , , , , , , , , , , ,,, ,,, ,,, ,,, ,,, ,,, ,, ,, ,, , , , FITEM,2, 1 FITEM,2, 2 FITEM,2, 3 E,P51X FLST,2,3,1 FITEM,2, 4 FITEM,2, 5 FITEM,2, 6 E,P51X FLST,2,3,1 FITEM,2, 7 FITEM,2, 8 FITEM,2, 9 E.P51X FLST,2,3,1 FITEM,2, 10 FITEM,2, 11 FITEM,2, 12 E,P51X 137

6 When the program "analysis" is executed a data base log (db.log) file is created, using a temp4.dat" as input and "application.log" as output. This log file is used as input to "ANSYS" software which creates the model, with above mentioned parameters, which can be modified if required. Boundary conditions are applied by user as required, completing preprocessing process. Solution is done by using solve command, and then post-processor displays the required results. 5.4 Quality factor: STL triangulation cannot be used directly in the finite element method (FEM), mainly because it requires specific characteristics in the geometrical description of the domain to be computed. In FEM, the geometric and functional support is provided by the elements (triangles or others), and they must have a specific shape, i.e. the proper size and the proper quality factor for the error estimator of the calculation to be as high as desired [57,58]. Here, for a surface triangle e, its quality (in the isotropic case) is defined where Ae is the area of the triangle and Li is the length of the ith edge. Elements with Qe larger than 0.7 are considered to be of a good quality while elements with a value lower that 0.3 indicate poor-quality elements. This quality factor is bounded between 0 (for all kinds of degenerated triangles) and 1 (for equilateral triangles). The finite element analysis software such as ANSYS has an inbuilt facility to check aspect ratio, or quality factor of an element. In general quality factor can be looked upon as ratio of area of triangle to the perimeter of triangle. Mathematically Quality factor has been defined as: QFACTOR = 4*1.7320*AREA/(E12+E22+E3 2 ) where E1,E2,E3 denotes lengths of three edges of triangle. A program name "anaval" has been developed to estimate the quality factor using following methodology. The file temp4.dat is the input to this program. For each geometry, the following information is provided through temp4.dat: 1. initial number of points, 2. the initial number of triangles. The output of this program is a text file named "anarepo.txt" which reports the element number, its x, y and z coordinates, and quality factor (if it is less than 0.3, total number of elements and number of bad elements). The lengths of three edges are calculated by using distance formula d x = ^(x 2 -x l f+(y 2 -y l ) 2 +(z 2 -z l ) 2 138

7 And area of triangle is calculated by using the formula A = ^]sx(s-a)x(s-b)x(s-c) triangle while s = (a+b+c)/2 where a,b,c denotes the three sides of 5.5 Aspect Ratio: If quality factor is less than 0.3 is not recommended however AN SYS help file states: "Aspect ratio is computed and tested for all except Emag or FLOTRAN elements. This shape measure has been reported in finite element literature for decades, and is one of the easiest ones to understand. Some analysts want to be warned about high aspect ratio so they can verify that the creation of any stretched elements was intentional. Many other analysts routinely ignore it". Unless elements are so stretched that numeric round off could become a factor (aspect ratio > 1000), aspect ratio alone has little correlation with analysis accuracy. Finite element meshes should be tailored to the physics of the given problem; i.e., fine in the direction of rapidly changing field gradients, relatively coarse in directions with less rapidly changing fields. Sometimes this calls for elements having aspect ratios of 10, 100, or in extreme cases (Examples include shell or thin coating analyses using solid elements, thermal shock "skin" stress analyses, and fluid boundary layer analyses.) Attempts to artificially restrict aspect ratio could compromise analysis quality in some cases. The aspect ratio for a triangle is computed in the following manner, using only the corner nodes of the element. A line is constructed from one node of the element to the midpoint of the opposite edge, and another through the midpoints of the other 2 edges. In general, these lines are not perpendicular to each other or to any of the element edges. 1. Rectangles are constructed centered about each of these 2 lines, with edges passing through the element edge midpoints and the triangle apex. 2. This construction is repeated using each of the other 2 corners as the apex. 3. The aspect ratio of the triangle is the ratio of the longer side to the shorter side of whichever of the 6 rectangles is most stretched, divided by the square root of

8 The best possible triangle aspect ratio, for an equilateral triangle, is 1, but it can vary upto 20 which is accepted by ANSYS. Flowchart ANAVAL, for: f Start J Read temp4.dat file Create Anarepo.txt file a = sqrt{(x 2 -x 1 ) / +(y 2 -y 1 )'+(z 2 -z 1 )') b = sqrt((x3-x 2 ) 2 +(y 3 -y2):+(z3-z 2 ) 2 ) c = sqrt((x r x 3 r+(yry 3 ) 2 +(zi-z 3 ) 2 ) peri = (a+b+c) s = peri/2 area = sqrt(s*(s-a)*(s*b)*(s-c) qfactor = 4*1.7320*AREA/(a 2 +b 2 +c 2 ) If QFACTOR < 0.3 then Write to ANAREPO.txt file X1.Y1.Z1 X2.Y2.Z2 X3.Y3.Z3 QFACTOR "BAD ELEMENT" ( Stop ) ( End Fig. 5.2 ) Annexure 5.1 gives program listing on "ANAVAL". 140

9 5.6 Case Study In this case study mainly problem is handled in two parts: 1. Testing of STL file to check how many bad quality elements are their in the file along with their quality factors. For this the program used is "ANAVAL" for the calculation of quality factor of an element. 2. Generation of db.log file so that this file can be opened into ANSYS for further analysis. For the automatic creation of db.log file "ANALYSIS" program is developed. To test above two programs the data used is organized point cloud data obtained originally from laser data. The laser data after operated under Row-Column is converted into organized data having pitch = 1mm and step over distance = 1mm. Then this data is triangulated using Matrix method and finally STL file is generated. The "temp4.dat" file is tested under Euler's formula to check its topology and then it is operated under "ANAVAL" for the calculation of quality factor or aspect ratio. To check the quality factor basic input required is temp4.dat file which is developed during triangulation process. This temp4.dat file mainly contains the information like serial number of points / nodes along with their x, y, and z co-ordinates. All these nodes are arranged in a proper sequence so that first 3 nodes form the first triangle, the next three nodes second triangle and so on. The point cloud data as shown in fig 5.5 (a) is exported in the ANSYS by creating its db.log file using plane element. Basic inputs like type of analysis, type of element, material properties are included in the db.log file, and then this file is opened in ANSYS. The boundary conditions such as restrictions and external forces are applied on the model created. In the example considered here, the left edge is restricted to move in X direction, while on every node of right side edge a force of magnitude ION is applied. Fig. 5.5 (b) shows the displacement of nodes in X direction. Fig. 5.5 (c) shows the stress acting in nodes in X direction. Similar methodology is followed on the same file, but this time the type of element is changed from plane type to shell element. Left and right edges are restricted to move in all three directions that is x, y, z direction, and a pressure of 100N/mm 2 is applied on the selected nodes near center portion. The thickness of the shell is taken to be uniform and equal to 1 mm over entire region. 141

10 The figures 5.6 shows displacement in X, Y, Z direction, stresses acting in x,y,z direction using shell elements. and The "temp4.dat" file is operated under "ANALYSIS" program to create dblog file that is data base log file. Before using analysis program user has to decide the type of element to be used. The choice is in between 2D plane stress shell element. In this case study both types of elements are used. Suitable boundary conditions, and external forces are applied, And finally displacement values of all nodes and stress acting at the nodes in x, y and z directions are obtained. Point cloud data used: RC lxl Pitch: 1 mm Step over distance: 1 mm Number of points: 6056 Number of triangles / elements: asc Views of meshed geometry and diagrams of stress - strain analysis are shown in following figures: Fig. 5.4 Point cloud data after processing under Row-Column method and then opened in Imageware 142

11 Plain Element Fig. 5.5 (a) Meshing and applying boundary conditions like displacement of nod and forces acting on nodes. 5.5 (b) Displacement of nodes in X direction ANSYS Fig. 5.5 (c) Stress acting on nodes in X direction 143

12 Shell Element Fig. 5.6 (a) Meshing and applying boundary conditions like displacement of nod and forces acting on nodes. Fig. 5.6 (b) Displacement of nodes in X direction Fig. 5.6 (c) Displacement of nodes in Y direction 144

13 Fig. 5.6 (d) Displacement of nodes in Z direction Fig. 5.6 (e) Stress acting on nodes in X direction Fig. 5.6 (f) Stress acting on nodes in Y direction 145

14 Fig. 5.6 (g) Stress acting on nodes in Z direction 5.7 Conclusion: STL file developed form the above discussed point cloud data is tested through ANAVAL program to apply the quality check for every triangulated element. The report generated through "ANAVAL" program is given below: Total number of elements: Total number of bad elements: 394 The quality of all good elements (11408) is within acceptable range from 0.3 tol, the average value being bad elements contribute only 3.3% of total elements. Depending upon the results obtained from this program, the point cloud data file can be improved by deleting some points or by making the data coarser especially when handled data is a row-column type data. In general the program developed "anaval" help to check the aspect ratio, which may be helpful for making necessary corrections, and the second program "analysis" creates a log file, which reduces the time required for building of FEA MODEL to a large extent. 146

Modelling Flat Spring Performance Using FEA

Modelling Flat Spring Performance Using FEA Modelling Flat Spring Performance Using FEA Blessing O Fatola, Patrick Keogh and Ben Hicks Department of Mechanical Engineering, University of Corresponding author bf223@bath.ac.uk Abstract. This paper

More information

CHAPTER 4 CFD AND FEA ANALYSIS OF DEEP DRAWING PROCESS

CHAPTER 4 CFD AND FEA ANALYSIS OF DEEP DRAWING PROCESS 54 CHAPTER 4 CFD AND FEA ANALYSIS OF DEEP DRAWING PROCESS 4.1 INTRODUCTION In Fluid assisted deep drawing process the punch moves in the fluid chamber, the pressure is generated in the fluid. This fluid

More information

Finite Element Method. Chapter 7. Practical considerations in FEM modeling

Finite Element Method. Chapter 7. Practical considerations in FEM modeling Finite Element Method Chapter 7 Practical considerations in FEM modeling Finite Element Modeling General Consideration The following are some of the difficult tasks (or decisions) that face the engineer

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

CHAPTER 1. Introduction

CHAPTER 1. Introduction ME 475: Computer-Aided Design of Structures 1-1 CHAPTER 1 Introduction 1.1 Analysis versus Design 1.2 Basic Steps in Analysis 1.3 What is the Finite Element Method? 1.4 Geometrical Representation, Discretization

More information

CITY AND GUILDS 9210 UNIT 135 MECHANICS OF SOLIDS Level 6 TUTORIAL 15 - FINITE ELEMENT ANALYSIS - PART 1

CITY AND GUILDS 9210 UNIT 135 MECHANICS OF SOLIDS Level 6 TUTORIAL 15 - FINITE ELEMENT ANALYSIS - PART 1 Outcome 1 The learner can: CITY AND GUILDS 9210 UNIT 135 MECHANICS OF SOLIDS Level 6 TUTORIAL 15 - FINITE ELEMENT ANALYSIS - PART 1 Calculate stresses, strain and deflections in a range of components under

More information

Finite Element Analysis Prof. Dr. B. N. Rao Department of Civil Engineering Indian Institute of Technology, Madras. Lecture - 36

Finite Element Analysis Prof. Dr. B. N. Rao Department of Civil Engineering Indian Institute of Technology, Madras. Lecture - 36 Finite Element Analysis Prof. Dr. B. N. Rao Department of Civil Engineering Indian Institute of Technology, Madras Lecture - 36 In last class, we have derived element equations for two d elasticity problems

More information

2: Static analysis of a plate

2: Static analysis of a plate 2: Static analysis of a plate Topics covered Project description Using SolidWorks Simulation interface Linear static analysis with solid elements Finding reaction forces Controlling discretization errors

More information

Guidelines for proper use of Plate elements

Guidelines for proper use of Plate elements Guidelines for proper use of Plate elements In structural analysis using finite element method, the analysis model is created by dividing the entire structure into finite elements. This procedure is known

More information

COMPUTER AIDED ENGINEERING. Part-1

COMPUTER AIDED ENGINEERING. Part-1 COMPUTER AIDED ENGINEERING Course no. 7962 Finite Element Modelling and Simulation Finite Element Modelling and Simulation Part-1 Modeling & Simulation System A system exists and operates in time and space.

More information

Element Order: Element order refers to the interpolation of an element s nodal results to the interior of the element. This determines how results can

Element Order: Element order refers to the interpolation of an element s nodal results to the interior of the element. This determines how results can TIPS www.ansys.belcan.com 鲁班人 (http://www.lubanren.com/weblog/) Picking an Element Type For Structural Analysis: by Paul Dufour Picking an element type from the large library of elements in ANSYS can be

More information

Stress Analysis of thick wall bellows using Finite Element Method

Stress Analysis of thick wall bellows using Finite Element Method Stress Analysis of thick wall bellows using Finite Element Method Digambar J. Pachpande Post Graduate Student Department of Mechanical Engineering V.J.T.I. Mumbai, India Prof. G. U. Tembhare Assistant

More information

Chapter 1 Introduction

Chapter 1 Introduction Chapter 1 Introduction GTU Paper Analysis (New Syllabus) Sr. No. Questions 26/10/16 11/05/16 09/05/16 08/12/15 Theory 1. What is graphic standard? Explain different CAD standards. 2. Write Bresenham s

More information

SDC. Engineering Analysis with COSMOSWorks. Paul M. Kurowski Ph.D., P.Eng. SolidWorks 2003 / COSMOSWorks 2003

SDC. Engineering Analysis with COSMOSWorks. Paul M. Kurowski Ph.D., P.Eng. SolidWorks 2003 / COSMOSWorks 2003 Engineering Analysis with COSMOSWorks SolidWorks 2003 / COSMOSWorks 2003 Paul M. Kurowski Ph.D., P.Eng. SDC PUBLICATIONS Design Generator, Inc. Schroff Development Corporation www.schroff.com www.schroff-europe.com

More information

CHAPTER 8 FINITE ELEMENT ANALYSIS

CHAPTER 8 FINITE ELEMENT ANALYSIS If you have any questions about this tutorial, feel free to contact Wenjin Tao (w.tao@mst.edu). CHAPTER 8 FINITE ELEMENT ANALYSIS Finite Element Analysis (FEA) is a practical application of the Finite

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

The Quality Of 3D Models

The Quality Of 3D Models The Quality Of 3D Models Problems and Solutions for Applications Post-Design Fathi El-Yafi Senior Product Engineer Product Department of EXA Corporation 1 : Overview Status Problems Identified Defect Sources

More information

Simulation of rotation and scaling algorithm for numerically modelled structures

Simulation of rotation and scaling algorithm for numerically modelled structures IOP Conference Series: Materials Science and Engineering PAPER OPEN ACCESS Simulation of rotation and scaling algorithm for numerically modelled structures To cite this article: S K Ruhit et al 2018 IOP

More information

Geometry Vocabulary. acute angle-an angle measuring less than 90 degrees

Geometry Vocabulary. acute angle-an angle measuring less than 90 degrees Geometry Vocabulary acute angle-an angle measuring less than 90 degrees angle-the turn or bend between two intersecting lines, line segments, rays, or planes angle bisector-an angle bisector is a ray that

More information

Embedded Reinforcements

Embedded Reinforcements Embedded Reinforcements Gerd-Jan Schreppers, January 2015 Abstract: This paper explains the concept and application of embedded reinforcements in DIANA. Basic assumptions and definitions, the pre-processing

More information

Using three-dimensional CURVIC contact models to predict stress concentration effects in an axisymmetric model

Using three-dimensional CURVIC contact models to predict stress concentration effects in an axisymmetric model Boundary Elements XXVII 245 Using three-dimensional CURVIC contact models to predict stress concentration effects in an axisymmetric model J. J. Rencis & S. R. Pisani Department of Mechanical Engineering,

More information

Case Study- Importing As-Molded Plastic Part Conditions into CAE tools

Case Study- Importing As-Molded Plastic Part Conditions into CAE tools 1 IEI Innova Engineering 1 Park Plaza Suite 980 Irvine, California 92614 Case Study- Importing As-Molded Plastic Part Conditions into CAE tools 2 CONTENTS CONTENTS... 2 EXECUTIVE SUMMARY... 3 APPROACH...

More information

Revision of the SolidWorks Variable Pressure Simulation Tutorial J.E. Akin, Rice University, Mechanical Engineering. Introduction

Revision of the SolidWorks Variable Pressure Simulation Tutorial J.E. Akin, Rice University, Mechanical Engineering. Introduction Revision of the SolidWorks Variable Pressure Simulation Tutorial J.E. Akin, Rice University, Mechanical Engineering Introduction A SolidWorks simulation tutorial is just intended to illustrate where to

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

CHAPTER-10 DYNAMIC SIMULATION USING LS-DYNA

CHAPTER-10 DYNAMIC SIMULATION USING LS-DYNA DYNAMIC SIMULATION USING LS-DYNA CHAPTER-10 10.1 Introduction In the past few decades, the Finite Element Method (FEM) has been developed into a key indispensable technology in the modeling and simulation

More information

1. Carlos A. Felippa, Introduction to Finite Element Methods,

1. Carlos A. Felippa, Introduction to Finite Element Methods, Chapter Finite Element Methods In this chapter we will consider how one can model the deformation of solid objects under the influence of external (and possibly internal) forces. As we shall see, the coupled

More information

1.2 Numerical Solutions of Flow Problems

1.2 Numerical Solutions of Flow Problems 1.2 Numerical Solutions of Flow Problems DIFFERENTIAL EQUATIONS OF MOTION FOR A SIMPLIFIED FLOW PROBLEM Continuity equation for incompressible flow: 0 Momentum (Navier-Stokes) equations for a Newtonian

More information

Revised Sheet Metal Simulation, J.E. Akin, Rice University

Revised Sheet Metal Simulation, J.E. Akin, Rice University Revised Sheet Metal Simulation, J.E. Akin, Rice University A SolidWorks simulation tutorial is just intended to illustrate where to find various icons that you would need in a real engineering analysis.

More information

NX Advanced FEM. fact sheet

NX Advanced FEM. fact sheet Advanced FEM fact sheet www.ugs.com Summary Advanced FEM is a comprehensive multi-cad finite element modeling and results visualization product that is designed to meet the needs of experienced CAE analysts.

More information

Best Practices: Volume Meshing Kynan Maley

Best Practices: Volume Meshing Kynan Maley Best Practices: Volume Meshing Kynan Maley Volume Meshing Volume meshing is the basic tool that allows the creation of the space discretization needed to solve most of the CAE equations for: CFD Stress

More information

Data Representation in Visualisation

Data Representation in Visualisation Data Representation in Visualisation Visualisation Lecture 4 Taku Komura Institute for Perception, Action & Behaviour School of Informatics Taku Komura Data Representation 1 Data Representation We have

More information

ASSIGNMENT 1 INTRODUCTION TO CAD

ASSIGNMENT 1 INTRODUCTION TO CAD Computer Aided Design(2161903) ASSIGNMENT 1 INTRODUCTION TO CAD Theory 1. Discuss the reasons for implementing a CAD system. 2. Define computer aided design. Compare computer aided design and conventional

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

Module 1: Introduction to Finite Element Analysis. Lecture 4: Steps in Finite Element Analysis

Module 1: Introduction to Finite Element Analysis. Lecture 4: Steps in Finite Element Analysis 25 Module 1: Introduction to Finite Element Analysis Lecture 4: Steps in Finite Element Analysis 1.4.1 Loading Conditions There are multiple loading conditions which may be applied to a system. The load

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

A Multiple Constraint Approach for Finite Element Analysis of Moment Frames with Radius-cut RBS Connections

A Multiple Constraint Approach for Finite Element Analysis of Moment Frames with Radius-cut RBS Connections A Multiple Constraint Approach for Finite Element Analysis of Moment Frames with Radius-cut RBS Connections Dawit Hailu +, Adil Zekaria ++, Samuel Kinde +++ ABSTRACT After the 1994 Northridge earthquake

More information

Engineering Analysis with

Engineering Analysis with Engineering Analysis with SolidWorks Simulation 2013 Paul M. Kurowski SDC PUBLICATIONS Schroff Development Corporation Better Textbooks. Lower Prices. www.sdcpublications.com Visit the following websites

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

Engineering Analysis with SolidWorks Simulation 2012

Engineering Analysis with SolidWorks Simulation 2012 Engineering Analysis with SolidWorks Simulation 2012 Paul M. Kurowski SDC PUBLICATIONS Schroff Development Corporation Better Textbooks. Lower Prices. www.sdcpublications.com Visit the following websites

More information

SOLIDWORKS Simulation

SOLIDWORKS Simulation SOLIDWORKS Simulation Length: 3 days Prerequisite: SOLIDWORKS Essentials Description: SOLIDWORKS Simulation is designed to make SOLIDWORKS users more productive with the SOLIDWORKS Simulation Bundle. This

More information

Set No. 1 IV B.Tech. I Semester Regular Examinations, November 2010 FINITE ELEMENT METHODS (Mechanical Engineering) Time: 3 Hours Max Marks: 80 Answer any FIVE Questions All Questions carry equal marks

More information

Figure 30. Degrees of freedom of flat shell elements

Figure 30. Degrees of freedom of flat shell elements Shell finite elements There are three types of shell finite element; 1) flat elements, 2) elements based on the Sanders-Koiter equations and 3) elements based on reduction of a solid element. Flat elements

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

SolidWorks. An Overview of SolidWorks and Its Associated Analysis Programs

SolidWorks. An Overview of SolidWorks and Its Associated Analysis Programs An Overview of SolidWorks and Its Associated Analysis Programs prepared by Prof. D. Xue University of Calgary SolidWorks - a solid modeling CAD tool. COSMOSWorks - a design analysis system fully integrated

More information

Validation Report: Additional Data Mapping to Structural Analysis Packages

Validation Report: Additional Data Mapping to Structural Analysis Packages Autodesk Moldflow Structural Alliance 2012 Validation Report: Additional Data Mapping to Structural Analysis Packages Mapping process-induced stress data from Autodesk Moldflow Insight Dual Domain and

More information

Complete and robust mechanical simulation solution. imaginit.com/simulation-mechanical

Complete and robust mechanical simulation solution. imaginit.com/simulation-mechanical Complete and robust mechanical simulation solution A mechanical simulation solution for finite element analysis powered by the Autodesk Nastran solver Accurately predict product behavior, optimize and

More information

ISSN: ISO 9001:2008 Certified International Journal of Engineering and Innovative Technology (IJEIT) Volume 2, Issue 3, September 2012

ISSN: ISO 9001:2008 Certified International Journal of Engineering and Innovative Technology (IJEIT) Volume 2, Issue 3, September 2012 Mitigation Curves for Determination of Relief Holes to Mitigate Concentration Factor in Thin Plates Loaded Axially for Different Discontinuities Shubhrata Nagpal, S.Sanyal, Nitin Jain Abstract In many

More information

NX Advanced FEM. Benefits

NX Advanced FEM. Benefits Advanced FEM fact sheet Siemens PLM Software www.siemens.com/plm Summary Advanced FEM software is a comprehensive multi-cad finite element modeling and results visualization product that is designed to

More information

CHAPTER 6 EXPERIMENTAL AND FINITE ELEMENT SIMULATION STUDIES OF SUPERPLASTIC BOX FORMING

CHAPTER 6 EXPERIMENTAL AND FINITE ELEMENT SIMULATION STUDIES OF SUPERPLASTIC BOX FORMING 113 CHAPTER 6 EXPERIMENTAL AND FINITE ELEMENT SIMULATION STUDIES OF SUPERPLASTIC BOX FORMING 6.1 INTRODUCTION Superplastic properties are exhibited only under a narrow range of strain rates. Hence, it

More information

Application of Finite Volume Method for Structural Analysis

Application of Finite Volume Method for Structural Analysis Application of Finite Volume Method for Structural Analysis Saeed-Reza Sabbagh-Yazdi and Milad Bayatlou Associate Professor, Civil Engineering Department of KNToosi University of Technology, PostGraduate

More information

PTC Newsletter January 14th, 2002

PTC  Newsletter January 14th, 2002 PTC Email Newsletter January 14th, 2002 PTC Product Focus: Pro/MECHANICA (Structure) Tip of the Week: Creating and using Rigid Connections Upcoming Events and Training Class Schedules PTC Product Focus:

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

Meshing of flow and heat transfer problems

Meshing of flow and heat transfer problems Meshing of flow and heat transfer problems Luyao Zou a, Zhe Li b, Qiqi Fu c and Lujie Sun d School of, Shandong University of science and technology, Shandong 266590, China. a zouluyaoxf@163.com, b 1214164853@qq.com,

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

Lecture 3 : General Preprocessing. Introduction to ANSYS Mechanical Release ANSYS, Inc. February 27, 2015

Lecture 3 : General Preprocessing. Introduction to ANSYS Mechanical Release ANSYS, Inc. February 27, 2015 Lecture 3 : General Preprocessing 16.0 Release Introduction to ANSYS Mechanical 1 2015 ANSYS, Inc. February 27, 2015 Chapter Overview In this chapter we cover basic preprocessing operations that are common

More information

3D Finite Element Software for Cracks. Version 3.2. Benchmarks and Validation

3D Finite Element Software for Cracks. Version 3.2. Benchmarks and Validation 3D Finite Element Software for Cracks Version 3.2 Benchmarks and Validation October 217 1965 57 th Court North, Suite 1 Boulder, CO 831 Main: (33) 415-1475 www.questintegrity.com http://www.questintegrity.com/software-products/feacrack

More information

Chapter 7 Practical Considerations in Modeling. Chapter 7 Practical Considerations in Modeling

Chapter 7 Practical Considerations in Modeling. Chapter 7 Practical Considerations in Modeling CIVL 7/8117 1/43 Chapter 7 Learning Objectives To present concepts that should be considered when modeling for a situation by the finite element method, such as aspect ratio, symmetry, natural subdivisions,

More information

Analysis of a silicon piezoresistive pressure sensor

Analysis of a silicon piezoresistive pressure sensor Analysis of a silicon piezoresistive pressure sensor This lab uses the general purpose finite element solver COMSOL to determine the stress in the resistors in a silicon piezoresistive pressure sensor

More information

The part to be analyzed is the bracket from the tutorial of Chapter 3.

The part to be analyzed is the bracket from the tutorial of Chapter 3. Introduction to Solid Modeling Using SolidWorks 2007 COSMOSWorks Tutorial Page 1 In this tutorial, we will use the COSMOSWorks finite element analysis (FEA) program to analyze the response of a component

More information

High School Geometry. Correlation of the ALEKS course High School Geometry to the ACT College Readiness Standards for Mathematics

High School Geometry. Correlation of the ALEKS course High School Geometry to the ACT College Readiness Standards for Mathematics High School Geometry Correlation of the ALEKS course High School Geometry to the ACT College Readiness Standards for Mathematics Standard 5 : Graphical Representations = ALEKS course topic that addresses

More information

EN1740 Computer Aided Visualization and Design Spring /26/2012 Brian C. P. Burke

EN1740 Computer Aided Visualization and Design Spring /26/2012 Brian C. P. Burke EN1740 Computer Aided Visualization and Design Spring 2012 4/26/2012 Brian C. P. Burke Last time: More motion analysis with Pro/E Tonight: Introduction to external analysis products ABAQUS External Analysis

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

Non-Linear Finite Element Methods in Solid Mechanics Attilio Frangi, Politecnico di Milano, February 3, 2017, Lesson 1

Non-Linear Finite Element Methods in Solid Mechanics Attilio Frangi, Politecnico di Milano, February 3, 2017, Lesson 1 Non-Linear Finite Element Methods in Solid Mechanics Attilio Frangi, attilio.frangi@polimi.it Politecnico di Milano, February 3, 2017, Lesson 1 1 Politecnico di Milano, February 3, 2017, Lesson 1 2 Outline

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

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

Mathematics Curriculum

Mathematics Curriculum 6 G R A D E Mathematics Curriculum GRADE 6 5 Table of Contents 1... 1 Topic A: Area of Triangles, Quadrilaterals, and Polygons (6.G.A.1)... 11 Lesson 1: The Area of Parallelograms Through Rectangle Facts...

More information

pre- & post-processing f o r p o w e r t r a i n

pre- & post-processing f o r p o w e r t r a i n pre- & post-processing f o r p o w e r t r a i n www.beta-cae.com With its complete solutions for meshing, assembly, contacts definition and boundary conditions setup, ANSA becomes the most efficient and

More information

PATCH TEST OF HEXAHEDRAL ELEMENT

PATCH TEST OF HEXAHEDRAL ELEMENT Annual Report of ADVENTURE Project ADV-99- (999) PATCH TEST OF HEXAHEDRAL ELEMENT Yoshikazu ISHIHARA * and Hirohisa NOGUCHI * * Mitsubishi Research Institute, Inc. e-mail: y-ishi@mri.co.jp * Department

More information

Assignment in The Finite Element Method, 2017

Assignment in The Finite Element Method, 2017 Assignment in The Finite Element Method, 2017 Division of Solid Mechanics The task is to write a finite element program and then use the program to analyse aspects of a surface mounted resistor. The problem

More information

Stress analysis of toroidal shell

Stress analysis of toroidal shell Stress analysis of toroidal shell Cristian PURDEL*, Marcel STERE** *Corresponding author Department of Aerospace Structures INCAS - National Institute for Aerospace Research Elie Carafoli Bdul Iuliu Maniu

More information

Seven Techniques For Finding FEA Errors

Seven Techniques For Finding FEA Errors Seven Techniques For Finding FEA Errors by Hanson Chang, Engineering Manager, MSC.Software Corporation Design engineers today routinely perform preliminary first-pass finite element analysis (FEA) on new

More information

Buckling Analysis of a Thin Plate

Buckling Analysis of a Thin Plate Buckling Analysis of a Thin Plate Outline 1 Description 2 Modeling approach 3 Finite Element Model 3.1 Units 3.2 Geometry definition 3.3 Properties 3.4 Boundary conditions 3.5 Loads 3.6 Meshing 4 Structural

More information

Using MSC.Nastran for Explicit FEM Simulations

Using MSC.Nastran for Explicit FEM Simulations 3. LS-DYNA Anwenderforum, Bamberg 2004 CAE / IT III Using MSC.Nastran for Explicit FEM Simulations Patrick Doelfs, Dr. Ingo Neubauer MSC.Software GmbH, D-81829 München, Patrick.Doelfs@mscsoftware.com Abstract:

More information

Engineering Effects of Boundary Conditions (Fixtures and Temperatures) J.E. Akin, Rice University, Mechanical Engineering

Engineering Effects of Boundary Conditions (Fixtures and Temperatures) J.E. Akin, Rice University, Mechanical Engineering Engineering Effects of Boundary Conditions (Fixtures and Temperatures) J.E. Akin, Rice University, Mechanical Engineering Here SolidWorks stress simulation tutorials will be re-visited to show how they

More information

Scientific Manual FEM-Design 17.0

Scientific Manual FEM-Design 17.0 Scientific Manual FEM-Design 17. 1.4.6 Calculations considering diaphragms All of the available calculation in FEM-Design can be performed with diaphragms or without diaphragms if the diaphragms were defined

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

Modeling Strategies for Dynamic Finite Element Cask Analyses

Modeling Strategies for Dynamic Finite Element Cask Analyses Session A Package Analysis: Structural Analysis - Modeling Modeling Strategies for Dynamic Finite Element Cask Analyses Uwe Zencker, Günter Wieser, Linan Qiao, Christian Protz BAM Federal Institute for

More information

Coupled Analysis of FSI

Coupled Analysis of FSI Coupled Analysis of FSI Qin Yin Fan Oct. 11, 2008 Important Key Words Fluid Structure Interface = FSI Computational Fluid Dynamics = CFD Pressure Displacement Analysis = PDA Thermal Stress Analysis = TSA

More information

The interfacing software named PSG Slice has been developed using the. computer programming language C. Since, the software has a mouse driven

The interfacing software named PSG Slice has been developed using the. computer programming language C. Since, the software has a mouse driven CHAPTER 6 DEVELOPMENT OF SLICING MODULE FOR RAPID PROTOTYPING MACHINE 6.1 INTRODUCTION The interfacing software named PSG Slice has been developed using the computer programming language C. Since, the

More information

Grade 9 Math Terminology

Grade 9 Math Terminology Unit 1 Basic Skills Review BEDMAS a way of remembering order of operations: Brackets, Exponents, Division, Multiplication, Addition, Subtraction Collect like terms gather all like terms and simplify as

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

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

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

Learning Module 8 Shape Optimization

Learning Module 8 Shape Optimization Learning Module 8 Shape Optimization What is a Learning Module? Title Page Guide A Learning Module (LM) is a structured, concise, and self-sufficient learning resource. An LM provides the learner with

More information

ME 475 FEA of a Composite Panel

ME 475 FEA of a Composite Panel ME 475 FEA of a Composite Panel Objectives: To determine the deflection and stress state of a composite panel subjected to asymmetric loading. Introduction: Composite laminates are composed of thin layers

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

Some Aspects for the Simulation of a Non-Linear Problem with Plasticity and Contact

Some Aspects for the Simulation of a Non-Linear Problem with Plasticity and Contact Some Aspects for the Simulation of a Non-Linear Problem with Plasticity and Contact Eduardo Luís Gaertner Marcos Giovani Dropa de Bortoli EMBRACO S.A. Abstract A linear elastic model is often not appropriate

More information

Chapter 6 Some Applications of the Integral

Chapter 6 Some Applications of the Integral Chapter 6 Some Applications of the Integral More on Area More on Area Integrating the vertical separation gives Riemann Sums of the form More on Area Example Find the area A of the set shaded in Figure

More information

Mixed Mode Fracture of Through Cracks In Nuclear Reactor Steam Generator Helical Coil Tube

Mixed Mode Fracture of Through Cracks In Nuclear Reactor Steam Generator Helical Coil Tube Journal of Materials Science & Surface Engineering Vol. 3 (4), 2015, pp 298-302 Contents lists available at http://www.jmsse.org/ Journal of Materials Science & Surface Engineering Mixed Mode Fracture

More information

Similar Pulley Wheel Description J.E. Akin, Rice University

Similar Pulley Wheel Description J.E. Akin, Rice University Similar Pulley Wheel Description J.E. Akin, Rice University The SolidWorks simulation tutorial on the analysis of an assembly suggested noting another type of boundary condition that is not illustrated

More information

CHAPTER 4. Numerical Models. descriptions of the boundary conditions, element types, validation, and the force

CHAPTER 4. Numerical Models. descriptions of the boundary conditions, element types, validation, and the force CHAPTER 4 Numerical Models This chapter presents the development of numerical models for sandwich beams/plates subjected to four-point bending and the hydromat test system. Detailed descriptions of the

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

Finite Element Analysis of Ellipsoidal Head Pressure Vessel

Finite Element Analysis of Ellipsoidal Head Pressure Vessel Finite Element Analysis of Ellipsoidal Head Pressure Vessel Vikram V. Mane*, Vinayak H.Khatawate.**Ashok Patole*** * (Faculty; Mechanical Engineering Department, Vidyavardhini s college of Engineering.

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

5. Finite Element Analysis of Bellows

5. Finite Element Analysis of Bellows 5. Finite Element Analysis of Bellows 5.1 Introduction: Traditional design process and stress analysis techniques are very specific for each individual case based on fundamental principles. It can only

More information

CHAPTER 5 FINITE ELEMENT METHOD

CHAPTER 5 FINITE ELEMENT METHOD CHAPTER 5 FINITE ELEMENT METHOD 5.1 Introduction to Finite Element Method Finite element analysis is a computer based numerical method to deduce engineering structures strength and behaviour. Its use can

More information

SimLab Release Notes. 1 A l t a i r E n g i n e e r i n g

SimLab Release Notes. 1 A l t a i r E n g i n e e r i n g SimLab 11.0 Release Notes 1 A l t a i r E n g i n e e r i n g System Support extended to load and save GDA/SLB files of size greater than 4GB. Memory allocation is enhanced to support large models. Kubrix

More information

Solid and shell elements

Solid and shell elements Solid and shell elements Theodore Sussman, Ph.D. ADINA R&D, Inc, 2016 1 Overview 2D and 3D solid elements Types of elements Effects of element distortions Incompatible modes elements u/p elements for incompressible

More information

TRINITAS. a Finite Element stand-alone tool for Conceptual design, Optimization and General finite element analysis. Introductional Manual

TRINITAS. a Finite Element stand-alone tool for Conceptual design, Optimization and General finite element analysis. Introductional Manual TRINITAS a Finite Element stand-alone tool for Conceptual design, Optimization and General finite element analysis Introductional Manual Bo Torstenfelt Contents 1 Introduction 1 2 Starting the Program

More information

MAE Advanced Computer Aided Design. 02. Ansys Workbench Doc 01. Introduction to Ansys Workbench

MAE Advanced Computer Aided Design. 02. Ansys Workbench Doc 01. Introduction to Ansys Workbench MAE 656 - Advanced Computer Aided Design 02. Ansys Workbench Doc 01 Introduction to Ansys Workbench Main Screen Components: Top menu Toolbox Messages Progress Project Properties Top Menu File Top Menu

More information