Application of Matlab to. Injection Molding Quality Control

Size: px
Start display at page:

Download "Application of Matlab to. Injection Molding Quality Control"

Transcription

1 Application of Matlab to Injection Molding Quality Control Emlyn Garvey Moldflow Pty. Ltd. Australia David Kazmer University of Massachusetts Amherst United States of America Abstract Injection molding is the most common manufacturing process for production of high volume commercial parts. However, injection molding is characterized by extremely complex process dynamics and material properties, which make it difficult to understand and predict the product quality and can lead to numerous unacceptable quality defects. There are many solutions to these problems Moldflow is recognized as the leading global provider of valueadded solutions to the plastics industry. This paper describes the application of Matlab numerical software in Moldflow s development process, focusing on prototype development and validation of an on-line quality control system for injection molding. As a specific example, one module of this quality control system is discussed in detail. This problem is unique in that quality is multi-dimensional and discrete (not continuous), the process is stochastic (not deterministic), and that quality data is non-uniform and sparse. The described module, Process Window, examines the local multi-dimensional quality surface using statistical methods. Process Window then automatically searches the process space and efficiently locates a defect free process zone suitable for production. Finally, the performance of the Process Window prototype is compared to the Matlab function fmins(), a multi-objective optimization which uses a Simplex search method. Introduction Injection molding of thermoplastics is increasingly regarded as the preferred method for delivering high quality, value added commercial parts. This process allows for high volume production of complex three-dimensional parts, but is plagued by complex process dynamics and material properties, which make it difficult to understand and predict final part quality and lead to numerous unacceptable quality defects. Despite major advances in injection molding manufacturing technology [1-3], there still exists significant obstacles in the manufacturing process, most notably, the achievement and control of molded part quality. Injection molding is a dynamic, non-linear process consisting of four sequential stages: plastication, filling, packing and ejection. In its simplest form an injection molding machine can be regarded as a large hydraulic pump, which, by virtue of a hydraulically controlled ram: transforms solid thermoplastic pellets into molten polymer (plastication), injects molten polymer into the mold cavity (filling), and pressurizes the cavity during polymer solidification (packing). Once the molded part has taken its final shape and allowed to cool, the mold is opened (ejection) and the process repeated. The requirements for molded part quality are many and varied, but ultimately are defined by the customers requirements, quantified as a measure of the parts fit-for-purpose [4] in terms of the key quality characteristics: dimensional tolerance, appearance, and structural integrity. For example, the dimensional tolerances for a laser printer chassis cabinet are more stringent than those for a freezer container. Similarly, the requirements of surface finish for an automotive heater cabinet, typically hidden from view, would be much less than those for an external side mirror housing. The key factors which determine part quality are the geometric design, material properties, and process dynamics. Advances in computer simulation of the molding process have greatly

2 improved the mold design process, but the correct setup and control of the molding machine has only recently begun to be addressed with the goal of achieving consistent high quality production. Injection molding machines have changed dramatically in recent years, progressing from simple open-loop control systems to present stateof-the-art machines incorporating sophisticated closed-loop and adaptive controllers. This has resulted in huge advancements in terms of machine performance and repeatability, however, to date the objective has been to control the machine and not the part quality. Controlling part quality directly is the key to further advances in injection molding. To this end, a greater understanding of the correlation of part quality with the process control parameters; such as injection stroke, injection speed, and packing pressure is required. Approach The control of part quality must be a vital consideration during each stage in the production cycle, from product design through production. Analysis The rapid advancements and affordability of computer technology has enabled Computer Aided Engineering (CAE) software to forever change the plastic design process. This area forms the core of Moldflow s products, including a complete design suite to optimize the design of molded plastic parts in terms of part quality, production time and cost [5]. Using CAE software, a mold designer is able to simulate the molding process during the conceptual and detailed stages of product development, before expensive die cutting has commenced. In this way the designer can preempt potential problems in the part design before production, and optimize the process for efficiency and cost. This can provide enormous savings in the product design stage, however, the manufacturing stage essentially remains a manual process, in that the setting-up and control of the molding equipment relies on the abilities of the equipment operator. Production To improve the manufacturing process, Moldflow is developing Intelligent Process Control (IPC) technology to optimize machine setup and provide on-line control of part quality [6]. Moldflow s IPC system comprises of two parts: MF/OPTIM, an extension of the existing CAE software suite to optimize the molding machine setup in terms of the specific part, material and machine combination; and MF/SmartMold, an intelligent analysis and control system for molding machines, which uses the MF/OPTIM results to configure the machine, then automatically monitors and controls part quality during production. As shown in Figure 1, Process Window, which forms the basis of this report, is an integral part of the MF/SmartMold software system. Using the MF/OPTIM results as a starting processing state, MF/SmartMold intelligently shifts the process to a region producing acceptable quality parts (as defined by the molder and in terms of certain quality attributes) and then determines a processing window - or region of acceptable molding - by performing an automatic experimental validation of the surrounding process space. This process window determination enables on-line development of a process quality model which is subsequently used for automatic production quality monitoring and control. START Use results from MF/ OPTIM Mold Part Evaluate part quality Part OK? Yes Determine Process Window Production Quality Monitor (PQM) No Die Set Adjust machine control parameters Check process using quality issue rule-base Isolate quality issue Figure 1: MF/Smartmold Structure Technical Usage Matlab has been used frequently throughout the product development for system prototyping as well as results analysis. This extensive usage

3 enabled the development team to more easily gain insight and rapidly develop solutions due to these Matlab characteristics: 1) a high level language allowing rapid software development, 2) vast function library enabling access to advanced, previously inaccessible functions, and 3) efficient management and manipulation of large and complex data sets. Table 1 highlights some specific instances in which Matlab was recognized as a vital tool in product development. Table 1: Uses of Matlab in Prototyping and Analysis Task Description Filtering high and low frequency noise of process data Automatic manipulation, inspection, analysis of larger matrices (on the order of 10 by 5,000) Estimation of process effects and errors from process data Function fitting, design optimization Display and communication of complex functions and data Estimation of plant dynamics Design of discrete controller Toolbox Signal Processing Built-In Math Polynomial Functions Optimization Graphics System Identification Control System As an example of the compactness and adaptability of Matlab code, consider the prototype code listed in figure 2. This code exemplifies the power and versatility enabled by the Matlab language. The application is a straightforward design of experiments (DOE). In line 1, a DOE is entered into the environment as a matrix: each row represents an experimental run, while each column indicates the value of the process variable (low or high). In this case, a full factorial design of experiments was utilized [7]. 1: DOE=[ ;-1-1 1;-1 1-1;-1 1 1; ; 1-1 1; 1 1-1; 1 1 1]; 2: nx=size(doe,2); 3: for i=1:nx 4: lo(:,i)=find(doe(:,i)==-1); 5: hi(:,i)=find(doe(:,i)==1); 6: end 7: Y=Process_Out(DOE); 8: for i=1:nx 9: dydx(i)=(y(hi(:,i))-y(lo(:,i))) /size(lo,1); 10: end Figure 2: A Sample of Prototype Code Line 2 finds the number of process variables in the experimental design. Lines 4 through 6 find the low and high run numbers from the experiment for each process parameter their use will be explained shortly. Once the setup is complete, the manufacturing process is performed, or simulated, and the results gathered in array Y. It is useful to note that Y can be a vector with the result of each experimental run, or a matrix with any number of observations. Line 9 then calculates the effect of each process variable on the desired result. This is performed by using the arrays lo and hi to lookup the correct runs in array Y, find the difference between the low and high levels, then divide by the number of observations. It is important to note the power and flexibility of these few lines. First, the code is completely flexible. The engineer need only enter the experimental design the find function will automatically locate and guarantee that the correct indices which are used. Moreover, the size and shape of the array, defined by the number of process variables and number of runs in the experimental array, can be arbitrary the code adapts to any experimental approach. Second, the code is incredibly compact, was quickly coded, and can be easily understood. The same functionality coded in C required over two hundred lines. Finally, the full Matlab library of functions is available to support results analysis and decision support. Having constructed a working Process Window prototype in Matlab, the next stage was to integrate the developed system into the MF/SmartMold program. MF/SmartMold is a dedicated software application designed for a Pentium PC, running QNX real-time operating system and X/Motif

4 Quality Index graphical interface. The program comprises the following major C/C++ software modules: Graphical User Interface (GUI), Adaptive Controller, Data Acquisition (DAQ), and Quality Control (QC) utilizing expert system technology. To integrate the Process Window prototype, the Matlab meta-language was converted to C code and incorporated into the Quality Control subsystem. The completed C module was almost ten times the prototype size (in terms of program lines of code) to perform the same task, which clearly demonstrates the conciseness and power of the Matlab language. Matlab inherently provides complex array manipulations and operators, such as a*b and a.*b, which are not present in procedural languages such as C, and had to be explicitly programmed into the MF/SmartMold system. Example The goal of Process Window is to define a region around an optimal operating point which will produce quality parts. Injection molded part quality, however, is most frequently defined with multiple criteria, each of which may have unique dependence upon several process variables. As such, it is very difficult to completely understand all of the process-to-quality relationships. Figure 3 shows a subset of a simple quality model Shot Size 10 0 Figure 3: Subset of Product Quality Response not be repeatable with significant material property, operator, or controller variation. Finally, the quality index is an aggregate measure of how many defects are present in the molded parts a quality index of 100 indicates no defects. However, a better understanding involves mapping the process to quality relation for each quality criteria, then superimposing the state spaces to find the actual molding process window. Considering these details, the resolution of the process window is very difficult, especially considering the cost of acquiring data. Each observed data point for the quality model requires feedback from the product quality molded at specified molding conditions. Given the time required to enact a process change and the need for multiple samples due to issues with process repeatability, roughly 4,500 parts would be required to obtain the surface shown in Figure 3. This quantity is, in itself, on the order of a production lot costing tens of thousands of US dollars. Moldflow s approach for defining the Process Window is illustrated below in Figure 4. The first and most critical assumption is that the procedure will start from a process point which produces high quality parts. This requirement will be met through the utilization of Die Set, described in Figure 1, which couples operator feedback, machine control, and a molding expert system [8] to produce one good part. This model is, in fact, a gross oversimplification of the molding process as the product quality depends not only upon shot size and pack pressure but also additional process parameters such as ram velocity, melt temperature, etc. which can not be simultaneously charted. Worse, the process may

5 START Use process state determined in Die Set stage Modify process parameters according to DOE Mold Parts Input molded parts quality and record process history All moldings OK? No Yes Re-evaluate part quality by interpolating molding state space Determine process shifts for each control variable in terms of each quality attribute Move to new process state END Optimum process state and limits are as determined in DOE Figure 4: Process Window Structure A second input to Process Window is the coefficient of variation for each of the critical molding process parameters. This data is used in determining the required breadth of the Process Window necessary to produce quality parts, even in the presence of significant stochastic process variation. As such, the process capability is monitored and assessed during the initial start-up of the application. With these inputs, Process Window proceeds by automatically generating an experimental design, perturbing the molding process, and producing a series of molded parts. The user then assesses each molded part according to the application s critical quality criteria. This approach enables any number and types of quality to be considered the experimental design will develop the local quality model on-line for each quality criteria. As previously stated, the process dynamics or operator feedback may vary significantly while defining the Process Window. Each bit of quality data is permanently stored and subsequently used for quality verification. This is accomplished by dynamically building a multi-dimensional data space, then using data in nearby cells to estimate the actual quality characteristics of the molded part. If the quality feedback is significantly different from the expected value, then the operator is asked to verify the molded part quality. Once the molded part quality has been entered and verified for the experimental design, the process shifts for each process control variable is determined. The methodology has been developed to resolve conflicting process shifts as well as the existence of no solutions, however the details will not be discussed here. After the process shifts have been determined, the operating point is moved and another DOE begun. The process continues until all molded parts produced by the experimental design are acceptable, i.e. every quality criteria has been met. It is vital to remember that the levels of perturbation have been chosen to encompass the representative process variation. If all parts in the experimental design meet the quality criteria, then all parts molded during production should meet the quality standards, even in the presence of process inconsistencies. The results of Process Window are passed to MF/Smartmold s Production Quality Monitor, which monitors and controls the molding process to assure product quality. The Process Window was tested with the quality model described by Figure 3. Using the methods previously described, an adequate process window was able to be defined if given an initial operating point which produced good parts or was close to producing good parts. On the average, this method required a total of 30 parts to be molded. If the same procedure was started at a bad operating point, no adequate solution would typically be found. This is to be expected given the needs and assumptions made during development. It is clearly possible to formulate this same problem as a minimization suitable for fmins(), a Matlab multi-variable optimization routine based on the Simplex search method. As a matter of fact, fmins() was typically able to find an adequate solution irrespective of the initial starting position. This is to be expected, given the ability of the

6 Simplex to walk, expand, and contract the search zone to better operating regimes. Unfortunately, this method typically required over 600 parts to be sampled, far too many for commercial feasibility end-users would vastly prefer a sub-optimal solution. Conclusions One component of a quality control system for injection molding has been described. This system has been developed and prototyped in Matlab then commercially implemented in the C programming language. The use of Matlab enabled for rapid development and an approach which is more robust than would have been developed given the tight time and cost constraints of system development. The completed C module was almost ten times the prototype size (in terms of program lines of code) to perform the same task, which clearly demonstrates the conciseness and power of the Matlab language. Some of the subtleties of implementing a quality control system for injection molding have been discussed: multiple and diverse quality criteria, multiple control variables, complex and stochastic process dynamics, operator faults, and high cost of sampling. Each of these items was explicitly considered during system development. Using specific assumptions conformant to adjacent modules of MF/Smartmold, the Process Window requires only 30 samples to define an adequate process regime this compares favorably to a general Simplex approach which requires several hundred samples and can not be considered a feasible approach. 4. DeVor, R. E, Chang, T., Sutherland, J., W., Statistical Quality Design and Control: Contemporary Concepts and Methods, Macmillan Publishing Company, New York, Austin, C., Industrial Metamorphosis, Proceedings from the 1994 Annual Technical Meeting of the Society of Plastics Engineers, v. 52, pp. 1626, Rowland, J. C., Kazmer, D. O., An On-line Quality Monitoring System for Thermoplastic Injection Molding, Proceedings from the 1996 Annual Technical Meeting of the Society of Plastics Engineers, v. 54, Box, G.E.P., Hunter, W.G., Hunter, J.S., Statistics for Experimenters, John Wiley & Sons, New York, Giarranto, J. C., Culbert, C., Savely, R. T., The State of the Art for Current and Future Expert System Tools, ISA Transactions, v. 29, n. 1, pp , References 1. O Bryan, J. E., Proportional Valves, Microprocessors, and Closed-Loop Control Keeps Plastics Molders Competitive, Hydraulic and Pneumatics, v. 42, n. 3, pp. 95, Agrawal, A. R., Pandelidis, I. O., Pecht, M., Injection-Molding Process Control A Review, Polymer Engineering and Science, v. 27, pp. 18, Ma, C., Y., A Design Approach to A Computer-Controlled Injection-Molding Machine, Polymer Engineering and Science, v. 14, n. 11, pp. 768, 1974.

Autodesk Moldflow Insight AMI Thermoplastics Overmolding

Autodesk Moldflow Insight AMI Thermoplastics Overmolding Autodesk Moldflow Insight 2012 AMI Thermoplastics Overmolding Revision 1, 22 March 2012. This document contains Autodesk and third-party software license agreements/notices and/or additional terms and

More information

INVESTIGATION ON WARPAGE AND SINK MARK FOR INJECTION MOULDED PARTS USING TAGUCHI METHOD

INVESTIGATION ON WARPAGE AND SINK MARK FOR INJECTION MOULDED PARTS USING TAGUCHI METHOD INVESTIGATION ON WARPAGE AND SINK MARK FOR INJECTION MOULDED PARTS USING TAGUCHI METHOD Omar Ahmed Mohamed, Swinburne University of Technology, Melbourne, Australia Syed Hasan Masood, Swinburne University

More information

BEST VALUE FOR YOUR MONEY

BEST VALUE FOR YOUR MONEY FORM 20 FORM 30 2 BEST VALUE FOR YOUR MONEY Contents Highlights Mechanical structure Control 4 6 10 Generator Job preparation GF AgieCharmilles 12 13 14 FORM 20 FORM 30 The most cost-efficient EDM die

More information

Thermal Compensation and Fuzzy Control for Developing a High-Precision Optical Lens Mold

Thermal Compensation and Fuzzy Control for Developing a High-Precision Optical Lens Mold Journal of Mechanics Engineering and Automation 8 (2018) 189-197 doi: 10.17265/2159-5275/2018.05.001 D DAVID PUBLISHING Thermal Compensation and Fuzzy Control for Developing a High-Precision Optical Lens

More information

Method of Tuning and Automatic Regulation for Injection Molding

Method of Tuning and Automatic Regulation for Injection Molding Method of Tuning and Automatic Regulation for Injection Molding Kourosh Danai David Kazmer University of Massachusetts Amherst Abstract Efficient tuning of injection molding has been an enduring problem

More information

A hybrid response surface methodology and simulated annealing algorithm

A hybrid response surface methodology and simulated annealing algorithm 2011 International Conference on Computer Communication and Management Proc.of CSIT vol.5 (2011) (2011) IACSIT Press, Singapore A hybrid response surface methodology and simulated annealing algorithm (A

More information

Improving the quality of the molded polymeric parts by reducing the residual stress

Improving the quality of the molded polymeric parts by reducing the residual stress Improving the quality of the molded polymeric parts by reducing the residual stress ALEXANDRA NITA, EMIL OANTA Marine Engineering Department, Constanta Maritime University, 104, Mircea cel Batran St, Constanta

More information

The use of a Inductive Electromagnetic Melt Temperature Sensor to Improve the Injection Molding Process

The use of a Inductive Electromagnetic Melt Temperature Sensor to Improve the Injection Molding Process The use of a Inductive Electromagnetic Melt Temperature Sensor to Improve the Injection Molding Process Injection Molding Conference 2017 By Michael F. Durina Md Plastics Incorporated 1361 Wardingley Ave.,

More information

D-M-E Hot Runner Services. Total support for your hot runner systems

D-M-E Hot Runner Services. Total support for your hot runner systems D-M-E Hot Runner Services Total support for your hot runner systems 46 Hot Runner Services Moldflow Services Optimize Part and Mold Design Comprehensive Analysis and Modeling With today s shrinking time-to-market

More information

>Machine Vision. product guide

>Machine Vision. product guide >Machine Vision product guide MACHINE VISION The Machine Vision Business Unit of Datalogic Industrial Automation is built upon the acquisition of PPT Vision Inc. in 2011. For over 30 years, PPT Vision

More information

2nd International Conference on Electronics, Network and Computer Engineering (ICENCE 2016)

2nd International Conference on Electronics, Network and Computer Engineering (ICENCE 2016) 2nd International Conference on Electronics, Network and Computer Engineering (ICENCE 2016) Computer Simulation on Injection Molding Process of Automotive Engine Air intake Manifold Based on Moldflow Hanwu

More information

Simulation and Multi-Objective Optimization of Bioprocesses with Matlab and SuperPro Designer using a Client-Server Interface

Simulation and Multi-Objective Optimization of Bioprocesses with Matlab and SuperPro Designer using a Client-Server Interface Simulation and Multi-Objective Optimization of Bioprocesses with Matlab and SuperPro Designer using a Client-Server Interface Sandu Taraş, Alexandru Woinaroschy* Politehnica University of Bucharest, Dept.

More information

ANALYSIS OF TEMPERATURE INFLUENCE ON INJECTION MOLDING PROCESS

ANALYSIS OF TEMPERATURE INFLUENCE ON INJECTION MOLDING PROCESS Proceedings in Manufacturing Systems, Volume 11, Issue 2, 2016, 95 100 ISSN 2067-9238 ANALYSIS OF TEMPERATURE INFLUENCE ON INJECTION MOLDING PROCESS Karel RAZ 1,*, Martin ZAHALKA 2 1) PhD, Lecturer, Eng.,

More information

COPYRIGHTED MATERIAL RELIABILITY ENGINEERING AND PRODUCT LIFE CYCLE 1.1 RELIABILITY ENGINEERING

COPYRIGHTED MATERIAL RELIABILITY ENGINEERING AND PRODUCT LIFE CYCLE 1.1 RELIABILITY ENGINEERING 1 RELIABILITY ENGINEERING AND PRODUCT LIFE CYCLE 1.1 RELIABILITY ENGINEERING Reliability has a broad meaning in our daily life. In technical terms, reliability is defined as the probability that a product

More information

Desirability Function Example

Desirability Function Example Desirability Function Example Desirability Functions Trade-off problems between various responses can be solved by using desirability functions. Desirability functions are a mathematical means of conducting

More information

Moldflow Communicator Easily Share Results With Your Distributed Product Team

Moldflow Communicator Easily Share Results With Your Distributed Product Team Moldflow Communicator Easily Share Results With Your Distributed Product Team White Paper Introduction The past decade has witnessed a widespread adoption of computer-aided engineering (CAE) software for

More information

DESIGN OF MULTI CAVITY INJECTION MOLDING TOOL FOR THE COMPONENT TORCH BODY BY USING HYDRAULIC SIDECORE

DESIGN OF MULTI CAVITY INJECTION MOLDING TOOL FOR THE COMPONENT TORCH BODY BY USING HYDRAULIC SIDECORE DESIGN OF MULTI CAVITY INJECTION MOLDING TOOL FOR THE COMPONENT TORCH BODY BY USING HYDRAULIC SIDECORE Ajaykumar K 1 and Abhishek Basappa 2 1,2 Dept. Of mechanical engineering, Maharaja Institute of Technology

More information

Determining Appropriate Cooling System For Plastic Injection Molding Through Computer Simulation

Determining Appropriate Cooling System For Plastic Injection Molding Through Computer Simulation Determining Appropriate Cooling System For Plastic Injection Molding Through Computer Simulation Parag Chinchkhede 1, Dr. K. M. Ashtankar 2, 1Master Of Technology Final Year, VNIT Nagpur 2Assistant Professor,

More information

Micro Molds Case Study: Micro Mold for Medical Component By Justin McPhee, VP Engineering, Mold Craft, Inc.

Micro Molds Case Study: Micro Mold for Medical Component By Justin McPhee, VP Engineering, Mold Craft, Inc. Micro Molds Case Study: Micro Mold for Medical Component By Justin McPhee, VP Engineering, Mold Craft, Inc. The Challenge: Molding a pipette shaped part with a.015 wall x.372 long followed by a.008 wall

More information

SUCCESS THROUGH EFFICIENCY. Van Dorn EXTRA

SUCCESS THROUGH EFFICIENCY. Van Dorn EXTRA SUCCESS THROUGH EFFICIENCY Van Dorn EXTRA 28 220 V A N D O R N E X T R A THE SUCCESS STORY Excellent Price to Performance Ratio Productive, reliable, straightforward, favorably priced a sound concept that

More information

40 years of helping our customers grow by developing and supplying top level plastic parts

40 years of helping our customers grow by developing and supplying top level plastic parts 40 years of helping our customers grow by developing and supplying top level plastic parts 2 Offering Service and Production Facilities in 3 Locations Parts: R&D 1 Design 1 Prototyping 1 2 Material Selection

More information

Moldex3D, Structural Analysis, and HyperStudy Integrated in HyperWorks Platform Anthony Yang. Moldex3D

Moldex3D, Structural Analysis, and HyperStudy Integrated in HyperWorks Platform Anthony Yang. Moldex3D Moldex3D, Structural Analysis, and HyperStudy Integrated in HyperWorks Platform Anthony Yang Moldex3D CoreTech System and Moldex3D The world s largest injection molding CAE ISV 80% experienced engineering

More information

Zhafir Venus Series. Haitian Partner: ZHAFIR PLASTICS MACHINERY GMBH Jubatus-Allee Ebermannsdorf Germany

Zhafir Venus Series. Haitian Partner: ZHAFIR PLASTICS MACHINERY GMBH Jubatus-Allee Ebermannsdorf Germany HAITIAN INTERNATIONAL HOLDINGS LIMITED Unit 1105 Level 11 Metroplaza Tower 2 223 Hing Fong RD Kwai Fong N.T haitian@mail.haitian.com www.haitian.com Haitian Partner: HT 070905-IV ZHAFIR PLASTICS MACHINERY

More information

Title page - CLEO Baltimore, May 9, 2007 Software Engineering Processes Used to Develop the NIF Integrated Computer Control System* A.

Title page - CLEO Baltimore, May 9, 2007 Software Engineering Processes Used to Develop the NIF Integrated Computer Control System* A. Title page - CLEO Baltimore, May 9, 2007 Software Engineering Processes Used to Develop the NIF Integrated Computer Control System* A. Peter Ludwigsen 2007 International Conference on Accelerators and

More information

This document describes the overall software development process of microcontroller software during all phases of the Company Name product life cycle.

This document describes the overall software development process of microcontroller software during all phases of the Company Name product life cycle. Maturity Process Owner Check Release Description Valid Name / Department Name / Department Name / Department Detailed procedure for software development Title: Software Development Procedure Purpose: This

More information

(Catalog Number 6500-PS7TE, -PS7EE) With Co-injection and/or Process Trace options

(Catalog Number 6500-PS7TE, -PS7EE) With Co-injection and/or Process Trace options (Catalog Number 6500-PS7TE, -PS7EE) With Co-injection and/or Process Trace options 2 Pro-Set 700 Injection Molding Control System As a high-volume injection molder of tight-tolerance plastic parts, you

More information

Pushtrusion TM. New Direct Compounding Technology. New. Integrating new technology with state-of. of-the-art production systems

Pushtrusion TM. New Direct Compounding Technology. New. Integrating new technology with state-of. of-the-art production systems Pushtrusion TM New Direct Compounding Technology New Integrating new technology with state-of of-the-art production systems Eric V. Lee, product manager Presentation Content Review market dynamics contributing

More information

EVALUATION OF PRODUCT AND PROCESS DESIGN ROBUSTNESS

EVALUATION OF PRODUCT AND PROCESS DESIGN ROBUSTNESS EVALUATION OF PRODUCT AND PROCESS DESIGN ROBUSTNESS David Kazmer * Assistant Professor University of Massachusetts Amherst Engineering Laboratory Building Amherst, MA 01003 (413) 545-0670 kazmer@ecs.umass.edu

More information

Software Next Release Planning Approach through Exact Optimization

Software Next Release Planning Approach through Exact Optimization Software Next Release Planning Approach through Optimization Fabrício G. Freitas, Daniel P. Coutinho, Jerffeson T. Souza Optimization in Software Engineering Group (GOES) Natural and Intelligent Computation

More information

Assignment #2 IE 2303/AME 2303 Spring 2012 Introduction to Manufacturing. Example Answers

Assignment #2 IE 2303/AME 2303 Spring 2012 Introduction to Manufacturing. Example Answers Assignment #2 IE 2303/AME 2303 Spring 2012 Introduction to Manufacturing Example Answers 1. Short Response 2 to 3 sentences each (10 pts.) Explain in your own words the challenges/opportunities for U.S.

More information

10 Things to Ask. Your Plastic Injection Molder

10 Things to Ask. Your Plastic Injection Molder 10 Things to Ask Your Plastic Injection Molder Introduction Injection molding is the manufacturing process where melted resins are injected into a mold to form the shape of the desired part. Unfilled and

More information

introduction Introduction.1 contents Irrigation Warehouse Group Pty Ltd Ph

introduction Introduction.1 contents Irrigation Warehouse Group Pty Ltd  Ph contents Vinidex the Company 3 Quality Policy 3 Product Background 4 Worldwide Use 4 Australian Use 4 Pipe Extrusion 5 Fittings 6 End Treatments 6 Product Standards 7 Relevant Australian Standards 7 Introduction.1

More information

LOTOS. Optical 3D measuring systems K O C O S A U T O M A T I O N [ ENG ]

LOTOS. Optical 3D measuring systems K O C O S A U T O M A T I O N [ ENG ] KO C O S - T H E T E C H N O L O G Y G R O U P W H E R E P R E C I S I O N M E E T S Q UA L I T Y LOTOS Optical 3D measuring systems K O C O S A U T O M A T I O N [ ENG ] LOTOS LOTOS Three-dimensional

More information

Intelli-Gent Mold TM the Intelligent Molding Solution

Intelli-Gent Mold TM the Intelligent Molding Solution 1 Intelli-Gent Mold TM the Intelligent Molding Solution Intelli-Gent Mold TM Concept The process of Molding has changed considerably over the last decade relative to the microprocessor speeds of the Machines,

More information

Optimization for the Hydraulic Clamping System of an Internal Circulation Two-Platen Injection Molding Machine

Optimization for the Hydraulic Clamping System of an Internal Circulation Two-Platen Injection Molding Machine Optimization for the Hydraulic Clamping System of an Internal Circulation Two-Platen Injection Molding Machine Jian Wang, Lu Yang, Jiong Peng Abstract Internal circulation two-platen clamping system for

More information

FUNDAMENTAL SAFETY OVERVIEW VOLUME 2: DESIGN AND SAFETY CHAPTER G: INSTRUMENTATION AND CONTROL

FUNDAMENTAL SAFETY OVERVIEW VOLUME 2: DESIGN AND SAFETY CHAPTER G: INSTRUMENTATION AND CONTROL PAGE : 1 / 14 SUB CHAPTER G.6 I&C PROCEDURES AND TOOLS 1. STANDARD I&C SYSTEM This section describes the tools used for PAS/SAS (level 1 automation data) and MCP[PICS] (HMI) I&C programming. It includes

More information

The "Flip" Side Volume 1 Issue 3 April 2012

The Flip Side Volume 1 Issue 3 April 2012 The "Flip" Side Volume 1 Issue 3 April 2012 Beaumont introduces method for characterizing the 'injection moldability' of a plastic material At NPE 2012, Beaumont Technologies, Inc. introduced its Therma-flo

More information

SOLIDWORKS PLASTICS OPTIMIZE THE DESIGN OF PLASTIC PARTS AND INJECTION MOLDS VERIFY MANUFACTURABILITY

SOLIDWORKS PLASTICS OPTIMIZE THE DESIGN OF PLASTIC PARTS AND INJECTION MOLDS VERIFY MANUFACTURABILITY SUPPORTING EXCELLENCE OPTIMIZE THE DESIGN OF PLASTIC PARTS AND INJECTION MOLDS VERIFY MANUFACTURABILITY Plastics makes it easy for companies that design plastic parts or injection molds to predict and

More information

Mr. Ravi B Chikmeti 1, Prof. Sunil Mangshetty 2

Mr. Ravi B Chikmeti 1, Prof. Sunil Mangshetty 2 IOSR Journal of Mechanical and Civil Engineering (IOSR-JMCE) ISSN: 78-1684 Volume 4, Issue 1 (Nov-Dec. 01), PP 38-4 A Literature Review on Reducing the Warpage of Plastic Component by using Taguchi Optimization

More information

Optimizing Inplant Supply Chain in Steel Plants by Integrating Lean Manufacturing and Theory of Constrains through Dynamic Simulation

Optimizing Inplant Supply Chain in Steel Plants by Integrating Lean Manufacturing and Theory of Constrains through Dynamic Simulation Optimizing Inplant Supply Chain in Steel Plants by Integrating Lean Manufacturing and Theory of Constrains through Dynamic Simulation Atanu Mukherjee, President, Dastur Business and Technology Consulting,

More information

Lecture 1. In practice, most large systems are developed using a. A software process model is an abstract representation

Lecture 1. In practice, most large systems are developed using a. A software process model is an abstract representation Chapter 2 Software Processes Lecture 1 Software process descriptions When we describe and discuss processes, we usually talk about the activities in these processes such as specifying a data model, designing

More information

Models in Engineering Glossary

Models in Engineering Glossary Models in Engineering Glossary Anchoring bias is the tendency to use an initial piece of information to make subsequent judgments. Once an anchor is set, there is a bias toward interpreting other information

More information

Linear AMS Capabilities

Linear AMS Capabilities Linear AMS Capabilities Linear History: LinearAMS LLC. Linear Mold & Engineering Founded in June 2003 Specialized in prototyping of plastic injection molds & low volume production molding Led the industry

More information

Innovative Gauging. Best Practice Best Value. In-line Non-laser Non-contact. Robust. 2D/3D. Flexible. Reliable. Exact.

Innovative Gauging. Best Practice Best Value. In-line Non-laser Non-contact. Robust. 2D/3D. Flexible. Reliable. Exact. Innovative Gauging Best Practice Best Value Robust. 2D/3D. Flexible. Reliable. Exact. In-line Non-laser Non-contact 3D Quality In-line Gauging Precise - fast - robust - flexible Modern production processes

More information

The Intelligent Choice for Labels, Nameplates and More...

The Intelligent Choice for Labels, Nameplates and More... The Intelligent Choice for Labels, Nameplates and More... About GSI GSI Technologies, LLC has been an industry-leading producer of custom Industrial Graphics products since 1985. Our value is engineering

More information

Study programme in Sustainable Energy Systems

Study programme in Sustainable Energy Systems Study programme in Sustainable Energy Systems Knowledge and understanding Upon completion of the study programme the student shall: - demonstrate knowledge and understanding within the disciplinary domain

More information

The Elektra Series. 300 to 3,000 kn. ALL-ELECTRIC MACHINE FOR ANY APPLICATION AND CUSTOMIZED SOLUTIONS Fast, Highly Accurate, Clean, Multi-functional

The Elektra Series. 300 to 3,000 kn. ALL-ELECTRIC MACHINE FOR ANY APPLICATION AND CUSTOMIZED SOLUTIONS Fast, Highly Accurate, Clean, Multi-functional The Elektra Series 300 to 3,000 kn ALL-ELECTRIC MACHINE FOR ANY APPLICATION AND CUSTOMIZED SOLUTIONS Fast, Highly Accurate, Clean, Multi-functional EXPERIENCE MAKE THE DIFFERENCE ELEKTRA - ALL ELECTRIC

More information

HIGH-VOLUME MANUFACTURE OF A COMPOSITE DOOR MODULE BY A NOVEL 3D-PREFORM TECHNOLOGY

HIGH-VOLUME MANUFACTURE OF A COMPOSITE DOOR MODULE BY A NOVEL 3D-PREFORM TECHNOLOGY HIGH-VOLUME MANUFACTURE OF A COMPOSITE DOOR MODULE BY A NOVEL 3D-PREFORM TECHNOLOGY Queein Chang-Manson and Ah Yeong Park EELCEE Ltd., Gunpo IT Valley A-106, 148, Gosan-ro, Gunpo-si, Gyeonggi-do, South

More information

White paper. Author: Michael Green managing director at integrated packaging and processing solutions provider tna

White paper. Author: Michael Green managing director at integrated packaging and processing solutions provider tna White paper Project management, controls & integration, training: three ways to get the most out of your turnkey solutions provider Author: Michael Green managing director at integrated packaging and processing

More information

Fuzzy Logic for Software Metric Models throughout the Development Life-Cycle

Fuzzy Logic for Software Metric Models throughout the Development Life-Cycle Full citation: Gray, A.R., & MacDonell, S.G. (1999) Fuzzy logic for software metric models throughout the development life-cycle, in Proceedings of the Annual Meeting of the North American Fuzzy Information

More information

Software Processes 1

Software Processes 1 Software Processes 1 Topics covered Software process models Process activities Coping with change 2 The software process A structured set of activities required to develop a software system. Many different

More information

Adapting software project estimation to the reality of changing development technologies

Adapting software project estimation to the reality of changing development technologies Adapting software project estimation to the reality of changing development technologies Introduction Estimating software projects where significant amounts of new technology are being used is a difficult

More information

A Review on Cooling System Design for Performance Enhancement of Injection Molding Machine

A Review on Cooling System Design for Performance Enhancement of Injection Molding Machine A Review on Cooling System Design for Performance Enhancement of Injection Molding Machine Rupali P. Patil M.E (Machine Design), SST s College of Engg., Jalgaon Navneet K. Patil Asso. Professor, Department

More information

Design approaches for additive manufactured components

Design approaches for additive manufactured components VTT TECHNICAL RESEARCH CENTRE OF FINLAND LTD Design approaches for additive manufactured components Erin Komi, Petteri Kokkonen VTT Technical Research Centre of Finland Ltd Structural Dynamics & Vibroacoustics

More information

Stereolithography for Rapid Tooling for Injection Molding: The Effect of Cooling Channel Geometry

Stereolithography for Rapid Tooling for Injection Molding: The Effect of Cooling Channel Geometry Stereolithography for Rapid Tooling for Injection Molding: The Effect of Cooling Channel Geometry M. Janczyk, R. McLaughlin, R. Malloy, and S. McCarthy* Institute for Plastics Innovation, University of

More information

Precision Prototyping THE ROLE OF 3D PRINTED MOLDS IN THE INJECTION MOLDING INDUSTRY

Precision Prototyping THE ROLE OF 3D PRINTED MOLDS IN THE INJECTION MOLDING INDUSTRY By Stratasys Mold Tooling Solutions Team INTRODUCTION Injection molding (IM) the process of injecting plastic material into a mold cavity where it cools and hardens to the configuration of the cavity is

More information

Course Outcome Analysis Report

Course Outcome Analysis Report Branch Mechanical Engineering Class: SE Subject: Engineering Mathematics-III 1 Formulate and solve ordinary, partial differential equations and vector calculus for engineering problems. 88.67 2 Perform

More information

Mid-term Progress Report

Mid-term Progress Report Mid-term Progress Report IPRO 330 Operator Information Tool to Manage Heat Treat Furnace Parts for A.Finkl & Sons Illinois Institute of Technology, Spring 2006 Project Objectives: To generate an accurate

More information

Case packing automatic. Solutions FULL IMAGE OF THE LAYER INSIDE THE CASE PACKER IS POSSIBLE

Case packing automatic. Solutions FULL IMAGE OF THE LAYER INSIDE THE CASE PACKER IS POSSIBLE Solutions FULL IMAGE OF THE LAYER INSIDE THE CASE PACKER IS POSSIBLE Case packing automatic FULL IMAGE OF THE LAYER INSIDE THE CASE PACKER IS NOT POSSIBLE 1. Sentinel station to avoid that an unreadeble

More information

A CHECKLIST FOR QUALITY. Seven Questions to Gauge Quality in Metal Stamping Suppliers

A CHECKLIST FOR QUALITY. Seven Questions to Gauge Quality in Metal Stamping Suppliers A CHECKLIST FOR QUALITY Seven Questions to Gauge Quality in Metal Stamping Suppliers The Value of Quality Quality. It s the #1 concern for OEM engineering and purchasing managers when evaluating and measuring

More information

HYDRAULIC POWER AND CONTROL for the EXTRUSION INDUSTRY

HYDRAULIC POWER AND CONTROL for the EXTRUSION INDUSTRY HYDRAULIC POWER AND CONTROL for the EXTRUSION INDUSTRY Bulletin 11800-B Extrusion Industry Partner with the Extrusion Industry The Oilgear Company is a global builder of hydraulic drives and electronic

More information

Mathcad : Optimize your design and engineering process.

Mathcad : Optimize your design and engineering process. Mathcad : Optimize your design and engineering process. Where engineering excellence begins. ENGINEERING CALCULATION SOFTWARE Solve, document, share and reuse vital engineering calculations. Engineering

More information

Abstract. 2. DesignofPartandCoolingChannels. 1. Introduction. Page 344

Abstract. 2. DesignofPartandCoolingChannels. 1. Introduction. Page 344 A Simulation Study of Conformal Cooling Channels in Plastic Injection Molding Omar A. Mohamed, S.H. Masood, Abul Saifullah Faculty of Engineering and Industrial Science, Swinburne University of Technology,

More information

UNIPRENE. Shaping a New World of Opportunities THERMOPLASTIC ELASTOMER DIVISION

UNIPRENE. Shaping a New World of Opportunities THERMOPLASTIC ELASTOMER DIVISION THERMOPLASTIC ELASTOMER DIVISION Unique TPVs providing the look and feel of rubber with the processing ease of TPOs. Ideal for pre-colored, soft-touch and engineered custom applications. Shaping a New

More information

METROLOGY FIXTURES SUB-CONTRACT METROLOGY MOLDFLOW ANALYSIS. English Edition

METROLOGY FIXTURES SUB-CONTRACT METROLOGY MOLDFLOW ANALYSIS. English Edition METROLOGY FIXTURES SUB-CONTRACT METROLOGY MOLDFLOW ANALYSIS English Edition WE RE VERUS Our passion is metrology and our focus is on supporting our global clients with a team of experienced design engineers,

More information

>Sprint. >Spectra. > Navigation Processing. & QC System for Marine Geophysical Survey. > The Leading Seismic Navigation System

>Sprint. >Spectra. > Navigation Processing. & QC System for Marine Geophysical Survey. > The Leading Seismic Navigation System > The Leading Seismic Navigation System >Spectra NAVIGATION PROCESSING & QC > Navigation Processing & QC System for Marine Geophysical Survey 2 Sprint has established itself as the most effective navigation

More information

SVG+ Simple, yet smarter.

SVG+ Simple, yet smarter. H O T R U N N E R T E C H N O L O G Y SVG+ Simple, yet smarter. The New Standard for Sequential Valve Gate Molding Stabilize your Process H O T R U N N E R T E C H N O L O G Y As the leading innovator

More information

The University of Texas at Austin Mechanical Engineering Department, Cockrell School of Engineering Austin, TX

The University of Texas at Austin Mechanical Engineering Department, Cockrell School of Engineering Austin, TX In-Situ Thermal Image Correlation with Mechanical Properties of Nylon-12 in SLS Walker Wroe, Jessica Gladstone, Timothy Phillips, Austin McElroy, Scott Fish, Joseph Beaman The University of Texas at Austin

More information

Mathcad : Optimize your design and engineering process.

Mathcad : Optimize your design and engineering process. Mathcad : Optimize your design and engineering process. Where engineering excellence begins. ENGINEERING CALCULATION SOFTWARE Solve, document, share and reuse vital engineering calculations. Engineering

More information

Combined Trexel and 3M Technologies Revolutionize Lightweighting of Plastics

Combined Trexel and 3M Technologies Revolutionize Lightweighting of Plastics Combined Trexel and 3M Technologies Revolutionize Lightweighting of Plastics 20 Percent Density Reduction Proven With Molded Auto Parts To address demanding lightweighting needs in the plastics industry,

More information

Demonstration of an Effective Design Validation Tool for 3D Printed Injection Molds (3DPIM)

Demonstration of an Effective Design Validation Tool for 3D Printed Injection Molds (3DPIM) Validation Tool for 3D Printed Injection Injection molding, the process of injecting plastic material into a mold cavity where it cools and hardens to the configuration of the cavity, is one of the world

More information

Tecnomatix Plant Simulation

Tecnomatix Plant Simulation Value Stream Mapping Library Benefits Increase productivity of existing production facilities by as much as 20 percent Reduce investment in planning for new production by as much as 20 percent Reduce inventories

More information

High accuracy and precision micro injection moulding of thermoplastic elastomers micro ring production

High accuracy and precision micro injection moulding of thermoplastic elastomers micro ring production High accuracy and precision micro injection moulding of thermoplastic elastomers micro ring production 4M/IWMF 2016 No. M. Calaon 1, G. Tosello 1, R. Elsborg 2, H.N. Hansen 1 1 Technical University of

More information

Particle characterization of Metal Powders with Dynamic Image Analysis

Particle characterization of Metal Powders with Dynamic Image Analysis Retsch Technology GmbH Retsch-Allee 1-5 42781 Haan, Germany Phone Fax +49 21 04 / 23 33-300 +49 21 04 / 23 33-399 E-Mail Internet technology@retsch.com www.retsch-technology.com Particle characterization

More information

Machine Vision Solution Platform

Machine Vision Solution Platform COAKE 7 Machine Vision Solution Platform Customized machine vision solutions configured, not programmed. From feasibility analysis to acceptance with drag and drop. Coake 7 The modern software platform

More information

Delivering Innovation in Digital Manufacturing through XVL

Delivering Innovation in Digital Manufacturing through XVL D i g i t a l M a n u f a c t u r i n g S o l u t i o n s W H I T E P A P E R US Headquarters 582 Market Street, San Francisco, CA. 94104 USA Tel: 415 274 1670 Fax: 415 274 1671 Worldwide headquarters

More information

A Collaborative, Cross-Disciplinary Project between Engineering Courses and Programs Centered on Design for Manufacturability

A Collaborative, Cross-Disciplinary Project between Engineering Courses and Programs Centered on Design for Manufacturability ASEE-NMWSC2013-0056 Abstract A Collaborative, Cross-Disciplinary Project between Engineering Courses and Programs Centered on Design for Manufacturability Adam Kramschuster and Gregory Slupe kramschustera@uwstout.edu;

More information

COSTS OF TPC MOLDING: ECONOMICAL PRODUCTION TECHNOLOGY FOR LOW & HIGH VOLUME 3-D TPC PARTS

COSTS OF TPC MOLDING: ECONOMICAL PRODUCTION TECHNOLOGY FOR LOW & HIGH VOLUME 3-D TPC PARTS COSTS OF TPC MOLDING: ECONOMICAL PRODUCTION TECHNOLOGY FOR LOW & HIGH VOLUME 3-D TPC PARTS Tyler M. Johnson, Diaphorm, a Division of Solectria Corp. Vasilios Brachos, Diaphorm, a Division of Solectria

More information

TOOLING ENGINEERING FOR OPTIMUM PERFORMANCE

TOOLING ENGINEERING FOR OPTIMUM PERFORMANCE TOOLING ENGINEERING FOR OPTIMUM PERFORMANCE ABOUT US MGS Tooling is your single-source provider for engineering, design, mold construction, process simulation, sampling, mold and part qualification and

More information

CONCEPTUAL DESIGN OF AN AUTOMATED REAL-TIME DATA COLLECTION SYSTEM FOR LABOR-INTENSIVE CONSTRUCTION ACTIVITIES

CONCEPTUAL DESIGN OF AN AUTOMATED REAL-TIME DATA COLLECTION SYSTEM FOR LABOR-INTENSIVE CONSTRUCTION ACTIVITIES CONCEPTUAL DESIGN OF AN AUTOMATED REAL-TIME DATA COLLECTION SYSTEM FOR LABOR-INTENSIVE CONSTRUCTION ACTIVITIES H. Randolph Thomas The Pennsylvania State University Research Building B University Park,

More information

WFI and Pure Steam in Best Quality GENERATION, STORAGE, DISTRIBUTION AND MONITORING. bwt-pharma.com

WFI and Pure Steam in Best Quality GENERATION, STORAGE, DISTRIBUTION AND MONITORING. bwt-pharma.com WFI and Pure Steam in Best Quality GENERATION, STORAGE, DISTRIBUTION AND MONITORING bwt-pharma.com "With BWT, you can turn water into solutions. WE GENERATE PURE CONFIDENCE Critical Utilities the simplest

More information

Polymer Injection Molding Technology for the Next Millennium

Polymer Injection Molding Technology for the Next Millennium Polymer Injection Molding Technology for the Next Millennium David O. Kazmer Assistant Professor University of Massachusetts Department of Mechanical Engineering Amherst, MA 01003, USA and Russell G. Speight

More information

Criteria For Selection of Software Development Environment For Construction Robotic Systems

Criteria For Selection of Software Development Environment For Construction Robotic Systems Criteria For Selection of Software Development Environment For Construction Robotic Systems Khaled Zied and Derek Seward Engineering department, Lancaster University, Lancaster, LA1 4YR, UK k.zied@lancaster.ac.uk

More information

ADCHEM International Symposium on Advanced Control of Chemical Processes Gramado, Brazil April 2-5, 2006

ADCHEM International Symposium on Advanced Control of Chemical Processes Gramado, Brazil April 2-5, 2006 ADCHEM 6 International Symposium on Advanced Control of Chemical Processes Gramado, Brazil April 2-5, 6 INJECTION VELOCITY CONTROL BASED-ON AN ITERATIVE LEARNING AND FEEDBACK COMBINED CONTROLLER Yi Yang

More information

Sample. NI TestStand TM I: Introduction Course Manual

Sample. NI TestStand TM I: Introduction Course Manual NI TestStand TM I: Introduction Course Manual Course Software Version 4.0 July 2007 Edition Part Number 322317J-01 NI TestStand I: Introduction Course Manual Copyright 1999 2007 National Instruments Corporation.

More information

MICROGRIDS Large Scale Integration of Micro-Generation to Low Voltage Grids WORK PACKAGE C. Deliverable_DC1

MICROGRIDS Large Scale Integration of Micro-Generation to Low Voltage Grids WORK PACKAGE C. Deliverable_DC1 NTUA Large Scale Integration of Micro-Generation to Low Voltage Grids Contract No: Final Version WORK PACKAGE C Deliverable_DC1 MicroGrid Central Controller strategies and algorithms Part 2 Software Description

More information

Injection Mold Design and Optimization of Battery Air vent

Injection Mold Design and Optimization of Battery Air vent Injection Mold Design and Optimization of Battery Air vent Rahul S. Khichadi M.Tech student, VACOE Ahmednagar, Maharashtra, India-414201 Abstract In this paper, battery vent plug part for injection molding

More information

INTRODUCTION. Introduction i

INTRODUCTION. Introduction i Introduction i INTRODUCTION Experimental design techniques emerged in England during the 1920s. R.A. Fisher led initial applications in the fi eld of agriculture [1]. Other notable contributors to this

More information

LPC Palletizing Cell

LPC Palletizing Cell LPC Palletizing Cell The LPC Palletizing Cell 2 Liebherr offers a wide range of automation systems that support modern high-efficiency production. The emphasis here is on economy, ease of use, quality

More information

Based on Software Engineering, by Ian Sommerville Coherent sets of activities for specifying, designing, implementing and testing software systems

Based on Software Engineering, by Ian Sommerville Coherent sets of activities for specifying, designing, implementing and testing software systems Software Processes Based on Software Engineering, by Ian Sommerville Coherent sets of activities for specifying, designing, implementing and testing software systems Slide 1 Objectives To introduce software

More information

APC plus Stability, precision and cost-efficiency in production

APC plus Stability, precision and cost-efficiency in production APC plus Stability, precision and cost-efficiency in production Engineering Passion 2 APC plus (Adaptive Process Control plus) External factors impair part quality APC plus cancels out environmental influences

More information

Is Conformal Cooling Right for You?

Is Conformal Cooling Right for You? December 2016 Is Conformal Cooling Right for You? Matt Dachel A key benefit of injection molding is the ability to economically mass-produce dimensionally stable parts. The injection molding cycle can

More information

Performance verification of marine fenders USER GUIDE

Performance verification of marine fenders USER GUIDE TRELLEBORG MARINE SYSTEMS Performance verification of marine fenders USER GUIDE Introduction Marine rubber fenders play a critical role in the operations of ports. They enable vessels that weigh several

More information

Application of MBD to Development of ECU Prototype for EPS

Application of MBD to Development of ECU Prototype for EPS Technology Introduction Application of MBD to Development of ECU Prototype for EPS KOBAYASHI Masayuki 1 Introduction Conventionally, most of the embedded control systems have been developed, using a document-based

More information

AUTOMATIC INJECTION MOULDING BY USING PLC s

AUTOMATIC INJECTION MOULDING BY USING PLC s AUTOMATIC INJECTION MOULDING BY USING PLC s 1 VEERANJANEYULU ITHA, 2 MOHAMMED IRFAAN, 3 VAJRALA VENKATA REDDY 1 Assistant professor in Adama Science and Technology University, Ethiopia, Email: anjimech@gmail.com

More information

GEARING FACTORS. The A FLEXIBLE SIZING APPROACH

GEARING FACTORS. The A FLEXIBLE SIZING APPROACH GEARING FACTORS The A FLEXIBLE SIZING APPROACH MB Duration (Months) DERIVING GEARING FACTORS Determining the scope of a proposed system is one of the most challenging aspects of any software estimate.

More information

Casting Simulations with STAR-Cast. Julian Gänz, CD-adapco

Casting Simulations with STAR-Cast. Julian Gänz, CD-adapco Casting Simulations with STAR-Cast Julian Gänz, CD-adapco Need for Casting Simulation Processes Permanent Mold Market Overview [Mio tons] Tilt Casting Low Pressure-Casting High Pressure Die 9 19,4 13,6

More information

Optimization of Plastic Injection Molding Process by Combination of Artificial Neural Network and Genetic Algorithm

Optimization of Plastic Injection Molding Process by Combination of Artificial Neural Network and Genetic Algorithm Journal of Optimization in Industrial Engineering 13 (2013) 49-54 Optimization of Plastic Injection Molding Process by Combination of Artificial Neural Network and Genetic Algorithm Mohammad Saleh Meiabadi

More information

CHAPTER - 1 INTRODUCTION

CHAPTER - 1 INTRODUCTION CHAPTER - 1 INTRODUCTION 1. 1.1 Polymer Matrix Composites Composite materials are formed by combining two or more materials that have different properties. The constituent materials work together to give

More information

INFLUENCE OF MOLD PROPERTIES ON THE QUALITY OF INJECTION MOLDED PARTS

INFLUENCE OF MOLD PROPERTIES ON THE QUALITY OF INJECTION MOLDED PARTS PERIODICA POLYTECHNICA SER. MECH. ENG. VOL. 49, NO. 2, PP. 115 122 (2005) INFLUENCE OF MOLD PROPERTIES ON THE QUALITY OF INJECTION MOLDED PARTS József Gábor KOVÁCS and Tibor BERCSEY Faculty of Mechanical

More information