A new memory efficient tool path generation method for applying very large STL files in vector-by-vector rapid prototyping processes

Size: px
Start display at page:

Download "A new memory efficient tool path generation method for applying very large STL files in vector-by-vector rapid prototyping processes"

Transcription

1 A new memory efficient tool path generation method for applying very large STL files in vector-by-vector rapid prototyping processes Bahram Asiabanpour, Ph.D. Candidate Behrokh Khoshnevis, Professor D. J. Epstein Dept. of Industrial & Systems Engineering University of Southern California Los Angeles, CA Phone: (213) Fax: (213) Abstract There are several Rapid Prototyping (RP) processes, such as Contour Crafting, SLS, and LOM, that fabricate physical models through vector-by-vector machine control. For these processes the tool path is generated from a CAD model that is saved in the STL file format. The common procedure for tool path generation from a CAD model includes vector generation through intersecting a XY plane and STL facets, and then by sorting individual vectors. Conventionally this procedure is conducted by reading entire facets into the computer memory. Then the facets are sliced and generated vectors are sorted. This procedure needs a considerable computer memory and it can not proceed for large STL files with tens of mega bites size. A new tool path generation algorithm is proposed that solves the computer memory bottleneck in the tool path generation from very large STL files. The system receives an STL file as input and works in two steps. The first step generates slices at each increment of Z by intersecting the XY plane with the facets within the parts. In this step one facet at a time is read from STL file. Step two includes sorting the intersection lines, recognizing of the closed loops and disconnections, generating tool path file, and generating simulation file. In this step, one vector at a time is read from a slice file and is written into an output file, therefore, there is no limitation for size of STL file. In this system only data of the start point of the loop, contour end point, and current vector are saved in the computer memory. The system has been successfully tested on many ASCII STL files as large as up to 200 MB. The tool path generation system has been customized for Selective Inhibition of Sintering (SIS) process by adding hatch path to tool path file. 383

2 1- Introduction Numerical Control is a method to control a machine by computer through a set of numeric and alphabetic instructions. This is the method to control a wide variety of automated machines, such as CNCs, robots, and Rapid Prototyping (RP) machines. For the robots and CNC machines, these codes have been mostly standardized in the form of a few languages. But there is no standard code for rapid prototyping processes, because of the differences in the natures of these processes. Instead, there have been several efforts to establish a standard CAD file format for the rapid prototyping processes. Therefore, each RP process, based on its characteristics and requirements, uses the standard CAD file format to extract the required data for the process. Depending on layer fabrication, object prototyping processes can be classified into two different groups: vector-by-vector processes and integral processes (Vogt, G. et. al., 2002). In vector-by-vector processes every layer is made in an incremental method. In these processes each contour path is formed from a set of individual vectors. In integral processes a complete layer of prototype is made in one step. Although integral processes have advantages over vector-by-vector processes, especially in term of their speed, the nature of many rapid prototyping processes, especially laser-based and extruding-based processes, makes the vector-by-vector processes popular. There are several RP processes, such as SLS, LOM, and Contour Crafting, that fabricate physical model through vector-by-vector machine control. For these processes the tool path is generated from a CAD model which is saved in the STL file format. The common procedure for tool path generation from a CAD model includes vector generation through intersecting a XY plane and STL facets and then by sorting individual vectors. Conventionally this procedure is conducted by reading entire facets into the computer memory. Then the facets are sliced and generated vectors are sorted. This procedure needs a considerable computer memory and it can not proceed for large STL files with tens of mega 384

3 bites size. To overcome the memory limitation Choi and Kwok (2002) have proposed storing one slice at a time into computer memory to sort the vectors. Their approach decreases the amount of required computer memory greatly. However, this approach will not guarantee unlimited size for STL files because a considerable amount of memory is used to save and sort vectors in one slice especially for very large STL files. In this paper a new tool path generation algorithm is proposed that solves the computer memory bottleneck in the tool path generation for very large STL files. The paper is organized as follows. In section 2, slicing and tool path generation algorithms are described. In section 3, algorithms implementations and an example are presented. System customization for the SIS process is explained in section 4. Finally, discussions and conclusions on the tool path generation algorithm are given in sections 5 and 6, respectively. 2- Slicing and tool path generation algorithms To generate a tool path, an STL file with the ASCII format is received as input and the data is processed in two steps. The first step generates slices at each increment of Z by intersecting the XY plane with the facets within the parts. The second step includes sorting the intersection lines, recognizing the closed loops and disconnections (a common STL file error), and generating tool path and simulation files. Figure 1 illustrates tool path generation procedure. Slice 1 STL file Step 1 Slicing Slice 2 : : Slice K Step 2 Tool path generation Figure 1.Two steps of slicing and tool path generation Tool Path file Simulation file 385

4 2-1- Step 1: Slicing algorithm In the first step the STL file is read as the input file. By executing the slicing algorithm, slice files are generated. Only the intersection of those facets that intersect current Z=z are calculated and saved. In this step, XY plane for specific increments of Z intersect surface facets. The slicing algorithm reads one facet at a time and after vector generation for all z increments, it reads the next facets; therefore, it does not require a large amount of computer memory and also there is no limitation for the model size. In this step each slice is saved in a separate file. This guarantees that step 2 is run faster than when we save all slices in one file Step 2: Tool path generation After the slicing process, a set of unsorted vectors is available in each z increment. These vectors are not connected and are not in sequence. Therefore, for running in the RP machine, these vectors should be arranged in an appropriate form.in step 2, sorted vectors and output condition are written into path file. Output condition could be On, when the laser beam is on in an SLS machine or there is extruded output from contour crafting machine, or Off, when the laser beam in an SLS machine or extruder nozzle in a contour crafting machine traces the part surface in the off condition. At the beginning, the system turns the output On and writes the first vector into a path file and tries to find the next connected vector to this vector by reading one vector at a time from a slice file. Then the system does the same for the newly found vector until reaching the start point of the first vector (in closed loop cases) or finding no attached vector (in disconnection cases). In either case the system will turn the output Off and start from another vector. After arrangement of all vectors in one slice (z increment), the process starts the arrangement of the vectors of the next slice. This process is continued until all vectors are sorted. 386

5 Start: k=1, K=. of files Temp_count=0 i=1 Read slice file k k=k+1 i=1 Read vector V i (S),V i (E) Slice file 1. Slice file k.. Slice file K Path file Printer Off, Write V i (S) into output files Printer On, Write V i (E) into output files i=i+1 Read the next vector V new (S) = V i (S) V new (E) = V i (E) Sim. file Find and read the nearest point in the rest of slice file. Printer On, Write the V i (E) into the output files V last (S) =V i (S) V last (E) =V i (E) V last (E) = =V new (S) Temp file V last (E) = V new (E) Reversing the vector V last (E) = =V new (E) Write the vector (V i (S), V i (E)) into the Temp file End of loop? Temp_count = Temp_count +1 End of the Slice file k? i=i+1 Temp_count = =0 Read all slice files? Delete slice file k Rename Temp file to slice file k Temp_count = 0 STOP There is a disconnection. V last (E) ==V last (End) V last (End) =V last (E) Figure 2.Tool path generation algorithm flowchart 3- Algorithm implementation Slicing and Tool path generation algorithms have been implemented with C programming language. This software has been successfully tested for several medium and large STL files on different PCs and laptops. To demonstrate the tool path, a script file is generated and is run in the AutoCAD environment. Table 1 and figures 3 and 4 show the results for an STL file in the size of about 8 MB on a Pentium II computer with 32 MB RAM in Windows

6 Sample File Size Step Height Ave. Time per Slice Truck 7.92 MB 0.1 mm sec. Table 1.Path generation time result Figure 3.A sample CAD model (truck) Figure 4.Visualization of the tool path in the AutoCAD environment 4- System customization SIS process is a new rapid prototyping system that fabricates parts by joining polymer powder particles through sintering in the part s body, and by sintering inhibition of some selected powder bed areas. The selected areas of the powder bed for sintering inhibition are wetted by a printer. A single nozzle printer moves 388

7 in the XY plane and prints the inhibitor liquid on the model slice pattern. A tool path file is required to control printer nozzle movement. Tool path file includes part boundary path and hatch path. The tool path generation system explained in this paper was customized for SIS process by adding hatch path generation option to the system. The system generates hatch path when it is required for the process. Figure 5 illustrated some parts made by SIS process by using customized path generator system. Figure 5.Sample parts made by SIS machine 5- Discussion In the slicing step, only the intersections of those facets that intersect current Z=z are calculated and saved. Also the algorithm reads one facet at a time and after vector generation, it reads the next facets, therefore, it does not require a large amount of computer memory and also there is no limitation for the model size. Also since the generated vectors of each z increment are written into a separate file, the vector sorting is faster than when all vectors are written into a single file. In the sorting algorithm, the algorithm reads the data of one vector from an input file and writes it in another file (temp file or path file). In other words, the system saves only data of the start point of the loop, last vector end point, and the current vector in the computer memory; therefore, the sorting process does not need a huge amount of memory to sort the data, and also there is no limitation on the number of vectors in a slice. However, because of the continuous file input/output 389

8 communications in this algorithm, the tool path generation is relatively slower than the commercial tool path generator systems. This disadvantage can be improved by using faster disk Input/Output controllers. 6- Conclusion In this paper a slicing and path generation method is presented that solves the memory shortage for very large STL files. The system has been successfully tested on many ASCII STL files as large as up to 200 MB. In this system since only data of the start point of the loop, last vector end point, and current vector are saved in the computer memory, even larger STL files can easily be processed to generate a tool path file even on computers with very low memory. By adding a hatch pattern generation system, this system is customized for SIS process, a new layered-based fabrication method, to make complex polymeric 3D parts. 7- References Choi, S.H., and Kwok, K.T., A tolerant slicing algorithm for layered manufacturing, Rapid Prototyping Journal, Volume 8 Number 3, Dolenc, A., Makila, I., "Slicing procedures for layered manufacturing techniques", Computer Aided Design, Volume 26, Number 2, PP , Khoshnevis, B., Asiabanpour, B., Mojdeh, M., Koraishy, B., Palmer, K., and Deng, Z., SIS A NEW SFF METHOD BASED ON POWDER SINTERING, 13 th International Symposium on Solid Free From Fabrication, Austin, Texas, August Vogt, C., Bertsch, A., Renaud, P., and Bernhard, P., Methods and algorithms for the slicing process in microstereolithography, Rapid Prototyping Journal, Volume 8 Number 3, Wai, H., "RP in art and conceptual design", Rapid Prototyping Journal, Volume 7, Number 4, PP ,

Rapid prototyping. CAD / lecture. October 5, 2010. TO&I Vermelding onderdeel organisatie

Rapid prototyping. CAD / lecture. October 5, 2010. TO&I Vermelding onderdeel organisatie 1 Rapid prototyping is: Rapid prototyping is an additive (layered) digital fabrication technology Layers of material are added forming the final 3d physical model The digital data of the virtual 3d model

More information

RAPID PROTOTYPING. Learning Objectives: By the end of the lecture the student should be able to: Explain the fundamentals of Rapid Prototyping

RAPID PROTOTYPING. Learning Objectives: By the end of the lecture the student should be able to: Explain the fundamentals of Rapid Prototyping RAPID PROTOTYPING Learning Objectives: By the end of the lecture the student should be able to: Explain the fundamentals of Rapid Prototyping Outline and explain differences of Rapid Prototyping Technologies

More information

Slicing Issues in CAD Translation to STL in Rapid Prototyping

Slicing Issues in CAD Translation to STL in Rapid Prototyping Paper 021, ENG 103 Slicing Issues in CAD Translation to STL in Rapid Prototyping Divesh R. Sahatoo In-Corr-Tech Ltd., San Fernando, Trinidad drsahatoo@yahoo.com Boppana V. Chowdary University of The West

More information

Novel large-range, high-resolution 3D printing of microcomponents using dspace

Novel large-range, high-resolution 3D printing of microcomponents using dspace dspace User Conference 2010 India Sept 24 th 10 Novel large-range, high-resolution 3D printing of microcomponents using dspace Alem Baraki, Kiran Bhole Research Scholar, Department of Mechanical Engineering,

More information

3D-Tulostuksen mahdollisuudet nyt ja tulevaisuudessa

3D-Tulostuksen mahdollisuudet nyt ja tulevaisuudessa Teknologia- ja metalliteollisuuden seminaari Marraskuu 2015 3D-Tulostuksen mahdollisuudet nyt ja tulevaisuudessa Jouni Partanen, Aalto University Lääketieteen sovellutukset Kirurkinen suunnittelu Kirurkinen

More information

A multi-material virtual prototyping system. The 14th Solid Freeform Fabrication (SFF) Symposium, Texas, Austin, 4-6 August 2003, p.

A multi-material virtual prototyping system. The 14th Solid Freeform Fabrication (SFF) Symposium, Texas, Austin, 4-6 August 2003, p. Title A multi-material virtual prototyping system Author(s) Choi, SH; Cheung, HH Citation The 14th Solid Freeform Fabrication (SFF) Symposium, Texas, Austin, 4-6 August 2003, p. 138-149 Issued Date 2003

More information

Tutorial: Rapid Prototyping Technologies

Tutorial: Rapid Prototyping Technologies 1. Introduction Tutorial: Rapid Prototyping Technologies Rapid prototyping (RP) is a new manufacturing technique that allows for fast fabrication of computer models designed with three-dimension (3D) computer

More information

GLOBAL MANUFACTURING. ARAUJO, Anna Carla AUG, 2015 Mechanical Engineering Department POLI/COPPE/UFRJ

GLOBAL MANUFACTURING. ARAUJO, Anna Carla AUG, 2015 Mechanical Engineering Department POLI/COPPE/UFRJ GLOBAL MANUFACTURING ARAUJO, Anna Carla AUG, 2015 Mechanical Engineering Department POLI/COPPE/UFRJ Workpiece Presentation Powder Metallurgy and Additive Manufacturing [#7] Powder Metallurgy PM parts can

More information

CAGILA 2D and 3D software

CAGILA 2D and 3D software CAGILA 2D and 3D software CAM-Service does present the new CAGILA 3D software. Beside all common data formats like STEP, IGES, VDAFS, CAGILA 3D also supports interfaces for popular native formats like

More information

How To Build A 3D Model From Scratch

How To Build A 3D Model From Scratch SERVICES AND CAPABILITIES 1. Rapid prototyping What is rapid prototyping? Rapid prototyping (RP) or more recently Free Form Fabrication refers to the fabrication of a physical, three-dimensional part of

More information

Chapter 5 POWDER-BASED RAPID PROTOTYPING SYSTEMS

Chapter 5 POWDER-BASED RAPID PROTOTYPING SYSTEMS Chapter 5 POWDER-BASED RAPID PROTOTYPING SYSTEMS 5.1 3D SYSTEMS SELECTIVE LASER SINTERING (SLS) 5.1.1 Company 3D Systems Corporation was founded by Charles W. Hull and Raymond S. Freed in 1986. The founding

More information

Theoretical and Experimental Contributions Regarding the Optimization of Rapid Prototyping Technologies

Theoretical and Experimental Contributions Regarding the Optimization of Rapid Prototyping Technologies TECHNICAL UNIVERSITY OF CLUJ-NAPOCA FACULTY OF MACHINE BUILDING Theoretical and Experimental Contributions Regarding the Optimization of Rapid Prototyping Technologies Doctoral thesis ABSTRACT Scientific

More information

DECISION SUPPORT SYSTEM IN RAPID PROTOTYPING TECHNOLOGY Arkadiusz Rzucidło, Grzegorz Budzik, Łukasz Przeszłowski

DECISION SUPPORT SYSTEM IN RAPID PROTOTYPING TECHNOLOGY Arkadiusz Rzucidło, Grzegorz Budzik, Łukasz Przeszłowski Transactions on Business and Engineering Intelligent Applications 111 DECISION SUPPORT SYSTEM IN RAPID PROTOTYPING TECHNOLOGY Arkadiusz Rzucidło, Grzegorz Budzik, Łukasz Przeszłowski Abstract: Article

More information

Production of Wind Tunnel Testing Models with use of Rapid Prototyping Methods

Production of Wind Tunnel Testing Models with use of Rapid Prototyping Methods Production of Wind Tunnel Testing Models with use of Rapid Prototyping Methods R. ADELNIA 1, S. DANESHMAND 2, S. AGHANAJAFI 3 Mechanical Group, Majlesi Azad University Isfahan IRAN Abstract: In a time

More information

Manufacturing Process and Cost Estimation through Process Detection by Applying Image Processing Technique

Manufacturing Process and Cost Estimation through Process Detection by Applying Image Processing Technique Manufacturing Process and Cost Estimation through Process Detection by Applying Image Processing Technique Chalakorn Chitsaart, Suchada Rianmora, Noppawat Vongpiyasatit Abstract In order to reduce the

More information

3D Printing and Structural Analysis: Is There an Alternative to FE Analysis for Quick Design Info & for FEM Validation?

3D Printing and Structural Analysis: Is There an Alternative to FE Analysis for Quick Design Info & for FEM Validation? Orange County Chapter 3D Printing and Structural Analysis: Is There an Alternative to FE Analysis for Quick Design Info & for FEM Validation? FW Palmieri, Ph.D. 3/24/2014 Copyright 2014 Raytheon Company.

More information

Development of a Software for the Design of Electronic Circuits in 3D-Printable Objects Colloquium - Bachelor Thesis

Development of a Software for the Design of Electronic Circuits in 3D-Printable Objects Colloquium - Bachelor Thesis Development of a Software for the Design of Electronic Circuits in 3D-Printable Objects 2ahlers@informatik.uni-hamburg.de University of Hamburg MIN Faculty Department Informatics January 19, 2016 Problem

More information

Getting rid of the wires: Curved Layer Fused Deposition Modeling in Conductive Polymer Additive Manufacturing

Getting rid of the wires: Curved Layer Fused Deposition Modeling in Conductive Polymer Additive Manufacturing Getting rid of the wires: Curved Layer Fused Deposition Modeling in Conductive Polymer Additive Manufacturing DIEGEL, Olaf 1, a, SINGAMNENI, Sarat 1, b, HUANG, Ben 1, c, GIBSON, Ian 2, d 1 Centre for Rapid

More information

www.studymafia.org Seminar report Rapid Prototyping Submitted in partial fulfillment of the requirement for the award of degree Of Mechanical

www.studymafia.org Seminar report Rapid Prototyping Submitted in partial fulfillment of the requirement for the award of degree Of Mechanical A Seminar report On Rapid Prototyping Submitted in partial fulfillment of the requirement for the award of degree Of Mechanical SUBMITTED TO: SUBMITTED BY: www.studymafia.org www.studymafia.org Preface

More information

Rapid Prototyping. Training Objective

Rapid Prototyping. Training Objective Training Objective After watching the program and reviewing this printed material, the viewer will understand the principles and practical applications of Rapid Prototyping. Basic concepts are explained

More information

Selecting Rapid Prototyping Systems

Selecting Rapid Prototyping Systems Volume 18, Number 1 - November 2001 to January 2002 Selecting Rapid Prototyping Systems By Dr. Ryan Brown and Dr. Kenneth W. Stier KEYWORD SEARCH CAD CAM Design Manufacturing Rapid Prototyping Reviewed

More information

How To Design A 3D Model For A 3D Printer

How To Design A 3D Model For A 3D Printer Poznan 11. 12.10.2010 RAPIDPROTOTYPINGSERVICE MODEL BY THE CDIO *) EDUCATIONAL FRAMEWORK *) Conceive Design Implement Operate Lauri Tenhunen Seppo Aarnio CDIO INNOVATION PROCESSES OF INDUSTRY RPS ELEMENTS

More information

DESIGN OF MANUFACTURING SYSTEMS BY RAPID PROTOTYPING TECHNOLOGY APPLICATION

DESIGN OF MANUFACTURING SYSTEMS BY RAPID PROTOTYPING TECHNOLOGY APPLICATION Annals of the University of Petroşani, Mechanical Engineering, 14 (2012), 104-111 104 DESIGN OF MANUFACTURING SYSTEMS BY RAPID PROTOTYPING TECHNOLOGY APPLICATION JOZEF NOVAK-MARCINCIN 1 Abstract: Rapid

More information

CAD/CAM in schools initiative

CAD/CAM in schools initiative CAD/CAM in schools initiative 10 years on... where are we now? John Lee June 2009 what is CAD/CAM? Engineering Design & development Rapid prototyping Virtual testing DATA management Production scheduling

More information

STL GENERATION INTRODUCTION TO STL. Written by Greta D Angelo

STL GENERATION INTRODUCTION TO STL. Written by Greta D Angelo STL GENERATION Written by Greta D Angelo In this section: An introduction on.stl files How to make good.stl files How to make.stl on different softwares (Solidworks, PTC Creo, Rhinoceros 5, Autodesk Inventor)

More information

COURSE: ADVANCED MANUFACTURING PROCESSES. Module No. 5: OTHER PROCESSES

COURSE: ADVANCED MANUFACTURING PROCESSES. Module No. 5: OTHER PROCESSES COURSE: ADVANCED MANUFACTURING PROCESSES Module No. 5: OTHER PROCESSES Lecture No-2 Rapid Prototyping Technology (RPT) Background: In this age of fast growth (rapid technology age), customer demands are

More information

How the uprint Rapidprotyping Machine Works

How the uprint Rapidprotyping Machine Works The University of New Haven Tagliatela College of Engineering Industrial and System Engineering Laboratory, Buckman B225 How the uprint Rapidprotyping Machine Works Prepared By: Carolina White, MS Industrial

More information

RAPID PROTOTYPING TECHNOLOGIES, APPLICATIONS AND PART DEPOSITION PLANNING

RAPID PROTOTYPING TECHNOLOGIES, APPLICATIONS AND PART DEPOSITION PLANNING RAPID PROTOTYPING TECHNOLOGIES, APPLICATIONS AND PART DEPOSITION PLANNING Pulak M. Pandey Department of Mechanical Engineering Indian Institute of Technology Delhi Email: pmpandey@mech.iitd.ac.in 1. INTRODUCTION

More information

How To Model Surfaces With Rp

How To Model Surfaces With Rp Models of surfaces by 3D printing 17/10/2007 Gregorio Franzoni Università di Cagliari Dip. di Matematica e Informatica 1 Models of mathematical objects Why producing visual and physical models? Fields

More information

A new database approach to improve STL files correction algorithms

A new database approach to improve STL files correction algorithms A new database approach to improve STL files correction algorithms P.Jamshidi, M.Haddad and S.Mansour Department of Industrial Engineering Amirkabir University of Technology (Tehran Polytechnic), Tehran,

More information

Additive Manufacturing: Processes and Standard Terminology

Additive Manufacturing: Processes and Standard Terminology Additive Manufacturing: Processes and Standard Terminology Gary Coykendall Copyright Edmonds Community College 2012; Permission granted for use and reproduction for educational purposes only. Abstract

More information

RAPID PROTOTYPING. Principles and Applications. RAFIQ NOORANI, Ph.D. Professor of Mechanical Engineering Loyola Marymount University Los Angeles, CA

RAPID PROTOTYPING. Principles and Applications. RAFIQ NOORANI, Ph.D. Professor of Mechanical Engineering Loyola Marymount University Los Angeles, CA RAPID PROTOTYPING Principles and Applications RAFIQ NOORANI, Ph.D. Professor of Mechanical Engineering Loyola Marymount University Los Angeles, CA WILEY JOHN WILEY & SONS, INC. CONTENTS Preface Acknowledgments

More information

3D-Printing and Stereolithography powerful manufacturing tools for textured or high-precision 3D city models

3D-Printing and Stereolithography powerful manufacturing tools for textured or high-precision 3D city models 3D-Printing and Stereolithography powerful manufacturing tools for textured or high-precision 3D city models Carsten Tille & Hermann Seitz caesar, Bonn (Germany) Rapid Prototyping Layer-by-layer fabrication

More information

RHINO TO STL BEST PRACTICES

RHINO TO STL BEST PRACTICES WHITE PAPER RHINO TO STL BEST PRACTICES AUTHOR VERONICA DE LA ROSA RHINO TO STL BEST PRACTICES INTRODUCTION In order to get the best quality 3D prints from RHINO CAD models it is important to be familiar

More information

3D SCANNING: A NEW APPROACH TOWARDS MODEL DEVELOPMENT IN ADVANCED MANUFACTURING SYSTEM

3D SCANNING: A NEW APPROACH TOWARDS MODEL DEVELOPMENT IN ADVANCED MANUFACTURING SYSTEM 3D SCANNING: A NEW APPROACH TOWARDS MODEL DEVELOPMENT IN ADVANCED MANUFACTURING SYSTEM Dr. Trikal Shivshankar 1, Patil Chinmay 2, Patokar Pradeep 3 Professor, Mechanical Engineering Department, SSGM Engineering

More information

V10.2 / V11.2 Die CAM 3D

V10.2 / V11.2 Die CAM 3D CAA V5 based V10.2 / V11.2 Die CAM 3D October, 2011 UNIADEX, Ltd. Die CAM 3D Die CAM 3D/CAM 3D automates and optimizes machining for die product shape. -Various machining operation with with users users

More information

TUTOR NOTES. How to use this pack. Rapid prototyping in schools. Definition

TUTOR NOTES. How to use this pack. Rapid prototyping in schools. Definition TUTOR NOTES How to use this pack This pack is aimed at students studying for both Intermediate 2 and Higher Product Design. Students of other subjects might find it useful, and a Curriculum Map has been

More information

3D Lightyear. User s Guide. SLA File Preparation Software. Addendum for 3D Lightyear Version 1.3 Software

3D Lightyear. User s Guide. SLA File Preparation Software. Addendum for 3D Lightyear Version 1.3 Software 3D Lightyear SLA File Preparation Software User s Guide Addendum for 3D Lightyear Version 1.3 Software 2002 by 3D Systems. All rights reserved. Specifications subject to change without notice. The 3D Logo

More information

Direct Thick Layer Rapid Prototyping From Medical Images. Abstract

Direct Thick Layer Rapid Prototyping From Medical Images. Abstract Introduction Direct Thick Layer Rapid Prototyping From Medical Images Peter Chamberlain and Charles Thomas University of Utah Abstract This paper discusses a technique for building medical prototypes directly

More information

Tool Design and Concurrent Engineering using Rapid Tooling Construction Methods

Tool Design and Concurrent Engineering using Rapid Tooling Construction Methods Section Number 3563 Tool Design and Concurrent Engineering using Rapid Tooling Construction Methods Nicole Hoekstra Engineering Technology Department Western Washington University Abstract Prior to rapid

More information

CHAPTER 1. Introduction to CAD/CAM/CAE Systems

CHAPTER 1. Introduction to CAD/CAM/CAE Systems CHAPTER 1 1.1 OVERVIEW Introduction to CAD/CAM/CAE Systems Today s industries cannot survive worldwide competition unless they introduce new products with better quality (quality, Q), at lower cost (cost,

More information

Incremental Expansion of Manufacturing Knowledge Base

Incremental Expansion of Manufacturing Knowledge Base ABSTRACT Incremental Expansion of Manufacturing Knowledge Base Sanjeewa Gamaralalage, Dusan Sormaz Department of Industrial and Systems Engineering Ohio University Athens, Ohio45701 Email: sg110610@ohio.edu,

More information

Distributed Web-Based Desktop E-Manufacturing System

Distributed Web-Based Desktop E-Manufacturing System Distributed Web-Based Desktop E-Manufacturing System Jyh-Hwa Tzou Department of Mechanical Engineering, Wu-Feng Institute of Technology Chian-Kuo Rd, Sec. 2, Ming-Hsiung, Chia-Yi 621, Taiwan, R.O.C. Email:

More information

Computer Integrated Manufacturing Course Description

Computer Integrated Manufacturing Course Description Computer Integrated Manufacturing Course Description Computer Integrated Manufacturing (CIM) is the study of manufacturing planning, integration, and implementation of automation. The course explores manufacturing

More information

The Prototyping Challenges with Micro Molding: A Comparative Study of Prototyping Methods for Micro Molding Applications

The Prototyping Challenges with Micro Molding: A Comparative Study of Prototyping Methods for Micro Molding Applications I. The Premise A lot has changed in the last 20+ years. Just two short decades ago our top speed personal computer processors were clocked at 386 MHz, hard drive space and RAM memory were still measured

More information

NASA FACULTY FELLOWSHIP PROGRAM MARSHALL SPACE FLIGHT CENTER THE UNIVERSITY OF ALABAMA

NASA FACULTY FELLOWSHIP PROGRAM MARSHALL SPACE FLIGHT CENTER THE UNIVERSITY OF ALABAMA 2002 NASA FACULTY FELLOWSHIP PROGRAM MARSHALL SPACE FLIGHT CENTER THE UNIVERSITY OF ALABAMA Development of Processing Parameters for Organic Binders Using Selective Laser Sintering Prepared By: Academic

More information

Rapid Prototyping and Rapid Manufacturing at Foster + Partners

Rapid Prototyping and Rapid Manufacturing at Foster + Partners Rapid Prototyping and Rapid Manufacturing at Foster + Partners Complex Geometry Design Generative Brady Peters Foster + Partners Xavier De Kestelier Foster + Partners Over the last 15 years, rapid prototyping

More information

Advanced Manufacturing Choices

Advanced Manufacturing Choices Advanced Manufacturing Choices MAE 195-MAE 156 Spring 2009, Dr. Marc Madou Class 8: Rapid Prototyping By Dr. Miodrag Micic, mmicic@mpbio.com Two Ways for Fabrication: Substractive manufacturing Additive

More information

A Study on CAD Modelling and File Generation Issues in Rapid Prototyping

A Study on CAD Modelling and File Generation Issues in Rapid Prototyping B.V. Chowdary and D.R. Sahatoo: A Study on CAD Modelling and File Generation Issues in Rapid Prototyping 65 A Study on CAD Modelling and File Generation Issues in Rapid Prototyping Boppana V. Chowdary

More information

3D printing with Metals

3D printing with Metals 3D printing with Metals by Fernando Ribeiro Universidade do Minho Industrial Electronics Dep. Campus de Azurém 4800 Guimarães PORTUGAL Rapid Prototyping is a recently developed technique that prints a

More information

Design & Drafting Services

Design & Drafting Services Design & Drafting Services 1. Mechanical CAD Services 1. Mechanical CAD Services Mechanical Design Services: Custom machine design Packaging machine design Mechanism design Machine tool design Material

More information

3D Printing Design Guidelines Sierra College CACT

3D Printing Design Guidelines Sierra College CACT 3D Printing Design Guidelines Sierra College CACT Prepared by ARW Consulting June 30, 2009 Table of Contents Scope of this Document.. 1 General Overview... 2 File Format.. 3 SST Support Material.. 4 Venting

More information

2014 New Jersey Core Curriculum Content Standards - Technology

2014 New Jersey Core Curriculum Content Standards - Technology 2014 New Jersey Core Curriculum Content Standards - Technology Content Area Standard Strand Grade Level bands Technology 8.2 Technology Education, Engineering, Design, and Computational Thinking - Programming:

More information

Holes & Selective Laser Sintering

Holes & Selective Laser Sintering SLS is one of the most accurate 3D printing processes. The process has a layer thickness of 0.1mm. This is the thickness with which a new layer is added to each part. In any direction therefore the maximum

More information

Alphacam Art combines Vectric s Aspire artistic design software with the market leading Alphacam manufacturing software.

Alphacam Art combines Vectric s Aspire artistic design software with the market leading Alphacam manufacturing software. Alphacam Art Alphacam Art - CNC Routing For Artists & Ideal Jewellery Cad Cam Software Alphacam Art combines Vectric s Aspire artistic design software with the market leading Alphacam manufacturing software.

More information

AUTOMATED CONSTRUCTION PLANNING FOR MULTI-STORY BUILDINGS

AUTOMATED CONSTRUCTION PLANNING FOR MULTI-STORY BUILDINGS AUTOMATED CONSTRUCTION PLANNING FOR MULTI-STORY BUILDINGS Tang-Hung Nguyen 1 ABSTRACT This paper outlines a computer-based framework that can assist construction planners and schedulers in automatically

More information

Ningbo Yinzhou Keao Prototyping & Mould Factory Services include : CNC machining prototypes,

Ningbo Yinzhou Keao Prototyping & Mould Factory Services include : CNC machining prototypes, Ningbo Yinzhou Keao Prototyping & Mould Factory Services include : CNC machining prototypes, STEREOLITHOGRAPHY (SLA) Selective Laser Sintering (SLS) RTV MOLDING AND CAST URETHANE PROTOTYPES Tel : +86 574

More information

3D CAD, CAM and Rapid Prototyping by Mitch Heynick and Ivo Stotz

3D CAD, CAM and Rapid Prototyping by Mitch Heynick and Ivo Stotz 3D CAD, CAM and Rapid Prototyping by Mitch Heynick and Ivo Stotz >> LAPA Digital Technology Seminar

More information

Solid State Drive Architecture

Solid State Drive Architecture Solid State Drive Architecture A comparison and evaluation of data storage mediums Tyler Thierolf Justin Uriarte Outline Introduction Storage Device as Limiting Factor Terminology Internals Interface Architecture

More information

A Comparison Study of Qos Using Different Routing Algorithms In Mobile Ad Hoc Networks

A Comparison Study of Qos Using Different Routing Algorithms In Mobile Ad Hoc Networks A Comparison Study of Qos Using Different Routing Algorithms In Mobile Ad Hoc Networks T.Chandrasekhar 1, J.S.Chakravarthi 2, K.Sravya 3 Professor, Dept. of Electronics and Communication Engg., GIET Engg.

More information

Integrating Rapid Prototyping into Product and Process Development

Integrating Rapid Prototyping into Product and Process Development Integrating Rapid Prototyping into Product and Process Development Bahram Asiabanpour, Ingram School of Engineering Teas State University - San Marcos 1 University Dr. San Marcos, TX 7 Email: ba13@tstate.edu

More information

Metallic Part Fabrication Using Selective Inhibition Sintering (SIS)

Metallic Part Fabrication Using Selective Inhibition Sintering (SIS) Metallic Part Fabrication Using Selective Inhibition Sintering (SIS) Behrokh Khoshnevis, Mahdi Yoozbashizadeh, Yong Chen Daniel J. Epstein Department of Industrial and Systems Engineering University of

More information

Tech Transfer to Start-up and Manufacturing - Fabrication. Chris Moody

Tech Transfer to Start-up and Manufacturing - Fabrication. Chris Moody Tech Transfer to Start-up and Manufacturing - Fabrication Chris Moody Fabrication Incubators Business incubators can be just office space with business services and advice or they can provide early manufacturing

More information

DIGITAL DESIGN & FABRICATION LAB School of Architecture, AUTh REGULATIONS AND TERMS OF USE 2013-14. 1. Title and Subject of the Lab

DIGITAL DESIGN & FABRICATION LAB School of Architecture, AUTh REGULATIONS AND TERMS OF USE 2013-14. 1. Title and Subject of the Lab DIGITAL DESIGN & FABRICATION LAB School of Architecture, AUTh REGULATIONS AND TERMS OF USE 2013-14 1. Title and Subject of the Lab The Digital Design & Fabrication Lab provides 3D printing and rapid prototyping

More information

A+ Guide to Managing and Maintaining Your PC, 7e. Chapter 1 Introducing Hardware

A+ Guide to Managing and Maintaining Your PC, 7e. Chapter 1 Introducing Hardware A+ Guide to Managing and Maintaining Your PC, 7e Chapter 1 Introducing Hardware Objectives Learn that a computer requires both hardware and software to work Learn about the many different hardware components

More information

DEVELOPMENT OF THE DIDACTIC SOFTWARE FOR NUMERICAL CONTROL GENERATION FROM 3D MODELS USING CAD PLATFORM AND RAPID PROTOTYPING CONCEPT

DEVELOPMENT OF THE DIDACTIC SOFTWARE FOR NUMERICAL CONTROL GENERATION FROM 3D MODELS USING CAD PLATFORM AND RAPID PROTOTYPING CONCEPT 7º CONGRESSO BRASILEIRO DE ENGENHARIA DE FABRICAÇÃO 7 th BRAZILIAN CONGRESS ON MANUFACTURING ENGINEERING 20 a 24 de maio de 2013 Penedo, Itatiaia RJ - Brasil May 20 th to 24 th, 2013 Penedo, Itatiaia RJ

More information

Pattern Insight Clone Detection

Pattern Insight Clone Detection Pattern Insight Clone Detection TM The fastest, most effective way to discover all similar code segments What is Clone Detection? Pattern Insight Clone Detection is a powerful pattern discovery technology

More information

Clint Atwood, Michelle GriBth, Lane Harwell, Eric Schlienger, Mark Ensz, John Smugeresky, Tony Romero, Don G-reene, Daryl Reckaway

Clint Atwood, Michelle GriBth, Lane Harwell, Eric Schlienger, Mark Ensz, John Smugeresky, Tony Romero, Don G-reene, Daryl Reckaway . I Laser Engineered Net Shaping (LENS?: A Tool for Direct Fabrication of Metal Parts* Clint Atwood, Michelle GriBth, Lane Harwell, Eric Schlienger, Mark Ensz, John Smugeresky, Tony Romero, Don G-reene,

More information

Integration Methodologies for Disparate Software Packages with an Emphasis on Usability

Integration Methodologies for Disparate Software Packages with an Emphasis on Usability Integration Methodologies for Disparate Software Packages with an Emphasis on Usability Abstract Lyndon Evans 1 2, Vic Grout 1, Dave Staton 2 and Dougie Hawkins 2 1 Centre for Applied Internet Research,

More information

Making Better Medical Devices with Multisensor Metrology

Making Better Medical Devices with Multisensor Metrology Making Better Medical Devices with Multisensor Metrology by Nate J. Rose, Chief Applications Engineer, Optical Gaging Products (OGP) Multisensor metrology is becoming a preferred quality control technology

More information

ID@GT prepared by Gabe Landes for T. Purdy 2009

ID@GT prepared by Gabe Landes for T. Purdy 2009 Rapid prototyping is the automatic construction of physical objects using solid freeform fabrication. The first techniques for rapid prototyping became available in the late 1980s and were used to produce

More information

Your CAD Programme. Virtually all 3D Rapid Prototyping machines and 3D Printers use the STL file format for input.

Your CAD Programme. Virtually all 3D Rapid Prototyping machines and 3D Printers use the STL file format for input. Export STL Files From Your CAD Programme Introduction Virtually all 3D Rapid Prototyping machines and 3D Printers use the STL file format for input. Almost all CAD programs have a way to save or export

More information

Mastercam Instructions. KTH School of Architecture Digital Fabrication Lab - CNC Router Version 2.1 2014-02-06

Mastercam Instructions. KTH School of Architecture Digital Fabrication Lab - CNC Router Version 2.1 2014-02-06 Mastercam Instructions KTH School of Architecture Digital Fabrication Lab - CNC Router Version 2.1 2014-02-06 CONTENTS: 1. Setup in Rhino and Mastercam 2. Creating A Drilling Operation 3. Creating A Contour

More information

AutoCAD 3D I. Module 6. Visualizing Multiview Drawings. Curriculum Development Unit PREPARED BY. August 2013

AutoCAD 3D I. Module 6. Visualizing Multiview Drawings. Curriculum Development Unit PREPARED BY. August 2013 AutoCAD 3D I Module 6 Visualizing Multiview Drawings PREPARED BY Curriculum Development Unit August 2013 Applied Technology High Schools, 2013 Module 6 Visualizing Multiview Drawings Module Objectives

More information

Defense Technical Information Center Compilation Part Notice

Defense Technical Information Center Compilation Part Notice UNCLASSIFIED Defense Technical Information Center Compilation Part Notice ADP014218 TITLE: Thermal and Residual Stress Modelling of the Selective Laser Sintering Process DISTRIBUTION: Approved for public

More information

UNIT 1 INTRODUCTION TO NC MACHINE TOOLS

UNIT 1 INTRODUCTION TO NC MACHINE TOOLS UNIT 1 INTRODUCTION TO NC MACHINE TOOLS Structure 1.1 Introduction Objectives 1.2 NC Machines 1.2.1 Types of NC Machine 1.2.2 Controlled Axes 1.2.3 Basic Components of NC Machines 1.2.4 Problems with Conventional

More information

As published in PIM International

As published in PIM International As published in PIM International www.pim-international.com 64 Powder Injection Moulding International September 2012 Rapid prototyping of highperformance ceramics opens new opportunities for the CIM industry

More information

ACCURACY IMPROVEMENT IN RAPID PROTOTYPING MACHINE (FDM-1650)

ACCURACY IMPROVEMENT IN RAPID PROTOTYPING MACHINE (FDM-1650) ACCURACY IMPROVEMENT IN RAPID PROTOTYPING MACHINE (1650) A. Gregorian*, B. Elliott*, R. Navarro*, F. Ochoa*, H. Singh*, E. Monge* J. Foyos*, R. Noorani*, B. Fritz 1, and S. Jayanthi 2. *NSF Research Experiences

More information

Manufacturability of Turbine Blade Die from Composite Material Using Rapid Tooling Techniques

Manufacturability of Turbine Blade Die from Composite Material Using Rapid Tooling Techniques Manufacturability of Turbine Blade Die from Composite Material Using Rapid Tooling Techniques D. Safaeian 1, M. Shakeri 2 and A.L. Darvish 2 Faculty of Engineering, Mazandaran University, Shariati Ave.

More information

Best Practices. 3D Printing for. Contributors: Olimpio DeMarco and Dan Topjian, Z Corporation, Burlington, MA

Best Practices. 3D Printing for. Contributors: Olimpio DeMarco and Dan Topjian, Z Corporation, Burlington, MA Best Practices 3D Printing for Contributors: Olimpio DeMarco and Dan Topjian, Z Corporation, Burlington, MA Andrew Esquivel, Peak Solutions LLC, Portland, OR Jason Rossitto, Payette, Boston, MA September

More information

Although current rapid prototyping methods have had a significant impact on product and process design, they are often

Although current rapid prototyping methods have had a significant impact on product and process design, they are often Rapid Prototyping using CNC Machining Matthew C. Frank, Richard A. Wysk and Sanjay B. Joshi Department of Industrial and Manufacturing Engineering The Pennsylvania State University University Park, PA

More information

CAD / CAM Dr. P. V. Madhusuthan Rao Department of Mechanical Engineering Indian Institute of Technology, Delhi Lecture No. # 12 Reverse Engineering

CAD / CAM Dr. P. V. Madhusuthan Rao Department of Mechanical Engineering Indian Institute of Technology, Delhi Lecture No. # 12 Reverse Engineering CAD / CAM Dr. P. V. Madhusuthan Rao Department of Mechanical Engineering Indian Institute of Technology, Delhi Lecture No. # 12 Reverse Engineering So what we will do in today s lecture is basically take

More information

RESEARCH PAPERS FACULTY OF MATERIALS SCIENCE AND TECHNOLOGY IN TRNAVA SLOVAK UNIVERSITY OF TECHNOLOGY IN BRATISLAVA

RESEARCH PAPERS FACULTY OF MATERIALS SCIENCE AND TECHNOLOGY IN TRNAVA SLOVAK UNIVERSITY OF TECHNOLOGY IN BRATISLAVA RESEARCH PAPERS FACULTY OF MATERIALS SCIENCE AND TECHNOLOGY IN TRNAVA SLOVAK UNIVERSITY OF TECHNOLOGY IN BRATISLAVA 2010 Number 29 3D MODEL GENERATION FROM THE ENGINEERING DRAWING Jozef VASKÝ, Michal ELIÁŠ,

More information

Training document for the company-wide automation solution Totally Integrated Automation (T I A) MODULE A5. PLC-Simulation with S7-PLCSIM

Training document for the company-wide automation solution Totally Integrated Automation (T I A) MODULE A5. PLC-Simulation with S7-PLCSIM Training document for the company-wide automation solution Totally Integrated Automation (T I A) MODULE A5 PLC- Simulation with S7-PLCSIM T I A Training document Page 1 of 14 Module A5 This document was

More information

ALGORITHM OF LAYER MODEL

ALGORITHM OF LAYER MODEL ADVANCES IN MANUFACTURING SCIENCE AND TECHNOLOGY Vol. 35, No. 4, 2011 ALGORITHM OF LAYER MODEL Krzysztof Karbowski S u m m a r y The paper characterizes the method of layer model building, basing on the

More information

Presentation on CNC MACHINES. By: Hafiz Muhammad Rizwan

Presentation on CNC MACHINES. By: Hafiz Muhammad Rizwan Presentation on CNC MACHINES By: Hafiz Muhammad Rizwan WELCOME CNC Machines What is a CNC Machine? CNC : Computer Numerical Control Conventionally, an operator decides and adjusts various machines parameters

More information

Computational Geometry. Lecture 1: Introduction and Convex Hulls

Computational Geometry. Lecture 1: Introduction and Convex Hulls Lecture 1: Introduction and convex hulls 1 Geometry: points, lines,... Plane (two-dimensional), R 2 Space (three-dimensional), R 3 Space (higher-dimensional), R d A point in the plane, 3-dimensional space,

More information

Testing the Suitability of Spatial Printing Technology for Engineering Applications (for Presentation of Topographic Surface)***

Testing the Suitability of Spatial Printing Technology for Engineering Applications (for Presentation of Topographic Surface)*** GEOMATICS AND ENVIRONMENTAL ENGINEERING Volume 8 Number 3 2014 http://dx.doi.org/10.7494/geom.2014.8.3.17 Krzysztof Chmielnicki*, Konrad Eckes** Testing the Suitability of Spatial Printing Technology for

More information

CAD Techniques Helping To Enhance NDT Workflow

CAD Techniques Helping To Enhance NDT Workflow CAD Techniques Helping To Enhance NDT Workflow Steve McCarley Eclipse Sientific Products Inc. www.eclipsescientific.com This document will show you some applied techniques and uses of CAD to solve some

More information

CNC-STEP. "LaserProbe4500" 3D laser scanning system Instruction manual

CNC-STEP. LaserProbe4500 3D laser scanning system Instruction manual LaserProbe4500 CNC-STEP "LaserProbe4500" 3D laser scanning system Instruction manual 2 Hylewicz CNC-Technik Siemensstrasse 13-15 D-47608 Geldern Fon.: +49 (0) 2831 133236 E-Mail: info@cnc-step.com Website:

More information

PRODUCT BROCHURE SPATIAL ANALYZER. Powerful, traceable and easy-to-use metrology and analysis software

PRODUCT BROCHURE SPATIAL ANALYZER. Powerful, traceable and easy-to-use metrology and analysis software PRODUCT BROCHURE SPATIAL ANALYZER Powerful, traceable and easy-to-use metrology and analysis software SPATIAL ANALYZER SpatialAnalyzer (SA) is a powerful, traceable and easy to use metrology and analysis

More information

Chapter 6. Virtual and Rapid Prototyping

Chapter 6. Virtual and Rapid Prototyping Chapter 6. Virtual and Rapid Prototyping Design evaluation of virtual clay models using selective laser sintering Frank-L. Krause Yasmina Bock and Stefan Dreher Fraunhofer Institut fur Produktionsanlagen

More information

Lecture 11. Etching Techniques Reading: Chapter 11. ECE 6450 - Dr. Alan Doolittle

Lecture 11. Etching Techniques Reading: Chapter 11. ECE 6450 - Dr. Alan Doolittle Lecture 11 Etching Techniques Reading: Chapter 11 Etching Techniques Characterized by: 1.) Etch rate (A/minute) 2.) Selectivity: S=etch rate material 1 / etch rate material 2 is said to have a selectivity

More information

A SCULPTEO GUIDE TO COST EFFICIENCY THROUGH SHORT SERIES MANUFACTURING HOW SCULPTEO S BATCH CONTROL 3D PRINTING COMPARES TO INJECTION MOLDS

A SCULPTEO GUIDE TO COST EFFICIENCY THROUGH SHORT SERIES MANUFACTURING HOW SCULPTEO S BATCH CONTROL 3D PRINTING COMPARES TO INJECTION MOLDS A SCULPTEO GUIDE TO COST EFFICIENCY THROUGH SHORT SERIES MANUFACTURING VS HOW SCULPTEO S BATCH CONTROL 3D PRINTING COMPARES TO INJECTION MOLDS INTRODUCTION Ordering multiple objects directly on our website

More information

Rapid Prototyping. At the University of Southampton

Rapid Prototyping. At the University of Southampton Rapid Prototyping At the University of Southampton What is Rapid Prototyping? The 3D Printing Revolution Rapid prototyping machines are designed to quickly produce a model of a physical part using computer-aided

More information

Use of 3D Printers in Proton Therapy

Use of 3D Printers in Proton Therapy Use of 3D Printers in Proton Therapy Nicholas Remmes, PhD Mayo Clinic, Rochester, MN Department of Radiation Oncology Remmes.Nicholas@mayo.edu 2015 MFMER slide-1 Disclosures/Confessions My 3D Printing

More information

MEM23131A Evaluate rapid prototyping applications

MEM23131A Evaluate rapid prototyping applications MEM23131A Evaluate rapid prototyping applications Release: 1 MEM23131A Evaluate rapid prototyping applications Modification History Release 1 (MEM05v9). Unit Descriptor This unit of competency covers the

More information

CPS104 Computer Organization and Programming Lecture 18: Input-Output. Robert Wagner

CPS104 Computer Organization and Programming Lecture 18: Input-Output. Robert Wagner CPS104 Computer Organization and Programming Lecture 18: Input-Output Robert Wagner cps 104 I/O.1 RW Fall 2000 Outline of Today s Lecture The I/O system Magnetic Disk Tape Buses DMA cps 104 I/O.2 RW Fall

More information

OPN_DL UTILITY SOFTWARE. INSTALLATION AND USER GUIDE - v2.03

OPN_DL UTILITY SOFTWARE. INSTALLATION AND USER GUIDE - v2.03 OPN_DL UTILITY SOFTWARE INSTALLATION AND USER GUIDE - v2.03 Electronic Reading Systems Ltd 14 Wolseley Business Park Kempston Beds MK42 7PW Tel: 01234 855300 Fax: 01234 855446 CONTENTS 1.0 INTRODUCTION

More information