Topology Optimization and 3D Printing of the MBB Structure Using the 3D SIMP Method

Size: px
Start display at page:

Download "Topology Optimization and 3D Printing of the MBB Structure Using the 3D SIMP Method"

Transcription

1 Topology Optimization and 3D Printing of the MBB Structure Using the 3D SIMP Method Yedige Tlegenov Department of Mechanical Engineering National University of Singapore 9 Engineering Drive 1, Singapore, , Singapore yedige@nus.edu.sg Abstract - The topology optimization of the 3D beam was performed under different filtering and solver techniques in the current study using 3D SIMP method. Five different filtering techniques were implemented and compared. The finite element analysis with three types of mesh sizes was conducted via direct solver and iterative solver. The optimized structure was prototyped using 3D printer. I. INTRODUCTION Recently with the development of additive manufacturing processes there are more opportunities on fabricating almost any geometry of the structure. Considering this, there is a need in developing computational methods that will allow shape optimization for reducing the weight of the structure. Topology optimization is a computational technique that allows the structures to withstand maximum loading with minimum material consumption. Thus, topology optimization is carried out by finite element analysis of the structure and then evaluation of the density distribution in order to remove material with least amount of stresses. The most common tool that is being used widely for finite element analysis and topology optimization is Matlab. For example, Sigmund (2001) presented a Matlab program for 2D topology optimization, which computes the stiffness matrix and performs filtering by nested loops. Another example can be a 3D topology optimization program (Liu and Tovar, 2014) developed for Matlab. The advantages of the 3D topology optimization program are not only in terms of extra dimension, but also in terms of relatively less solving time and more number of filtering techniques. This study presents the topology optimization of 3D beam using the Matlab program developed by Liu and Tovar (2014) using different filtering and solver techniques as well as prototyping the optimized structure using 3D printer. A Messerchimitt-Bolkow-Blohm (MBB) beam is considered with one load at the middle point in its top surface, as shown in Table 4, middle row in the paper (Liu and Tovar, 2014). The load can be considered as a unit load. The material has a modulus of elasticity of 100 MPa (or the 1

2 unity) and the Poisson s ratio of 0.3. Set L equal to 1.0 cm. The aim of current study is to perform two following parts: Part 1. Conduct the topology optimization of the MBB structure for the following cases of filters: 1. Density filter only; 2. Sensitivity filter only; 3. Grey scale filter only; 4. Density filter and grey scale filter; 5. Sensitivity filter and grey scale filter. Among the five cases, for this MBB structure, indicate which case provides the most blackand-white solution. Part 2. Conduct the topology optimization of the MBB structure, using the grey scale filter only, for the following cases of mesh size: a. 30 x 5 x 5 b. 60 x 10 x 10 c. 120 x 20 x 20 In addition, compare two methods, namely, the direct solver and the iterative solver and evaluate the results. Part 3. Prototype the resulting structure using 3D printer. II. METHODOLOGY Let us consider the given structure, which is illustrated in Figure 1. The applied central load is 1 N, and the structure is supported horizontally in all four bottom corners. The topology optimization of the MBB structure using the 3D SIMP method for the minimization of the strain energy function was conducted. The Matlab code was downloaded from reference paper (Liu and Tovar, 2014). The code was modified as per given problem with applied load and boundary conditions. Firstly, the loading condition was modified in line 12 as 12 [il,jl,kl] = meshgrid(nelx/2, nely, nelz/2); which is a point load acting centre of the top surface of the structure. Next, the supports were modified in line 16 as 16 iif = [0 0 nelx nelx]; jf = [ ]; kf = [0 nelz 0 nelz]; 2

3 which are four supports placed on the corners of the MBB structure. Figure 1. Structure with given boundary conditions and applied loads Part 1. Density filter and Sensitivity filter were performed by replacing the real sensitivities with the filtered sensitivities. The line 2 was changed by adding one input ft (ft = 1 for density filter, ft = 2 for sensitivity filter). Next, the sensitivity filter was added to the program, by changing lines as (Liu and Tovar, 2014): if ft == 1 dc(:) = H*(dc(:)./Hs); dv(:) = H*(dv(:)./Hs); elseif ft == 2 dc(:) = H*(x(:).*dc(:))./Hs.max(1e-3,x(:)); end Furthermore, the design variable update strategy (line 86) in the optimal search procedure was changed as (Liu and Tovar, 2014): 86 if ft == 1 xphys(:) = (H*xnew(:))./Hs; elseif ft == 2 xphys = xnew; end Gray scale filter was performed by changing the optimality criteria update, by adding input q (q=2) to the program and modifying line 85 as (Liu and Tovar, 2014): 85 xnew = max(0,max(x-move,min(1,min(x+move,(x.*sqrt(- dc./dv/lmid)).^q)))); Part 2. Iterative solver appears to be very useful when the mesh size is comparatively large and the direct solver in line 72 takes long time to compute the finite element analysis. Thus, line 72 3

4 was replaced by a built-in preconditioned conjugate gradients method function, which was called as pcg (Liu and Tovar, 2014): 72 tolit = 1e-8; maxit = 8000; M = diag(diag(k(freedofs, freedofs))); U(freedofs,:) = pcg (K(freedofs, freedofs), F(freedofs,:), tolit, maxit, M); After the above mentioned changes were made to the Matlab program (Liu and Tovar, 2014) we were able to perform topology optimization under different input parameters which will be discussed below. Part 3. The resulting optimized structure was prototyped using Makerbot Replicator 3D printer. The printing material is PLA plastic with no supports; all the sizes are in mm. III. RESULTS The results are elaborated as follows. The topology optimization of the MBB structure using the 3D SIMP method was performed under different filtering techniques and the iterative solver. Part 1. Figure 2 illustrates the optimized MBB structures after performing five different filtering techniques. It can be seen that density filter, sensitivity filter, and gray scale filter minimize the checkerboard patterns if there are any. From all five filtering methods, the sensitivity filter combined with the gray scale filter results in the most black-and-white pattern. Part 2. According to the Table 1, the comparison between two finite element analyses solvers is presented (namely, direct solver and iterative solver). As can be noted, the iterative solver takes about 20 times less time to solve the large mesh size structure. In contrast, the direct solver performs faster when the mesh size is relatively small. It can be concluded that the iterative solver is more efficient for large mesh size structure, and vice versa. Part 3. Figure 3 presents the 3D printed prototype of optimized structure. The material consumption for the given part was relatively minimal as compare to the solid rectangular beam, which resulted in 25 grams of PLA plastic usage for optimized structure. 4

5 Density Filter Sensitivity Filter Gray Scale Filter Density Filter and Grey Scale Filter Sensitivity Filter and Grey Scale Filter Figure 2. Topology optimized design using five different filtering techniques Table 1. Time usage of finite element analysis time for different solvers Mesh size Direct Solver Iterative Solver 30 x 5 x sec sec 60 x 10 x sec sec 120 x 20 x sec sec 5

6 front right top isometric Figure 3. 3D printed topology optimized structure views IV. CONCLUSION The topology optimization of the MBB structure using the 3D SIMP method was performed under different filtering and solver techniques in the current paper. Five different filtering techniques were implemented and compared. The results show that the sensitivity filter combined with the gray scale filter tends to have the most black-and-white pattern. The finite element analysis with three types of mesh sizes was performed via direct solver and iterative solver. The results represent that the iterative solver is more convenient for large scale problems. The optimized structure was prototyped using 3D printer and the material consumption was relatively less than the solid structure. REFERENCES Liu, Kai, and Andrés Tovar. "An efficient 3D topology optimization code written in Matlab." Structural and Multidisciplinary Optimization 50.6 (2014): Sigmund, Ole. "A 99 line topology optimization code written in Matlab." Structural and Multidisciplinary Optimization 21.2 (2001):

A first laboratory exercise in topology optimization using matlab.

A first laboratory exercise in topology optimization using matlab. A first laboratory exercise in topology optimization using matlab. Andreas Rietz Department of Mechanical Engineering / Department of Mathematics Linköping University SE-58183 Linköping, Sweden Abstract

More information

An explicit feature control approach in structural topology optimization

An explicit feature control approach in structural topology optimization th World Congress on Structural and Multidisciplinary Optimisation 07 th -2 th, June 205, Sydney Australia An explicit feature control approach in structural topology optimization Weisheng Zhang, Xu Guo

More information

Efficient Use of Iterative Solvers in Nested Topology Optimization

Efficient Use of Iterative Solvers in Nested Topology Optimization Efficient Use of Iterative Solvers in Nested Topology Optimization Oded Amir, Mathias Stolpe and Ole Sigmund Technical University of Denmark Department of Mathematics Department of Mechanical Engineering

More information

STRUCTURAL TOPOLOGY OPTIMIZATION SUBJECTED TO RELAXED STRESS AND DESIGN VARIABLES

STRUCTURAL TOPOLOGY OPTIMIZATION SUBJECTED TO RELAXED STRESS AND DESIGN VARIABLES STRUCTURAL TOPOLOGY OPTIMIZATION SUBJECTED TO RELAXED STRESS AND DESIGN VARIABLES Hailu Shimels Gebremedhen, Dereje Engida Woldemichael and Fakhruldin M. Hashim Mechanical Engineering Department, Universiti

More information

Comparative Study of Topological Optimization of Beam and Ring Type Structures under static Loading Condition

Comparative Study of Topological Optimization of Beam and Ring Type Structures under static Loading Condition Comparative Study of Topological Optimization of Beam and Ring Type Structures under static Loading Condition Vani Taklikar 1, Anadi Misra 2 P.G. Student, Department of Mechanical Engineering, G.B.P.U.A.T,

More information

Example 24 Spring-back

Example 24 Spring-back Example 24 Spring-back Summary The spring-back simulation of sheet metal bent into a hat-shape is studied. The problem is one of the famous tests from the Numisheet 93. As spring-back is generally a quasi-static

More information

TOPOLOGY OPTIMIZATION OF ELASTOMER DAMPING DEVICES FOR STRUCTURAL VIBRATION REDUCTION

TOPOLOGY OPTIMIZATION OF ELASTOMER DAMPING DEVICES FOR STRUCTURAL VIBRATION REDUCTION 6th European Conference on Computational Mechanics (ECCM 6) 7th European Conference on Computational Fluid Dynamics (ECFD 7) 1115 June 2018, Glasgow, UK TOPOLOGY OPTIMIZATION OF ELASTOMER DAMPING DEVICES

More information

A Topology Optimization Interface for LS-Dyna

A Topology Optimization Interface for LS-Dyna A Topology Optimization Interface for LS-Dyna Dipl.-Ing. Nikola Aulig 1, Dr.- Ing. Ingolf Lepenies 2 Optimizer LS-Dyna 1 nikola.aulig@honda-ri.de Honda Research Institute Europe GmbH, Carl-Legien-Straße

More information

Topology Optimization of Two Linear Elastic Bodies in Unilateral Contact

Topology Optimization of Two Linear Elastic Bodies in Unilateral Contact 2 nd International Conference on Engineering Optimization September 6-9, 2010, Lisbon, Portugal Topology Optimization of Two Linear Elastic Bodies in Unilateral Contact Niclas Strömberg Department of Mechanical

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 energy based method for topology optimization

Element energy based method for topology optimization th World Congress on Structural and Multidisciplinary Optimization May 9-24, 23, Orlando, Florida, USA Element energy based method for topology optimization Vladimir Uskov Central Aerohydrodynamic Institute

More information

Numerical study of avoiding mechanism issues in structural topology optimization

Numerical study of avoiding mechanism issues in structural topology optimization 10 th World Congress on Structural and Multidisciplinary Optimization May 19-24, 2013, Orlando, Florida, USA Numerical study of avoiding mechanism issues in structural topology optimization Guilian Yi

More information

Structural re-design of engine components

Structural re-design of engine components Structural re-design of engine components Product design cycle Design Development Testing Structural optimization Product knowledge Design freedom 2/18 Structural re-design of engine components Product

More information

Efficient topology optimization in MATLAB using 88 lines of code

Efficient topology optimization in MATLAB using 88 lines of code Struct Multidisc Optim DOI 10.1007/s00158-010-0594-7 EDUCATIONAL ARTICLE Efficient topology optimization in MATLAB using 88 lines of code Erik Andreassen Anders Clausen Mattias Schevenels Boyan S. Lazarov

More information

TOPOLOGY OPTIMIZATION OF AN ELASTIC AIRFOIL

TOPOLOGY OPTIMIZATION OF AN ELASTIC AIRFOIL TOPOLOGY OPTIMIZATION OF AN ELASTIC AIRFOIL Abstract The objective of this study was to use the Hybrid Cellular Automaton (HCA) method, a topology optimization strategy developed at Notre Dame by Andrés

More information

Proportional Topology Optimization: A new non-gradient method

Proportional Topology Optimization: A new non-gradient method Proportional Topology Optimization: A new non-gradient method for solving stress constrained and minimum compliance problems and its implementation in MATLAB Emre Biyikli, Albert C. To Department of Mechanical

More information

Global and clustered approaches for stress constrained topology optimization and deactivation of design variables

Global and clustered approaches for stress constrained topology optimization and deactivation of design variables th World Congress on Structural and Multidisciplinary Optimization May 9-24, 23, Orlando, Florida, USA Global and clustered approaches for stress constrained topology optimization and deactivation of design

More information

A nodal based evolutionary structural optimisation algorithm

A nodal based evolutionary structural optimisation algorithm Computer Aided Optimum Design in Engineering IX 55 A dal based evolutionary structural optimisation algorithm Y.-M. Chen 1, A. J. Keane 2 & C. Hsiao 1 1 ational Space Program Office (SPO), Taiwan 2 Computational

More information

VERSION 4.3. Introduction to Optimization Module

VERSION 4.3. Introduction to Optimization Module VERSION 4.3 Introduction to Optimization Module Introduction to the Optimization Module 1998 2012 COMSOL Protected by U.S. Patents 7,519,518; 7,596,474; and 7,623,991. Patents pending. This Documentation

More information

Abstract. Introduction

Abstract. Introduction RESEARCH ARTICLE Proportional Topology Optimization: A New Non-Sensitivity Method for Solving Stress Constrained and Minimum Compliance Problems and Its Implementation in MATLAB Emre Biyikli, Albert C.

More information

Effect of Modeling Parameters in SIMP Based Stress Constrained Structural Topology Optimization

Effect of Modeling Parameters in SIMP Based Stress Constrained Structural Topology Optimization International Journal of Mechanical & Mechatronics Engineering IJMME-IJENS Vol:17 No:06 32 Effect of Modeling arameters in SIM Based Stress Constrained Structural Topology Optimization Hailu Shimels Gebremedhen

More information

Critical study of design parameterization in topology optimization; The influence of design parameterization on local minima

Critical study of design parameterization in topology optimization; The influence of design parameterization on local minima 2 nd International Conference on Engineering Optimization September 6-9, 21, Lisbon, Portugal Critical study of design parameterization in topology optimization; The influence of design parameterization

More information

Analysis of Fluid-Structure Interaction Effects of Liquid-Filled Container under Drop Testing

Analysis of Fluid-Structure Interaction Effects of Liquid-Filled Container under Drop Testing Kasetsart J. (Nat. Sci.) 42 : 165-176 (2008) Analysis of Fluid-Structure Interaction Effects of Liquid-Filled Container under Drop Testing Chakrit Suvanjumrat*, Tumrong Puttapitukporn and Satjarthip Thusneyapan

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

Topology Optimization and Analysis of Crane Hook Model

Topology Optimization and Analysis of Crane Hook Model RESEARCH ARTICLE Topology Optimization and Analysis of Crane Hook Model Thejomurthy M.C 1, D.S Ramakrishn 2 1 Dept. of Mechanical engineering, CIT, Gubbi, 572216, India 2 Dept. of Mechanical engineering,

More information

Guangxi University, Nanning , China *Corresponding author

Guangxi University, Nanning , China *Corresponding author 2017 2nd International Conference on Applied Mechanics and Mechatronics Engineering (AMME 2017) ISBN: 978-1-60595-521-6 Topological Optimization of Gantry Milling Machine Based on Finite Element Method

More information

Topology Optimization Design of Automotive Engine Bracket

Topology Optimization Design of Automotive Engine Bracket Energy and Power Engineering, 2016, 8, 230-235 Published Online April 2016 in SciRes. http://www.scirp.org/journal/epe http://dx.doi.org/10.4236/epe.2016.84021 Topology Optimization Design of Automotive

More information

A NUMERICAL SIMULATION OF DAMAGE DEVELOPMENT FOR LAMINATED WOVEN FABRIC COMPOSITES

A NUMERICAL SIMULATION OF DAMAGE DEVELOPMENT FOR LAMINATED WOVEN FABRIC COMPOSITES A NUMERICAL SIMULATION OF DAMAGE DEVELOPMENT FOR LAMINATED WOVEN FABRIC COMPOSITES Tetsusei Kurashiki 1, Yujiro Momoji 1, Hiroaki Nakai 1, and Masaru Zako 1 1 Department of Management of Industry and Technology,

More information

Quick Start Guide to midas NFX

Quick Start Guide to midas NFX Quick Start Guide to midas NFX This guide is made for non-experienced FEA users. It provides basic knowledge needed to run midas NFX successfully and begin your analysis. Experienced FEA analysts can also

More information

Generation and validation of optimal topologies for solid freeform fabrication

Generation and validation of optimal topologies for solid freeform fabrication Scholars' Mine Masters Theses Student Research & Creative Works Spring 2015 Generation and validation of optimal topologies for solid freeform fabrication Purnajyoti Bhaumik Follow this and additional

More information

Design optimization for multifunctional 3D printed structures with embedded functional systems

Design optimization for multifunctional 3D printed structures with embedded functional systems 11 th World Congress on Structural and Multidisciplinary Optimisation 07 th -12 th, June 2015, Sydney Australia Design optimization for multifunctional 3D printed structures with embedded functional systems

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

VOLCANIC DEFORMATION MODELLING: NUMERICAL BENCHMARKING WITH COMSOL

VOLCANIC DEFORMATION MODELLING: NUMERICAL BENCHMARKING WITH COMSOL VOLCANIC DEFORMATION MODELLING: NUMERICAL BENCHMARKING WITH COMSOL The following is a description of the model setups and input/output parameters for benchmarking analytical volcanic deformation models

More information

TOPOLOGY OPTIMIZATION OF CONTINUUM STRUCTURES

TOPOLOGY OPTIMIZATION OF CONTINUUM STRUCTURES TOPOLOGY OPTIMIZATION OF CONTINUUM STRUCTURES USING OPTIMALITY CRITERION APPROACH IN ANSYS Dheeraj Gunwant & Anadi Misra Department of Mechanical Engineering, G. B. Pant University of Agriculture and Technology,

More information

Topology Optimization of Multiple Load Case Structures

Topology Optimization of Multiple Load Case Structures Topology Optimization of Multiple Load Case Structures Rafael Santos Iwamura Exectuive Aviation Engineering Department EMBRAER S.A. rafael.iwamura@embraer.com.br Alfredo Rocha de Faria Department of Mechanical

More information

Prescribed Deformations

Prescribed Deformations u Prescribed Deformations Outline 1 Description 2 Finite Element Model 2.1 Geometry Definition 2.2 Properties 2.3 Boundary Conditions 2.3.1 Constraints 2.3.2 Prescribed Deformation 2.4 Loads 2.4.1 Dead

More information

TOPOLOGY OPTIMIZATION: AN INTRODUCTION. Pierre DUYSINX LTAS Automotive Engineering Academic year

TOPOLOGY OPTIMIZATION: AN INTRODUCTION. Pierre DUYSINX LTAS Automotive Engineering Academic year TOPOLOGY OPTIMIZATION: AN INTRODUCTION Pierre DUYSINX LTAS Automotive Engineering Academic year 2017-2018 1 LAY-OUT Introduction Topology problem formulation Problem statement Compliance minimization Homogenization

More information

Exercise 1. 3-Point Bending Using the Static Structural Module of. Ansys Workbench 14.0

Exercise 1. 3-Point Bending Using the Static Structural Module of. Ansys Workbench 14.0 Exercise 1 3-Point Bending Using the Static Structural Module of Contents Ansys Workbench 14.0 Learn how to...1 Given...2 Questions...2 Taking advantage of symmetries...2 A. Getting started...3 A.1 Choose

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

Workshop 15. Single Pass Rolling of a Thick Plate

Workshop 15. Single Pass Rolling of a Thick Plate Introduction Workshop 15 Single Pass Rolling of a Thick Plate Rolling is a basic manufacturing technique used to transform preformed shapes into a form suitable for further processing. The rolling process

More information

Topology Optimization of an Engine Bracket Under Harmonic Loads

Topology Optimization of an Engine Bracket Under Harmonic Loads Topology Optimization of an Engine Bracket Under Harmonic Loads R. Helfrich 1, A. Schünemann 1 1: INTES GmbH, Schulze-Delitzsch-Str. 16, 70565 Stuttgart, Germany, www.intes.de, info@intes.de Abstract:

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

Computer Life (CPL) ISSN: Finite Element Analysis of Bearing Box on SolidWorks

Computer Life (CPL) ISSN: Finite Element Analysis of Bearing Box on SolidWorks Computer Life (CPL) ISSN: 1819-4818 Delivering Quality Science to the World Finite Element Analysis of Bearing Box on SolidWorks Chenling Zheng 1, a, Hang Li 1, b and Jianyong Li 1, c 1 Shandong University

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

Level-set and ALE Based Topology Optimization Using Nonlinear Programming

Level-set and ALE Based Topology Optimization Using Nonlinear Programming 10 th World Congress on Structural and Multidisciplinary Optimization May 19-24, 2013, Orlando, Florida, USA Level-set and ALE Based Topology Optimization Using Nonlinear Programming Shintaro Yamasaki

More information

Topology optimization in B-spline space

Topology optimization in B-spline space Topology optimization in B-spline space Xiaoping Qian Mechanical, Materials, and Aerospace Engineering Department Illinois Institute of Technology Chicago, IL 60062, USA Email: qian@iit.edu Highlights

More information

Crane Hook Design and Analysis

Crane Hook Design and Analysis Crane Hook Design and Analysis G Bhagyaraj 1, K Suryaprakash 2, K Subba Rao 3 1M.Tech. CAD/CAM, Godavari Institute of Engineering and Technology, Rajahmundry 2Associate Professor, Godavari Institute of

More information

Modeling, Simulation and Optimization Analysis on Steering Knuckle Component For Purpose of Weight Reduction

Modeling, Simulation and Optimization Analysis on Steering Knuckle Component For Purpose of Weight Reduction Modeling, Simulation and Optimization Analysis on Steering Knuckle Component For Purpose of Weight Reduction W. M. Wan Muhamad 1, E. Sujatmika 1, Hisham Hamid 1 and Faris Tarlochan 2 1 UniKL Malaysia France

More information

INTEGRATION OF TOPOLOGY OPTIMIZATION WITH EFFICIENT DESIGN OF ADDITIVE MANUFACTURED CELLULAR STRUCTURES. Pittsburgh, PA 15261

INTEGRATION OF TOPOLOGY OPTIMIZATION WITH EFFICIENT DESIGN OF ADDITIVE MANUFACTURED CELLULAR STRUCTURES. Pittsburgh, PA 15261 INTEGRATION OF TOPOLOGY OPTIMIZATION WITH EFFICIENT DESIGN OF ADDITIVE MANUFACTURED CELLULAR STRUCTURES 1 Lin Cheng, 1 Pu Zhang, 1 Emre Biyikli, 1 Jiaxi Bai, 2 Steve Pilz, and *1 Albert C. To 1 Department

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

Topology Optimization and JuMP

Topology Optimization and JuMP Immense Potential and Challenges School of Engineering and Information Technology UNSW Canberra June 28, 2018 Introduction About Me First year PhD student at UNSW Canberra Multidisciplinary design optimization

More information

FB-MULTIPIER vs ADINA VALIDATION MODELING

FB-MULTIPIER vs ADINA VALIDATION MODELING FB-MULTIPIER vs ADINA VALIDATION MODELING 1. INTRODUCTION 1.1 Purpose of FB-MultiPier Validation testing Performing validation of structural analysis software delineates the capabilities and limitations

More information

CONTINUOUS FIBER ANGLE TOPOLOGY OPTIMIZATION FOR POLYMER FUSED FILLAMENT FABRICATION

CONTINUOUS FIBER ANGLE TOPOLOGY OPTIMIZATION FOR POLYMER FUSED FILLAMENT FABRICATION CONTINUOUS FIBER ANGLE TOPOLOGY OPTIMIZATION FOR POLYMER FUSED FILLAMENT FABRICATION Douglas E. Smith and Robert Hoglund Department of Mechanical Engineering Baylor University Abstract Mechanical properties

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

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

SSR Polygonal Search Area

SSR Polygonal Search Area SSR Polygonal Search Area 22-1 SSR Polygonal Search Area In this tutorial, Phase2 is used to determine the factor of safety of a slope using the shear strength reduction (SSR) method. The SSR Polygon Search

More information

Linear and Nonlinear Analysis of a Cantilever Beam

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

More information

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

In topology optimization, the parameterization of design and approximation of its response are closely linked through the discretization process

In topology optimization, the parameterization of design and approximation of its response are closely linked through the discretization process In topology optimization, the parameterization of design and approximation of its response are closely linked through the discretization process For example, in the element-based approach, the design variables

More information

Module 1.3W Distributed Loading of a 1D Cantilever Beam

Module 1.3W Distributed Loading of a 1D Cantilever Beam Module 1.3W Distributed Loading of a 1D 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

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

ES 128: Computer Assignment #4. Due in class on Monday, 12 April 2010

ES 128: Computer Assignment #4. Due in class on Monday, 12 April 2010 ES 128: Computer Assignment #4 Due in class on Monday, 12 April 2010 Task 1. Study an elastic-plastic indentation problem. This problem combines plasticity with contact mechanics and has many rich aspects.

More information

Topology Optimization and Structural Analysis of Continuous Linear Elastic Structures using Optimality Criterion Approach in ANSYS

Topology Optimization and Structural Analysis of Continuous Linear Elastic Structures using Optimality Criterion Approach in ANSYS Topology Optimization and Structural Analysis of Continuous Linear Elastic Structures using Optimality Criterion Approach in ANSYS Kishan Anand 1, Anadi Misra 2 P.G. Student, Department of Mechanical Engineering,

More information

Study on Shaking Table Test and Simulation Analysis of Graphite Dowel-Socket Structure

Study on Shaking Table Test and Simulation Analysis of Graphite Dowel-Socket Structure Study on Shaking Table Test and Simulation Analysis of Graphite Dowel-Socket Structure Xiangxiong Kong, Tiehua Shi & Shaoge Cheng Institute of Earthquake Engineering, China Academy of Building Research,

More information

TOPOLOGY OPTIMIZATION WITH AN IMPLICIT FUNCTION AND PARAMETERIZED CUTTING SURFACE

TOPOLOGY OPTIMIZATION WITH AN IMPLICIT FUNCTION AND PARAMETERIZED CUTTING SURFACE ECCOMAS Congress 2016 VII European Congress on Computational Methods in Applied Sciences and Engineering M. Papadrakakis, V. Papadopoulos, G. Stefanou, V. Plevris (eds.) Crete Island, Greece, 5 10 June

More information

Structural Analysis of an Aluminum Spiral Staircase. EMCH 407 Final Project Presented by: Marcos Lopez and Dillan Nguyen

Structural Analysis of an Aluminum Spiral Staircase. EMCH 407 Final Project Presented by: Marcos Lopez and Dillan Nguyen Structural Analysis of an Aluminum Spiral Staircase EMCH 407 Final Project Presented by: Marcos Lopez and Dillan Nguyen Abstract An old aluminum spiral staircase at Marcos home has been feeling really

More information

Appendix B: Creating and Analyzing a Simple Model in Abaqus/CAE

Appendix B: Creating and Analyzing a Simple Model in Abaqus/CAE Getting Started with Abaqus: Interactive Edition Appendix B: Creating and Analyzing a Simple Model in Abaqus/CAE The following section is a basic tutorial for the experienced Abaqus user. It leads you

More information

Multi-Step Analysis of a Cantilever Beam

Multi-Step Analysis of a Cantilever Beam LESSON 4 Multi-Step Analysis of a Cantilever Beam LEGEND 75000. 50000. 25000. 0. -25000. -50000. -75000. 0. 3.50 7.00 10.5 14.0 17.5 21.0 Objectives: Demonstrate multi-step analysis set up in MSC/Advanced_FEA.

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

Idealization of Design Strip in ADAPT RC

Idealization of Design Strip in ADAPT RC ADAPT RC 2010 Tutorial Idealization of Design Strip in ADAPT RC Update: May 2010 Copyright ADAPT Corporation all rights reserved ADAPT RC 2010 Tutorial 1 Main Toolbar Menu Bar View Toolbar Structure View

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

Topology Optimization of Frame Bracing System for Natural Frequency

Topology Optimization of Frame Bracing System for Natural Frequency Send Orders for Reprints to reprints@benthamscience.net 50 The Open Civil Engineering Journal, 014, 8, 50-56 Open Access Topology Optimization of Frame Bracing System for Natural Frequency Kemin Zhou*

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

Nodal Integration Technique in Meshless Method

Nodal Integration Technique in Meshless Method IOSR Journal of Mechanical and Civil Engineering (IOSR-JMCE) e-issn: 2278-1684,p-ISSN: 2320-334X, Volume 11, Issue 1 Ver. IV (Feb. 2014), PP 18-26 Nodal Integration Technique in Meshless Method Ahmed MJIDILA

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

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

Effectiveness of Element Free Galerkin Method over FEM

Effectiveness of Element Free Galerkin Method over FEM Effectiveness of Element Free Galerkin Method over FEM Remya C R 1, Suji P 2 1 M Tech Student, Dept. of Civil Engineering, Sri Vellappaly Natesan College of Engineering, Pallickal P O, Mavelikara, Kerala,

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

Stress Concentration Factors

Stress Concentration Factors CONSEIL INTERNATIONAL DES MACHINES A COMBUSTION INTERNATIONAL COUNCIL ON COMBUSTION ENGINES CO-ORDINATING WORKING GROUP "CLASSIFICATION SOCIETIES DIESEL" (WG2) Proposal by CIMAC WG4 11th May 2012 IACS

More information

Terrain settlement analysis

Terrain settlement analysis Engineering manual No. 21 Updated: 02/2018 Terrain settlement analysis Program: File: FEM Demo_manual_21.gmk This example contains the solution to terrain settlement under surcharge loading using the Finite

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

A modified Q4/Q4 element for topology optimization

A modified Q4/Q4 element for topology optimization Struct Multidisc Optim (009) 7:55 6 DOI 0.007/s0058-008-08-5 RESEARCH PAPER A modified Q/Q element for topology optimization Glaucio H. Paulino Chau H. Le Received: November 005 / Revised: 9 November 007

More information

ME 345: Modeling & Simulation. Introduction to Finite Element Method

ME 345: Modeling & Simulation. Introduction to Finite Element Method ME 345: Modeling & Simulation Introduction to Finite Element Method Examples Aircraft 2D plate Crashworthiness 2 Human Heart Gears Structure Human Spine 3 F.T. Fisher, PhD Dissertation, 2002 Fluid Flow

More information

Offshore Platform Fluid Structure Interaction (FSI) Simulation

Offshore Platform Fluid Structure Interaction (FSI) Simulation Offshore Platform Fluid Structure Interaction (FSI) Simulation Ali Marzaban, CD-adapco Murthy Lakshmiraju, CD-adapco Nigel Richardson, CD-adapco Mike Henneke, CD-adapco Guangyu Wu, Chevron Pedro M. Vargas,

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

Efficient Topology, Topometry and Sizing Optimisation for LS-DYNA Analysis Problems. Coupling LS-DYNA to VR&D GENESIS

Efficient Topology, Topometry and Sizing Optimisation for LS-DYNA Analysis Problems. Coupling LS-DYNA to VR&D GENESIS Efficient Topology, Topometry and Sizing Optimisation for LS-DYNA Analysis Problems Coupling LS-DYNA to VR&D GENESIS Martin Gambling Managing Director GRM Consulting Ltd, Leamington Spa, UK Summary: For

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

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

Design of auxetic microstructures using topology optimization

Design of auxetic microstructures using topology optimization Copyright 2012 Tech Science Press SL, vol.8, no.1, pp.1-6, 2012 Design of auxetic microstructures using topology optimization N.T. Kaminakis 1, G.E. Stavroulakis 1 Abstract: Microstructures can lead to

More information

The Level Set Method applied to Structural Topology Optimization

The Level Set Method applied to Structural Topology Optimization The Level Set Method applied to Structural Topology Optimization Dr Peter Dunning 22-Jan-2013 Structural Optimization Sizing Optimization Shape Optimization Increasing: No. design variables Opportunity

More information

midas NFX 2017R1 Release Note

midas NFX 2017R1 Release Note Total Solution for True Analysis-driven Design midas NFX 2017R1 Release Note 1 midas NFX R E L E A S E N O T E 2 0 1 7 R 1 Major Improvements Midas NFX is an integrated finite element analysis program

More information

Aufgabe 1: Dreipunktbiegung mit ANSYS Workbench

Aufgabe 1: Dreipunktbiegung mit ANSYS Workbench Aufgabe 1: Dreipunktbiegung mit ANSYS Workbench Contents Beam under 3-Pt Bending [Balken unter 3-Pkt-Biegung]... 2 Taking advantage of symmetries... 3 Starting and Configuring ANSYS Workbench... 4 A. Pre-Processing:

More information

Preference-based Topology Optimization of Body-in-white Structures for Crash and Static Loads

Preference-based Topology Optimization of Body-in-white Structures for Crash and Static Loads Preference-based Topology Optimization of Body-in-white Structures for Crash and Static Loads Nikola Aulig 1, Emily Nutwell 2, Stefan Menzel 1, Duane Detwiler 3 1 Honda Research Institute Europe GmbH 2

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

TOPOLOGY OPTIMIZATION OF CONTINUUM STRUCTURES USING ELEMENT EXCHANGE METHOD. Mohammad Rouhi

TOPOLOGY OPTIMIZATION OF CONTINUUM STRUCTURES USING ELEMENT EXCHANGE METHOD. Mohammad Rouhi TOPOLOGY OPTIMIZATION OF CONTINUUM STRUCTURES USING ELEMENT EXCHANGE METHOD By Mohammad Rouhi A Thesis Submitted to the Faculty of Mississippi State University in Partial Fulfillment of the Requirements

More information

CONTACT STATE AND STRESS ANALYSIS IN A KEY JOINT BY FEM

CONTACT STATE AND STRESS ANALYSIS IN A KEY JOINT BY FEM PERJODICA POLYTECHNICA SER. ME CH. ENG. VOL. 36, NO. 1, PP. -15-60 (1992) CONTACT STATE AND STRESS ANALYSIS IN A KEY JOINT BY FEM K. VARADI and D. M. VERGHESE Institute of Machine Design Technical University,

More information

DESIGN OF MULTI CONTACT AIDED CELLULAR COMPLIANT MECHANISMS FOR STRESS RELIEF

DESIGN OF MULTI CONTACT AIDED CELLULAR COMPLIANT MECHANISMS FOR STRESS RELIEF International Journal of Technical Innovation in Modern Engineering & Science (IJTIMES) Impact Factor: 5.22 (SJIF-2017), e-issn: 2455-2585 Volume 4, Issue 6, June-2018 DESIGN OF MULTI CONTACT AIDED CELLULAR

More information

Outline. 3 Linear Analysis 3.1 Analysis commands 3.2 Results. Box Girder Bridge 2/28

Outline. 3 Linear Analysis 3.1 Analysis commands 3.2 Results. Box Girder Bridge   2/28 ANALYS: linear static. CONSTR: suppor. ELEMEN: bar hx24l reinfo solid tp18l. LOAD: elemen face force prestr reinfo weight. MATERI: elasti isotro. OPTION: direct. POST: binary ndiana. PRE: dianai. RESULT:

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

Seminar Thesis. Topology Optimization using the SIMP method. Submitted by Daniel Löwen

Seminar Thesis. Topology Optimization using the SIMP method. Submitted by Daniel Löwen Seminar Thesis Topology Optimization using the SIMP method Submitted by Daniel Löwen Supervisor Dipl.-Ing. Anna-Lena Beger RWTH Aachen University Aachen, 17. November 2016 This paper was presented at the

More information