A Method for Slicing CAD Models in Binary STL Format

Size: px
Start display at page:

Download "A Method for Slicing CAD Models in Binary STL Format"

Transcription

1 6 th International Advanced Technologies Symposium (IATS 11), May 2011, Elazığ, Turkey A Method for Slicing CAD Models in Binary STL Format O. Topçu 1, Y. Taşcıoğlu 2 and H. Ö. Ünver 3 1 TOBB University of Economics and Technology, Ankara, Turkey, otopcu@etu.edu.tr 2 TOBB University of Economics and Technology, Ankara, Turkey, ytascioglu@etu.edu.tr 3 TOBB University of Economics and Technology, Ankara, Turkey, hounver@etu.edu.tr A Method for Slicing CAD Models in Binary STL Format Abstract Additive manufacturing (AM) is a technique that fabricates parts layer by layer. As a result of this capability it offers numerous advantages over conventional manufacturing. This study concentrates on the process planning stage of the AM and presents a STL slicing algorithm with the ability of G-Code generation.. This work is part of a wider range effort concentrated on the development of an open-source AM system therefore a special emphasis is given that all the software packages used in this study are freely available open source or freeware applications. The results and the capability of the code are tested by simulating several complex 3D geometries on a CNC milling simulator software using the generated G-Codes. Keywords direct slicing, additive manufacturing, rapid prototyping, STL format. A I. INTRODUCTION dditive manufacturing (AM) is defined by a range of technologies in which solid objects are built, directly from 3D CAD models, by adding material in thin layers. Physical parts which are technically impossible to produce with conventional manufacturing methods are produced in hours instead of days and at a relatively low cost. AM is commonly used for producing prototypes of consumer products, patterns for molds, and medical implants. Research on the AM technology, which is also called as Rapid Prototyping (RP), Layered Manufacturing (LM), and Solid Freeform Fabrication (SFF), has been carried out in various universities and companies for over 20 years. A small list of some known commercial AM technologies includes: Stereolithography (SLA) by 3D Systems, Selective Laser Sintering (SLS) by DTM Corp., Fused Deposition Modeling (FDM) by Stratasys Corp., Solid Ground Curing (SGC) by Cubital and Laminated Object Manufacturing (LOM) by Helisys. In addition to known commercial solutions, quite a few AM processes are under development at various universities such as University of Texas, University of Michigan, University of Dayton, MIT, Stanford and Carnegie Melon University [1]. The focus of the research is not only on production methods but also on data exchange standard and process planning. The STL (STereoLithography) file format is considered to be the de-facto data exchange standard for AM processes. Most, if not all, of the major 3D CAD software packages provide tools for STL conversion. The conversion is the execution of a surface triangulation algorithm which is used frequently in finite element analysis since 1970s. Shortcomings of the STL format in terms of processing time and precision set a barrier for demanding engineering projects [1-4]. While some researchers suggest improvements to the STL, others adapt existing CAD formats to AM or propose new formats. Jacob et al. [4] reduce the file size of current STL format by eliminating the repeating vertices data. Zhang et al. [5] use models in IGES format in their welding-based AM system. In [6], a new format PLY (Polygon File Format) is described. In applications where high quality surfaces and dimensional tolerances are less important, the STL format is well researched and is appropriate for professional and nonprofessional users of the area. Process planning includes the steps for slicing the part s triangulated surfaces, tool path generation for each layer and conversion of the tool path data to a suitable CNC data (i.e G- codes). The latter two steps are well established and are almost identical to CNC milling. Different part slicing algorithms for various AM processes exist in literature. Adaptive slicing [7] is one of the approaches to resolve the inevitable staircase effect by using variable layer thickness. The algorithm proposed by Asiabanpour and Khoshnevis [8] saves each layer data on a separate file in order to ease path generation process and free computer memory. In [9], a slicing method suitable for Color Rapid Prototyping (CRP) is presented. There is presently no industrial or formal standard for slice data. As a result the developer or the manufacturer is free to decide on or to develop its own slice data to create the required AM machine code. Some proposals made in this area are listed below. Common Layer Interface (CLI) represents each layer by its thickness and a set of contours. These contours define the boundaries of the solid material; Layer Exchange ASCII Format (LEAF) provides each contour as a non-self-intersecting polygon described in terms of 2D primitives, the polyline and the circular arc; SLC Formats represents several slice formats that use a polyline approximation to represent the contours of a slice. 141

2 O. Topçu, Y. Taşcıoğlu, H. Ö. Ünver The AM process is mainly composed of three stages. First stage includes 3D CAD modelling and STL conversion. Nowadays this stage can be performed by using the freely available 3D modeling software such as SketchUp 3D, CoCreate Modeling Personal Edition, PowerShape-e and etc. Second stage is the aforementioned process planning and the final stage is the production of the physical part, which depends entirely on the AM machine. This study concentrates on the second stage of the AM process and presents a STL slicing algorithm with the ability of G-Code generation. Special emphasis is given that all the software packages used in this study are freely available open source or freeware applications. This work is part of a wider range effort concentrated on the development of an opensource AM system. II. SLICE ALGORITHM z x y imported STL data of the solid body. Given the oriented model, part slicing is a purely geometrical process. Figure 2 exemplifies possible relations between the slicing plane and a facet of the model. From this point on the mentioned facet will be labeled as F, its vertices as V 1, 2, 3 (x 1, 2, 3, y 1, 2, 3, z 1, 2, 3 ) and its normal vector as N (x n, y n, z n ). Normal vectors are required for graphical visualization of the solid body on a computer screen hence they are omitted in the slicing algorithm. According to slicing plane s z-axis value, z, there are five kinds of different positional relationships between the slicing plane and the corresponding facet, as shown in Fig.2 and listed below: 1) z 1 =z & z 2 =z & z 3 =z. 2) z 1 =z & z 2 =z & (z 3 <z z 3 >z). 3) z 1 =z & ((z 2 <z & z 3 >z) (z 2 >z & z 3 <z)). 4) ((z 1 <z) & ((z 2 >z & z 3 >z)) ((z 1 >z) & ((z 2 <z & z 3 <z)). 5) z 1 =z & ((z 2 >z & z 3 >z) (z 2 <z & z 3 <z)). When the numbering is different from the listed above, the algorithm that is given in Fig.3 is capable of handling facets, which are randomly numbered as a circumstance. z y x Figure 1: (a) a tessellated cube with twelve facets (b) a sliced cube Fig.1(a) shows triangulated STL representation of the surfaces of a simple cube shape and Fig.1(b) shows the sliced cube. The algorithm is mainly developed to obtain the contour data of the desired slicing level. As a result it does not have the capacity to slice some facets which are positioned between two slicing planes where no intersections occur. This problem can be solved easily by reducing the gap between two adjacent slices. The gap between two adjacent slices defines the layer thickness which is also a variable inside the code. Also, the software code is developed based on the assumption that the STL representation of the geometry is error-free and is normally assigned in the z-direction. Intentionally, the developed code has divided into separate sections which carry on the calculations based on the results of the previous section. This approach has simplified the debugging process and made the code more flexible when needed. A. Intersection Point Detection Figure 2: Possible intersection cases. The first section of the slicing algorithm finds intersection points between equally set apart slicing planes and the Figure 3: Intersection detection algorithm. In CASE I, F is parallel to the base and there is no need to calculate the intersection points because all three vertices of the F represent the intersection points. In CASE II, F touches the slicing plane with its two vertices and these two points are the intersection locations. The stored information are values of these vertices and the z value of the remaining vertex which will be used to determine whether to keep or dispose of the data. In CASE III, one of the F s vertices touches the slicing plane. The other intersection must be calculated using the 142

3 A Method for Slicing CAD Models in Binary STL Format common form of the well-known line equation (1), where the slope is m and the two variables are x and y. y mx b (1) Also in CASE III, z values of the corresponding points are both stored as 1. This coding enables the algorithm to identify the obtained line data in further parts of the code. In CASE IV, none of the F s vertices touch the slicing plane but one of the vertices is on the other side of the plane when observed from x- or y-axis. As expected, this case creates two intersection points. Obtained line data is also labeled with 1. In CASE V, F touches the slicing plane at a single point which is redundant information for the rest of the code. The outputs of the intersection point detection algorithm are all the points that are located on the slicing plane with the appointed classification reference values. B. Line Creation Fig.4 shows the algorithm that is designed to create lines of the slice data with mentioned z values. Line creation algorithm is similar to the intersection detection. For simplicity and future improvement possibilities, it is kept apart as another process. Figure 4: Line generation algorithm. The outputs of the line creation algorithm are lines that are obtained from the outputs of the aforementioned intersection point detection algorithm with the appointed classification reference value. Tab.1 show the column labels of the output data arrays where the number of points and the number of lines represent the row count of the array. The z values are unchanged and the two associated points are grouped to create a line. Table 1: Output data of intersection point detection and line creation algorithms. Output Data Point Array Line Array Column labels of the array x, y, z ref x 1, y 1, x 2, y 2, z ref C. Repeating Lines Fig.5 represents the overlapping lines which happen when two facets share an edge at the slicing plane. Figure 5: Repeating line cases. As an example, top of a cube can have 10 lines after line creation algorithm. However, only a polygon with 4 lines is enough to draw the boundary of the cube. In order to define interior and exterior of the contour the repeating lines must be removed or merged into a single line. At this point, previously stored z values 2, 1 and the reference values play important role. Comparison between these values and the z values of the overlapping lines z Line1 and z Line2 are listed below: 1) z Line1 = 2 & z Line2 = 2. 2) (z Line1 = 2 & z Line2 2) (z Line1 2 & z Line2 = 2). 3) ((z Line1 < z & z Line2 > z) (z Line1 > z & z Line2 < z)). 4) ((z Line1 <z) & (z Line2 <z)) ((z Line1 >z) & (z Line2 >z)). In the first case (Fig.5 CASE A), neither line represent any boundary. Therefore these two lines are removed from the data that is going to be used to obtain the edge contour at that slicing plane. In the second case (Fig.5 CASE B), both lines reside in the same edge and one of them is removed from the data. As a fact, which line is removed does not matter; because the obtained contour data does not need any reference information. In the third case (Fig.5 CASE C), both lines share the same edge that is actually a boundary for the solid body. Consequently one of the lines is removed. In the fourth case (Fig.5 CASE D), the edge does not represent any boundary of the solid body when the slicing plane is considered. In other words, this data do not create a closed area which is going to be built in the AM process at further points. As a result both lines are removed from the contour data. The outputs of the repeating lines algorithm are the lines that represent the boundary of the solid body on the slicing plane. D. Line Grouping Line grouping is rearranging of the vertices so that they form a closed loop. This closed loop defines the hatch path boundary. Hatch path generation is necessary when additive or subtractive building processes are used to shorten production time and improve surface quality. In this study, line grouping is omitted because the aim of this study is to understand slicing procedure and use this knowledge as a base for future AM process developments. 143

4 O. Topçu, Y. Taşcıoğlu, H. Ö. Ünver E. G-Code Generation This section of the algorithm uses the standard milling G- Code. Only a few machine codes are sufficient to create the required slice as a layer of the whole artifact. The algorithm traces the whole slice data along the x-axis of the slicing plane for every y-axis value and then marks the required locations. In other words, it detects the locations of start and end points of the building process. If the STL file is error free, there exists an even number of marking points. The schematic illustration of G-Code generation obtained from a hollow cube solid is given in Fig.6 The dark, thick lines symbolize the solid and the light, thin lines symbolize the empty space. difference between the figures is due to difference in the step size of the G-Code. The step size is determined from the dimensions of the workpiece. Fig.8 shows one of the slices of the whole part obtained from a 100mm x 100mm x 1mm dimensioned rectangular solid. Fig.9 shows one of the slices produced from a 1m x 1m x 1mm in size solid rectangular workpiece. Figure 8: CNC milling simulation result of logo 1. Figure 6: (a) Schematic illustration of G-Code generation and (b) resultant code of the algorithm. III. CASE STUDIES Examined geometries, which are specially chosen for the purpose of this study, are shown in Fig.7. Single layers of these geometries are tested on CNCSimulator [10], a freeware CNC milling simulation software, by using the G-codes generated with the algorithm described at the previous section. Hollow cube and Kepler s rhombic dodecahedron solid bodies provide all the cases mentioned in the intersection point detection algorithm. For this reason these models are frequently used to detect bugs in the coding phase. Figure 7: Studied geometries to test the competence of the algorithm. Fig.8 and Fig.9 depict the simulation results of the two studied geometries. As it can be seen, slices of relatively complex 3D parts have been simulated using the developed slicing and G-Code generation algorithms. The resolution Figure 9: CNC milling simulation result of logo 2. IV. CONCLUSION In this study a new STL slicing and G-Code generation algorithm was explained. This software algorithm shapes the foundation for future studies and generates slice data of any given 3D model. Performance of the algorithm is evaluated by simulating several complex 3D geometries on a CNC milling simulator using the generated G-Codes. There is currently a limitation on the STL file size but this limitation can be handled by a modifying the code to study with one facet data at a time. Moreover, considering that the operation of integers is faster than that of floating point numbers, the floating point coordinates of the facets in a model may be transformed to 32 bits integers to speed up the process. ACKNOWLEDGMENT The authors appreciate İ. Ethem Bağcı s guidance for NetBeans IDE and Java s memory heap problem. 144

5 A Method for Slicing CAD Models in Binary STL Format REFERENCES [1] D. Dutta, F.B. Prinz, D. Rosen, L. Weiss, Layered Manufacturing: Current Status and Future Trends, Journal of Computing and Information Science in Engineering, vol. 1, pp , March [2] M.J. Pratt, A.D. Bhatt, D. Dutta, K.W. Lyons, L. Patil, R.D. Sriram, Progress towards an international standard for data transfer in rapid prototyping and layered manufacturing, Computer Aided Design, 34, , 2002 [3] V. Kumar, D. Dutta, An assessment of data formats for layered manufacturing, Advances in Engineering Software, 28, , 1997 [4] Gan G.K. Jacob, C.C. Kai, T. Mei, Development of a new rapid prototyping interface, Computers in Industry, 39, 61 70, 1999 [5] Y. M. Zhang, P. Li, Y. Chen, A.T. Male, Automated system for welding based rapid prototyping, Mechatronics, 12, 37 53, 2002 [6] (last visited ) [7] W. Ma, P. He, An adaptive slicing and selective hatching strategy for layered manufacturing, Journal of Materials Processing Technology, 89 90, , 1999 [8] B. Asiabanpour, B. Khoshnevis, Machine path generation for the SIS process, Robotics and Computer Integrated Manufacturing, 20, , 2004 [9] D. X. Wang, D.M. Guo, Z.Y. Jia, H.W. Leng, Slicing of CAD models in color STL format, Computers in Industry, 57, 3 10, 2006 [10] (last visited ) 145

Interim Project Report!

Interim Project Report! Interim Project Report Innovative software for 3D printing Project Website: http://i.cs.hku.hk/fyp/2013// Student: Zhejiao Chen Supervisor: Prof. Francis Lau Department of Computer Science University of

More information

Chapter 2. Literature Review

Chapter 2. Literature Review Chapter 2 Literature Review This chapter reviews the different rapid prototyping processes and process planning issues involved in rapid prototyping. 2.1 Rapid Prototyping Processes Most of the rapid prototyping

More information

The Optimization of Surface Quality in Rapid Prototyping

The Optimization of Surface Quality in Rapid Prototyping The Optimization of Surface Quality in Rapid Prototyping MIRCEA ANCĂU & CRISTIAN CAIZAR Department of Manufacturing Engineering Technical University of Cluj-Napoca B-dul Muncii 103-105, 400641 Cluj-Napoca

More information

COPYRIGHTED MATERIAL RAPID PROTOTYPING PROCESS

COPYRIGHTED MATERIAL RAPID PROTOTYPING PROCESS 2 RAPID PROTOTYPING PROCESS The objective of rapid prototyping is to quickly fabricate any complex-shaped, three-dimensional part from CAD data. Rapid prototyping is an example of an additive fabrication

More information

Sharif University of Technology. Session # Rapid Prototyping

Sharif University of Technology. Session # Rapid Prototyping Advanced Manufacturing Laboratory Department of Industrial Engineering Sharif University of Technology Session # Rapid Prototyping Contents: Rapid prototyping and manufacturing RP primitives Application

More information

SPEEDING UP ALGORITHM FOR BUILDING THE STL MODEL USING 3D PRINTING

SPEEDING UP ALGORITHM FOR BUILDING THE STL MODEL USING 3D PRINTING 83 Military Technical College Kobry El-Kobbah, Cairo, Egypt. 17 th International Conference on Applied Mechanics and Mechanical Engineering. SPEEDING UP ALGORITHM FOR BUILDING THE STL MODEL USING 3D PRINTING

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

A New Slicing Procedure for Rapid Prototyping Systems

A New Slicing Procedure for Rapid Prototyping Systems Int J Adv Manuf Technol (2001) 18:579 585 2001 Springer-Verlag London Limited A New Slicing Procedure for Rapid Prototyping Systems Y.-S. Liao 1 and Y.-Y. Chiu 2 1 Department of Mechanical Engineering,

More information

Geometric Modeling for Rapid Prototyping and Tool Fabrication

Geometric Modeling for Rapid Prototyping and Tool Fabrication Geometric Modeling for Rapid Prototyping and Tool Fabrication E. Levent Gursoz Lee E. Weiss Fritz B. Prinz The Engineering Design Research Center, and The Robotics Institute Carnegie Mellon University

More information

Automatic NC Part. Programming Interface for a UV Laser Ablation Tool

Automatic NC Part. Programming Interface for a UV Laser Ablation Tool Automatic NC Part Programming Interface for a UV Laser Ablation Tool by Emir Mutapcic Dr. Pio Iovenitti Dr. Jason Hayes Abstract This research project commenced in December 2001 and it is expected to be

More information

manufactured parts carry good precision, excellent surface precision and high flexibility. This Baan-Chyan, Taipei, Taiwan, 220, R.O.C.

manufactured parts carry good precision, excellent surface precision and high flexibility. This Baan-Chyan, Taipei, Taiwan, 220, R.O.C. The Approach of Complex Insert Packaging Fabrication in Stereolithography Y. Y. Chiu * and J. H. Chang ++ Department of Industrial and Commercial Design, Oriental Institute of Technology, 58, Sec. 2, Syh-Chuan

More information

LASER ADDITIVE MANUFACTURING PROCESS PLANNING AND AUTOMATION

LASER ADDITIVE MANUFACTURING PROCESS PLANNING AND AUTOMATION LASER ADDITIVE MANUFACTURING PROCESS PLANNING AND AUTOMATION Jun Zhang, Jianzhong Ruan, Frank Liou Department of Mechanical and Aerospace Engineering and Engineering Mechanics Intelligent Systems Center

More information

A MULTI-MATERIAL VIRTUAL PROTOTYPING SYSTEM

A MULTI-MATERIAL VIRTUAL PROTOTYPING SYSTEM A MULTI-MATERIAL VIRTUAL PROTOTYPING SYSTEM S. H. Choi and H.H. Cheung Department of Industrial and Manufacturing Systems Engineering The University of Hong Kong, Pokfulam Road, Hong Kong. Reviewed, accepted

More information

Rapid Prototyping Rev II

Rapid Prototyping Rev II Rapid Prototyping Rev II D R. T A R E K A. T U T U N J I R E V E R S E E N G I N E E R I N G P H I L A D E L P H I A U N I V E R S I T Y, J O R D A N 2 0 1 5 Prototype A prototype can be defined as a model

More information

Offset Triangular Mesh Using the Multiple Normal Vectors of a Vertex

Offset Triangular Mesh Using the Multiple Normal Vectors of a Vertex 285 Offset Triangular Mesh Using the Multiple Normal Vectors of a Vertex Su-Jin Kim 1, Dong-Yoon Lee 2 and Min-Yang Yang 3 1 Korea Advanced Institute of Science and Technology, sujinkim@kaist.ac.kr 2 Korea

More information

ADAPTIVE LAMINATED MACHINING FOR PROTOTVPING OF DIES AND MOLDS

ADAPTIVE LAMINATED MACHINING FOR PROTOTVPING OF DIES AND MOLDS ABSTRACT ADAPTIVE LAMINATED MACHINING FOR PROTOTVPING OF DIES AND MOLDS F. A. Vouzelaud and A. Bagchi Department of Mechanical Engineering Center for Advanced Manufacturing Clemson University Clemson,

More information

This document contains the draft version of the following paper:

This document contains the draft version of the following paper: This document contains the draft version of the following paper: R.K. Arni and S.K. Gupta. Manufacturability analysis of flatness tolerances in solid freeform fabrication. ASME Journal of Mechanical Design,

More information

CONFORMED-TO-CAD DESIGN SLOPED-EDGE ADAPTIVE SLICING. Mohammad Hayasi, Bahram Asisbanpour

CONFORMED-TO-CAD DESIGN SLOPED-EDGE ADAPTIVE SLICING. Mohammad Hayasi, Bahram Asisbanpour CONFORMED-TO-CAD DESIGN SLOPED-EDGE ADAPTIVE SLICING Mohammad Hayasi, Bahram Asisbanpour Ingram School of Engineering, 601 University Drive, Texas State University-San Marcos, 78666, Texas, USA Abstract

More information

Design Workflow for AM: From CAD to Part

Design Workflow for AM: From CAD to Part Design Workflow for AM: From CAD to Part Sanjay Joshi Professor of Industrial and Manufacturing Engineering Penn State University Offered by: Center for Innovative Materials Processing through Direct Digital

More information

Reasoning Boolean Operation for Modeling, Simulation and Fabrication of Heterogeneous Objects. Abstract

Reasoning Boolean Operation for Modeling, Simulation and Fabrication of Heterogeneous Objects. Abstract Reasoning Boolean Operation for Modeling, Simulation and Fabrication of Heterogeneous Objects X. Hu, T. Jiang, F. Lin, and W. Sun Department of Mechanical Engineering and Mechanics, Drexel University,

More information

Additive Manufacturing

Additive Manufacturing Additive Manufacturing Prof. J. Ramkumar Department of Mechanical Engineering IIT Kanpur March 28, 2018 Outline Introduction to Additive Manufacturing Classification of Additive Manufacturing Systems Introduction

More information

ADAPTIVE SLICING WITH THE SANDERS PROTOTYPE INKJET MODELING SYSTEM. Abstract. Introduction

ADAPTIVE SLICING WITH THE SANDERS PROTOTYPE INKJET MODELING SYSTEM. Abstract. Introduction ADAPTIVE SLICING WITH THE SANDERS PROTOTYPE INKJET MODELING SYSTEM K. Unnanon, D. Cormier, and E. Sanii Department of Industrial Engineering, North Carolina State University, Raleigh, NC 27695 Abstract

More information

Keywords: Rapid Prototyping (RP), Fused Deposition Modeling (FDM), Geneva Mechanism.

Keywords: Rapid Prototyping (RP), Fused Deposition Modeling (FDM), Geneva Mechanism. IJESRT INTERNATIONAL JOURNAL OF ENGINEERING SCIENCES & RESEARCH TECHNOLOGY Prototype of Mechanisms using Fused Deposition Modelling Process Mr. Shrikant B. Gawas *, Mr.Pranit M. Patil *# Assistant Professor,

More information

A Method to Generate Exact Contour Files for Solid Freeform Fabrication

A Method to Generate Exact Contour Files for Solid Freeform Fabrication A Method to Generate Exact Contour Files for Solid Freeform Fabrication Sashidhar Guduri, Graduate Research Assistant Richard H. Crawford, Assistant Professor Joseph J. Beaman, Professor Dept. of Mechanical

More information

A processing algorithm for freeform fabrication of heterogeneous structures

A processing algorithm for freeform fabrication of heterogeneous structures A processing algorithm for freeform fabrication of heterogeneous structures Wei Sun Tao Jiang and Feng Lin The authors Wei Sun and Tao Jiang are based at the Department of Mechanical Engineering and Mechanics,

More information

A Prototype Two-Axis Laser Scanning System used in Stereolithography Apparatus with New Algorithms for Computerized Model Slicing

A Prototype Two-Axis Laser Scanning System used in Stereolithography Apparatus with New Algorithms for Computerized Model Slicing American Journal of Applied Sciences 6 (9): 1701-1707, 2009 ISSN 1546-9239 2009 Science Publications A Prototype Two-Axis Laser Scanning System used in Stereolithography Apparatus with New Algorithms for

More information

THE EFFECTIVENESS OF MULTI-CRITERIA OPTIMIZATION IN RAPID PROTOTYPING

THE EFFECTIVENESS OF MULTI-CRITERIA OPTIMIZATION IN RAPID PROTOTYPING THE PUBLISHING HOUSE PROCEEDINGS OF THE ROMANIAN ACADEMY, Series A, OF THE ROMANIAN ACADEMY Volume 15, Number 4/214, pp. 362 37 THE EFFECTIVENESS OF MULTI-CRITERIA OPTIMIZATION IN RAPID PROTOTYPING Mircea

More information

Smart Integration of JT in Additive Manufacturing - A Use Case for 3D Printing

Smart Integration of JT in Additive Manufacturing - A Use Case for 3D Printing Smart Integration of JT in Additive Manufacturing - A Use Case for 3D Printing ProSTEP ivip Symposium 2015 May 6 th, 2015 Marco Grimm, Alexander Christ, Reiner Anderl 1 Outline 1 Motivation 2 Additive

More information

Study of RP&M and Implementation of the Software For General Part Fabrication

Study of RP&M and Implementation of the Software For General Part Fabrication Study of RP&M and Implementation of the Software For General Part Fabrication Submitted to Committee Members Dr. Kai-Hsiung Chang Dr. Bor.Z Jang Dr. Wen-Chen Hu By Qiang Yao In Partial Fulfillment of the

More information

Reconstruction of 3D Interacting Solids of Revolution from 2D Orthographic Views

Reconstruction of 3D Interacting Solids of Revolution from 2D Orthographic Views Reconstruction of 3D Interacting Solids of Revolution from 2D Orthographic Views Hanmin Lee, Soonhung Han Department of Mechanical Engeneering Korea Advanced Institute of Science & Technology 373-1, Guseong-Dong,

More information

Rapid prototyping for self-similarity design

Rapid prototyping for self-similarity design Journal of Materials Processing Technology 139 (2003) 219 225 Rapid prototyping for self-similarity design S.C. Soo, K.M. Yu Department of Manufacturing Engineering, The Hong Kong Polytechnic University,

More information

Layered Manufacturing: Current Status and Future Trends

Layered Manufacturing: Current Status and Future Trends Debasish Dutta Department of Mechanical Engineering University of Michigan Ann, Arbor, MI 48109 Fritz B Prinz Department of Mechanical Engineering Stanford University Stanford, CA 94305 David Rosen School

More information

Chapter 3. Sukhwinder Singh

Chapter 3. Sukhwinder Singh Chapter 3 Sukhwinder Singh PIXEL ADDRESSING AND OBJECT GEOMETRY Object descriptions are given in a world reference frame, chosen to suit a particular application, and input world coordinates are ultimately

More information

Representation and Processing of Heterogeneous Objects for Solid Freeform Fabrication

Representation and Processing of Heterogeneous Objects for Solid Freeform Fabrication IFIP WG5.2 Geometric Modelling Workshop, Dec.7-9, 1998, Tokyo Representation and Processing of Heterogeneous Objects for Solid Freeform Fabrication Vinod Kumar, Sanjay Rajagopalan, Mark Cutkosky and Debasish

More information

Issues in Process Planning for Laser Chemical Vapor Deposition

Issues in Process Planning for Laser Chemical Vapor Deposition Issues in Process Planning for Laser Chemical Vapor Deposition Jae-hyoung Park David W. Rosen The George W. Woodruff School of Mechanical Engineering Georgia Institute of Technology Atlanta, GA 30332-0405

More information

The Use of STEP to Integrate Design and Solid Freeform Fabrication

The Use of STEP to Integrate Design and Solid Freeform Fabrication The Use of STEP to Integrate Design and Solid Freeform Fabrication Charles R. Gilman Stephen J. Rock Rensselaer Polytechnic Institute New York State Center for Advanced Technology in Automation, Robotics

More information

Rapid Prototyping & Manufacturing. ENGI 7962 Computer-Aided Engineering

Rapid Prototyping & Manufacturing. ENGI 7962 Computer-Aided Engineering Rapid Prototyping & Manufacturing Outline Why RP&M Technology? Basic Principles Currently Available/Developing l i Systems Directions for RP&M Research R&D Directions in Manufacturing Intelligent Manufacturing

More information

A practical path planning methodology for wire and arc additive manufacturing of thin-walled structures

A practical path planning methodology for wire and arc additive manufacturing of thin-walled structures University of Wollongong Research Online Faculty of Engineering and Information Sciences - Papers: Part A Faculty of Engineering and Information Sciences 2015 A practical path planning methodology for

More information

Chapter 6. Computer Implementations and Examples

Chapter 6. Computer Implementations and Examples Chapter 6 Computer Implementations and Examples In this chapter, the computer implementations and illustrative examples of the proposed methods presented. The proposed methods are implemented on the 500

More information

Uni-edit - Sample of Rewrite

Uni-edit - Sample of Rewrite Uni-edit - Sample of Rewrite The Normal Double-Faced Rapid Prototyping Process by using Slope Layer Compensation Abstract Purpose The study is focusesd on the normal Doubledouble-Faced faced rapid prototyping

More information

IJCSI International Journal of Computer Science Issues, Vol. 9, Issue 5, No 2, September 2012 ISSN (Online):

IJCSI International Journal of Computer Science Issues, Vol. 9, Issue 5, No 2, September 2012 ISSN (Online): www.ijcsi.org 126 Automatic Part Primitive Feature Identification Based on Faceted Models Gandjar Kiswanto 1 and Muizuddin Azka 2 1 Department of Mechanical Engineering, Universitas Indonesia Depok, 16424,

More information

SFF-Oriented Modeling and Process Planning of Functionally Graded Materials using a Novel Equal Distance Offset Approach

SFF-Oriented Modeling and Process Planning of Functionally Graded Materials using a Novel Equal Distance Offset Approach SFF-Oriented Modeling and Process Planning of Functionally Graded Materials using a Novel Equal Distance Offset Approach Anping Xu and Leon L. Shaw 2 School of Mechanical Engineering, Hebei University

More information

Glossary of dictionary terms in the AP geometry units

Glossary of dictionary terms in the AP geometry units Glossary of dictionary terms in the AP geometry units affine linear equation: an equation in which both sides are sums of terms that are either a number times y or a number times x or just a number [SlL2-D5]

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

Visualization tools for design support in SFF

Visualization tools for design support in SFF Visualization tools for design support in SFF R. Ian Campbell*, Haeseong J. Jee # and H. S. Lee* *School of Mech, Mats and Manu Engineering, University of Nottingham, NG7 2RD, UK. # Dept. of Mech Engineering,

More information

Review of Computer Aided Design (CAD) Data Transformation in Rapid Prototyping Technology

Review of Computer Aided Design (CAD) Data Transformation in Rapid Prototyping Technology International Journal of Information & Computation Technology. ISSN 0974-2255 Volume 1, Number 2 (2011), pp. 11-16 International Research Publications House http://www.irphouse.com Review of Computer Aided

More information

Methods for increasing customization in rapid machining patient-specific bone implants

Methods for increasing customization in rapid machining patient-specific bone implants Graduate Theses and Dissertations Iowa State University Capstones, Theses and Dissertations 2011 Methods for increasing customization in rapid machining patient-specific bone implants Shawn Spencer Iowa

More information

Converting a CAD model into a manufacturing model for the components made of a multiphase perfect material

Converting a CAD model into a manufacturing model for the components made of a multiphase perfect material Converting a CAD model into a manufacturing model for the components made of a multiphase perfect material Feng Zhu a, Ke-Zhang Chen a, Xin-An Feng b a Department of echanical Engineering, The University

More information

Product Model Driven Direct Manufacturing

Product Model Driven Direct Manufacturing Product Model Driven Direct Manufacturing Per Carleberg Department ofmanufacturing Systems Royal nstitute of Technology Stockholm Abstract The input to the freeform fabrication process is essentially geometric

More information

Rapid prototyping for engineers.

Rapid prototyping for engineers. Rapid prototyping for engineers carmelo.demaria@centropiaggio.unipi.it 3D world A picture says than 1000 words...... a model tells the whole story Building 3D object Building 3D object: subtractive Milling

More information

Influence of SLA Rapid Prototyping Process Parameters on the Forming Precision Yaru Shi1, a, Yan Cao2, b*, Yongming Wang 3, cand Liang Huang4,d

Influence of SLA Rapid Prototyping Process Parameters on the Forming Precision Yaru Shi1, a, Yan Cao2, b*, Yongming Wang 3, cand Liang Huang4,d Advances in Intelligent Systems Research, volume 0 th International Conference on Mechatronics, Computer and Education Informationization (MCEI 0) Influence of SLA Rapid Prototyping Process Parameters

More information

AM Feature and Knowledge Based Process Planning for Additive Manufacturing in Multiple Parts Production Context. Y. Zhang, A.

AM Feature and Knowledge Based Process Planning for Additive Manufacturing in Multiple Parts Production Context. Y. Zhang, A. AM Feature and Knowledge Based Process Planning for Additive Manufacturing in Multiple Parts Production Context Y. Zhang, A. Bernard IRCCyN, Ecole Centrale de Nantes, 44300 Nantes, France Abstract Additive

More information

Course Number: Course Title: Geometry

Course Number: Course Title: Geometry Course Number: 1206310 Course Title: Geometry RELATED GLOSSARY TERM DEFINITIONS (89) Altitude The perpendicular distance from the top of a geometric figure to its opposite side. Angle Two rays or two line

More information

ROBUST PROTOTYPING. Jana K. Chari Dr. Jerry L. Hall

ROBUST PROTOTYPING. Jana K. Chari Dr. Jerry L. Hall ROBUST PROTOTYPING Jana K. Chari Dr. Jerry L. Hall Department of Mechanical Engineering Engel Manufacturing Laboratory Iowa State University Ames, IA 50011 Submitted for Publication in Solid Freeform Fabrication

More information

Reverse Engineering: Mechanical. Dr. Tarek A. Tutunji

Reverse Engineering: Mechanical. Dr. Tarek A. Tutunji Reverse Engineering: Mechanical Dr. Tarek A. Tutunji Mechanical RE References: 1. RE (reverse engineering) as necessary phase by rapid product development by Sokovic and Kopac 2. A Practical Appreciation

More information

3D printing as an inspiring technology for challenges in 21 st century

3D printing as an inspiring technology for challenges in 21 st century 3D printing as an inspiring technology for challenges in 21 st century Marianna Zichar zichar.marianna@inf.unideb.hu/homepage University of Debrecen Faculty of Informatics HUNGARY 18.05.2017, Valencia

More information

Solidifying Wireframes

Solidifying Wireframes Solidifying Wireframes Vinod Srinivasan, Esan Mandal and Ergun Akleman Visualization Laboratory Department of Architecture Texas A&M University College Station, TX 77843-3137, USA E-mail: vinod@viz.tamu.edu

More information

Rapid Fabrication of Large-sized Solid Shape using Variable Lamination Manufacturing and Multi-functional Hotwire Cutting System D.Y. Yang 1, H.C.

Rapid Fabrication of Large-sized Solid Shape using Variable Lamination Manufacturing and Multi-functional Hotwire Cutting System D.Y. Yang 1, H.C. Rapid Fabrication of Large-sized Solid Shape using Variable Lamination Manufacturing and Multi-functional Hotwire Cutting System D.Y. Yang 1, H.C.Kim 1, S.H.Lee 1,*, D.G.Ahn 1,** S.K.Park 2 1 Dept. of

More information

Computing an optimal hatching direction in Layered Manufacturing

Computing an optimal hatching direction in Layered Manufacturing Computing an optimal hatching direction in Layered Manufacturing Jörg Schwerdt Michiel Smid Man Chung Hon Ravi Janardan June 15, 2001 Abstract In Layered Manufacturing (LM), a prototype of a virtual polyhedral

More information

The Use ofvrml to Integrate Design and Solid Freeform Fabrication

The Use ofvrml to Integrate Design and Solid Freeform Fabrication The Use ofvrml to ntegrate Design and Solid Freeform Fabrication Yanshuo Wang Jian Dong * Harris L. Marcus Solid Freeform Fabrication Laboratory University ofconnecticut Storrs, CT 06269 ABSTRACT The Virtual

More information

Available online at ScienceDirect. Procedia Engineering 149 (2016 )

Available online at   ScienceDirect. Procedia Engineering 149 (2016 ) Available online at www.sciencedirect.com ScienceDirect Procedia Engineering 149 (2016 ) 100 104 International Conference on Manufacturing Engineering and Materials, ICMEM 2016, 6-10 June 2016, Nový Smokovec,

More information

Geometric Modeling. Introduction

Geometric Modeling. Introduction Geometric Modeling Introduction Geometric modeling is as important to CAD as governing equilibrium equations to classical engineering fields as mechanics and thermal fluids. intelligent decision on the

More information

Influence of SLA rapid prototyping process parameters on the forming. precision

Influence of SLA rapid prototyping process parameters on the forming. precision th International Conference on Information Systems and Computing Technology (ISCT 0) Influence of SLA rapid prototyping process parameters on the forming precision Shi Yaru, a, Cao Yan, b* Wang Yongming,c,

More information

Accurate Trajectory Control for Five-Axis Tool-Path Planning

Accurate Trajectory Control for Five-Axis Tool-Path Planning Accurate Trajectory Control for Five-Axis Tool-Path Planning Rong-Shine Lin* and Cheng-Bing Ye Abstract Computer-Aided Manufacturing technology has been widely used for three-axis CNC machining in industry

More information

TOOL PATH GENERATION FOR 5-AXIS LASER CLADDING

TOOL PATH GENERATION FOR 5-AXIS LASER CLADDING TOOL PATH GENERATION FOR 5-AXIS LASER CLADDING Author: M. Kerschbaumer *, G. Ernst * P. O Leary ** Date: September 24, 2004 * JOANNEUM RESEARCH Forschungsgesellschaft mbh Laser Center Leoben, Leobner Strasse

More information

E V ER-growing global competition forces. Accuracy Analysis and Improvement for Direct Laser Sintering

E V ER-growing global competition forces. Accuracy Analysis and Improvement for Direct Laser Sintering Accurac Analsis and Improvement for Direct Laser Sintering Y. Tang 1, H. T. Loh 12, J. Y. H. Fuh 2, Y. S. Wong 2, L. Lu 2, Y. Ning 2, X. Wang 2 1 Singapore-MIT Alliance, National Universit of Singapore

More information

HP 3D Multi Jet Fusion DYNAGRAPH 08/05/2018

HP 3D Multi Jet Fusion DYNAGRAPH 08/05/2018 HP 3D Multi Jet Fusion DYNAGRAPH 08/05/2018 1 Contents DISRUPT TO CREAT CHANGE CURRENT AVAILABLE 3D TECHNOLOGIES WHAT MAKES HP 3D MJF DIFFERENT HOW HP 3D MJF WORKS POST FINISHING MATERIALS MARKET OPPORTUNITIES

More information

CURVE is the Institutional Repository for Coventry University

CURVE is the Institutional Repository for Coventry University The current status of process planning for multi-material rapid prototyping fabrication Li, W.D., Jin, G.Q., Gao, L., Page, C. and Popplewell, K. Author post-print (accepted) deposited in CURVE May 2012

More information

CNC-RP: A Technique for Using CNC Machining as a Rapid Prototyping Tool in Product/Process Development

CNC-RP: A Technique for Using CNC Machining as a Rapid Prototyping Tool in Product/Process Development CNC-RP: A Technique for Using CNC Machining as a Rapid Prototyping Tool in Product/Process Development Matthew Frank Graduate Student mcf113@psu.edu Drs. Sanjay B. Joshi and Richard A. Wysk Department

More information

MDMD Rapid Product Development

MDMD Rapid Product Development MSc in Manufacturing and Welding Engineering Design - Dr.-Eng. Antonios Lontos Department of Mechanical Engineering School of Engineering and Applied Sciences Frederick University 7 Y. Frederickou Str.,

More information

Boolean Component. Chapter 1. Boolean Operations

Boolean Component. Chapter 1. Boolean Operations Chapter 1. Boolean Component Component: The Boolean Component (BOOL), in the bool directory, performs Boolean operations on the model topology of bodies, first finding the intersections between bodies,

More information

MULTI OBJECTIVE OPTIMISATION OF BUILD ORIENTATION FOR RAPID PROTOTYPING WITH FUSED DEPOSITION MODELING (FDM)

MULTI OBJECTIVE OPTIMISATION OF BUILD ORIENTATION FOR RAPID PROTOTYPING WITH FUSED DEPOSITION MODELING (FDM) MULTI OBJECTIVE OPTIMISATION OF BUILD ORIENTATION FOR RAPID PROTOTYPING WITH FUSED DEPOSITION MODELING (FDM) G. R. N. Tagore*, Swapnil. D. Anjikar +, A. Venu Gopal* * Department of Mechanical Engineering,

More information

An Integrated Software System for Process Planning for Layered Manufacturing

An Integrated Software System for Process Planning for Layered Manufacturing Abstract An Integrated Software System for Process Planning for Layered Manufacturing Anne L. Marsan, Seth Allen, Prashant Kulkarni, and Deba Dutta CAD/CAM Group Department of Mechanical Engineering and

More information

Successful STLs for 3D Printing

Successful STLs for 3D Printing HOW-TO GUIDE Successful STLs for 3D Printing OVERVIEW This document will help 3D printing users ensure their STL files produce successful 3D printed parts. It will help them become familiar with popular

More information

6 Mathematics Curriculum

6 Mathematics Curriculum New York State Common Core 6 Mathematics Curriculum GRADE GRADE 6 MODULE 5 Table of Contents 1 Area, Surface Area, and Volume Problems... 3 Topic A: Area of Triangles, Quadrilaterals, and Polygons (6.G.A.1)...

More information

Additive manufacturing.

Additive manufacturing. Additive manufacturing carmelo.demaria@centropiaggio.unipi.it Building 3D object Building 3D object: subtractive Milling Turning Drilling Planning Sawing Grinding EDM Laser cutting Water jet cutting Building

More information

Effect of path strategies on metallic parts manufactured by additive process Abstract Introduction [1-2] [3] [4] [5] [6] [7] [8-10] [11]

Effect of path strategies on metallic parts manufactured by additive process Abstract Introduction [1-2] [3] [4] [5] [6] [7] [8-10] [11] Effect of path strategies on metallic parts manufactured by additive process J.KERNINON*, P.MOGNOL*, J.Y.HASCOET*, C.LEGONIDEC *Institut de Recherche en Communications et Cybernétique de Nantes (IRCCYN)

More information

Design And Integration Of A Laser-Based Material Deposition System

Design And Integration Of A Laser-Based Material Deposition System Design And Integration Of A Laser-Based Material Deposition System J. Laeng@Jamaluddin Abdullah*, Frank Liou**, M.N. Mohamad Ibrahim and W.M. Wan Muhammad* *School of Mechanical Engineering, Universiti

More information

Research of 3D part reconstruction from Orthographic Projections Based on Solid Features

Research of 3D part reconstruction from Orthographic Projections Based on Solid Features Research of 3D part reconstruction from Orthographic Projections Based on Solid Features HAO Yong-tao, Xu Wenyi (CAD Research Center, Tongji University, Shanghai 201804, China, haoyt@vip.sina.com) Abstract

More information

Selective Space Structures Manual

Selective Space Structures Manual Selective Space Structures Manual February 2017 CONTENTS 1 Contents 1 Overview and Concept 4 1.1 General Concept........................... 4 1.2 Modules................................ 6 2 The 3S Generator

More information

TopMill TopTurn. Jobshop Programming & Simulation for Multi-Side & Complete Mill-Turn Machining for every CNC Control

TopMill TopTurn. Jobshop Programming & Simulation for Multi-Side & Complete Mill-Turn Machining for every CNC Control MEKAMS MillTurnSim TopCAM TopCAT Jobshop Programming & Simulation for Multi-Side & Complete Mill-Turn Machining for every CNC Control 2 Jobshop Programming for Multi-Side and Complete Mill-Turn Machining

More information

Computer Aided Drafting, Design and Manufacturing Volume 26, Number 4, December 2016, Page 30

Computer Aided Drafting, Design and Manufacturing Volume 26, Number 4, December 2016, Page 30 Computer Aided Drafting, Design and Manufacturing Volume 26, Number 4, December 2016, Page 30 CADDM Aircraft wing box rapid modeling based on skeleton model Zhang Chao, Xi Ping School of Mechanical Engineering

More information

3D PRINTING 1. INTRODUCTION 2. HISTORY 3. GENERAL PRINCIPLES 4. WORKFLOW 5. APPLICATIONS 6. CONCLUSION CONTENT: 12 DECEMBER 2017 PETR VALENTA

3D PRINTING 1. INTRODUCTION 2. HISTORY 3. GENERAL PRINCIPLES 4. WORKFLOW 5. APPLICATIONS 6. CONCLUSION CONTENT: 12 DECEMBER 2017 PETR VALENTA 3D PRINTING 1 12 DECEMBER 2017 PETR VALENTA CONTENT: 1. INTRODUCTION 2. HISTORY 3. GENERAL PRINCIPLES 4. WORKFLOW 5. APPLICATIONS 6. CONCLUSION 1. Introduction 2 2005 2007, Software: Blender 1. Introduction

More information

RAPID PROTOTYPING TECHNOLOGY AND ITS APPLICATIONS

RAPID PROTOTYPING TECHNOLOGY AND ITS APPLICATIONS RAPID PROTOTYPING TECHNOLOGY AND ITS APPLICATIONS 1. SHASHWAT DWIVEDI, 2.SHALU RAI 1.UG Student, Dept. of Mechanical Engineering, Krishna Institute of Engineering and Technology, Ghaziabad, U.P., India

More information

DESIGN AND ANALYSIS OF ORTHOGONALLY COMPLIANT FEATURES FOR DURAFORM/SLS MANUFACTURED PLATES

DESIGN AND ANALYSIS OF ORTHOGONALLY COMPLIANT FEATURES FOR DURAFORM/SLS MANUFACTURED PLATES DESIGN AND ANALYSIS OF ORTHOGONALLY COMPLIANT FEATURES FOR DURAFORM/SLS MANUFACTURED PLATES Mario Faustini*, Richard Crawford*, Richard R. Neptune*, William Rogers, Andrew Gitter and Gordon Bosker *The

More information

coding of various parts showing different features, the possibility of rotation or of hiding covering parts of the object's surface to gain an insight

coding of various parts showing different features, the possibility of rotation or of hiding covering parts of the object's surface to gain an insight Three-Dimensional Object Reconstruction from Layered Spatial Data Michael Dangl and Robert Sablatnig Vienna University of Technology, Institute of Computer Aided Automation, Pattern Recognition and Image

More information

Extracting consistent and manifold interfaces from multi-valued volume data sets

Extracting consistent and manifold interfaces from multi-valued volume data sets Extracting consistent and manifold interfaces from multi-valued volume data sets Stephan Bischoff, Leif Kobbelt Lehrstuhl für Informatik 8, RWTH Aachen, 52056 Aachen Email: {bischoff,kobbelt}@informatik.rwth-aachen.de

More information

Problem-Adapted Mesh Generation With FEM-Features

Problem-Adapted Mesh Generation With FEM-Features INTERNATIONAL DESIGN CONFERENCE - DESIGN 2000 Dubrovnik, May 23-26, 2000. Problem-Adapted Mesh Generation With FEM-Features Dipl.-Ing. Horst Werner, Prof. Dr.-Ing. Christian Weber, cand. ing. Martin Schilke

More information

Design, Planning, Machining, and Manufacturing Using Rapid Prototyping Technologies in Modern Engineering Md.Hira Hashimi, Md Abdul Basith

Design, Planning, Machining, and Manufacturing Using Rapid Prototyping Technologies in Modern Engineering Md.Hira Hashimi, Md Abdul Basith International Journal of Scientific Research and Management (IJSRM) Volume 5 Issue 01 Pages 5064-5074 2017 Website: www.ijsrm.in ISSN (e): 2321-3418 Design, Planning, Machining, and Manufacturing Using

More information

Review for Mastery Using Graphs and Tables to Solve Linear Systems

Review for Mastery Using Graphs and Tables to Solve Linear Systems 3-1 Using Graphs and Tables to Solve Linear Systems A linear system of equations is a set of two or more linear equations. To solve a linear system, find all the ordered pairs (x, y) that make both equations

More information

Graphics (Output) Primitives. Chapters 3 & 4

Graphics (Output) Primitives. Chapters 3 & 4 Graphics (Output) Primitives Chapters 3 & 4 Graphic Output and Input Pipeline Scan conversion converts primitives such as lines, circles, etc. into pixel values geometric description a finite scene area

More information

Additive Fertigung durchgängig und effizient. Industrieller 3D-Druck von der Idee bis zum fertigen Bauteil

Additive Fertigung durchgängig und effizient. Industrieller 3D-Druck von der Idee bis zum fertigen Bauteil Additive Fertigung durchgängig und effizient Industrieller 3D-Druck von der Idee bis zum fertigen Bauteil Realize innovation. Was erwartet sie heute? 08:30 Empfang mit Frühstück 09:00 Generative Design

More information

Precision Engineering

Precision Engineering Precision Engineering 37 (2013) 753 757 Contents lists available at SciVerse ScienceDirect Precision Engineering jou rnal h om epage: www.elsevier.com/locate/precision Tool wear compensation in 3D micro

More information

Figure 1

Figure 1 Figure 1 http://www.geeky-gadgets.com/wp-content/uploads/2013/11/robox-3d-printer5.jpg Table of Contents What 3D printing is... 1 How does 3D Printing work?... 1 Methods and technologies of 3D Printing...

More information

Battles with Overhang in 3D Printing

Battles with Overhang in 3D Printing Battles with Overhang in 3D Printing by Deformation, Orientation & Decomposition Charlie C. L. Wang Delft University of Technology June 11, 2018 Example of 3D Printed Products Boeing Air-Ducting Parts

More information

Automated Drill Design Software

Automated Drill Design Software Automated Drill Design Software Athulan Vijayaraghavan March 19, 2006 Abstract This section of the report discusses a tool which can create automated 3D CAD drill models based on geometric as well as manufacturing

More information

TTH 3D Printing Handbook

TTH 3D Printing Handbook A Guide to Understanding and Applying the 3D Printing Process Page 2 The technology and techniques of 3D printing and additive manufacturing have drastically changed and improved over the years. These

More information

Hole repair algorithm in hybrid sensor networks

Hole repair algorithm in hybrid sensor networks Advances in Engineering Research (AER), volume 116 International Conference on Communication and Electronic Information Engineering (CEIE 2016) Hole repair algorithm in hybrid sensor networks Jian Liu1,

More information

I-deas NX Series Master Modeler Foundation capabilities for feature-based variational solid modeling

I-deas NX Series Master Modeler Foundation capabilities for feature-based variational solid modeling I-deas Series Master Modeler Foundation capabilities for feature-based variational solid modeling fact sheet www.ugs.com Summary I-deas Series Master Modeler is the core design module for the I-deas product

More information

Design Production: Constructing freeform designs with rapid prototyping

Design Production: Constructing freeform designs with rapid prototyping Design Production: Constructing freeform designs with rapid prototyping 1 Lawrence Sass, PhD 1, Kristina Shea PhD 2, Michael Powell 3 1 Department of Architecture, MIT 2 Arup R+D, Cambridge University

More information