AUTOMATIC CREATION OF SIMULATION MODELS FOR FLOW ASSEMBLY LINES

Size: px
Start display at page:

Download "AUTOMATIC CREATION OF SIMULATION MODELS FOR FLOW ASSEMBLY LINES"

Transcription

1 AUTOMATIC CREATION OF SIMULATION MODELS FOR FLOW ASSEMBLY LINES João Weinholtz, Rui Loureiro, Carlos Cardeira, João M. Sousa Instituto Superior Técnico, Technical University of Lisbon Dept. of Mechanical Engineering, GCAR - IDMEC Av. Rovisco Pais, Lisboa, Portugal [email protected], {carlos.cardeira, jmsousa}@ist.utl.pt Bombardier Transportation Portugal, SA Rua Vice-Almirante Azevedo Coutinho, nº 1, Amadora, Portugal [email protected] Abstract: This paper presents a new software tool for automatic creation of simulation models for flow lines. The tool was developed in a general way. The tool was applied to the production flow line at the rolling stock Company Bombardier Transportation Portugal, SA, in Amadora, in order to develop its simulation model. Information regarding manufacturing philosophies, flow assembly lines, production scheduling, and software tools for the model creation are required to perform this task. The paper mainly focuses on the model creation process and the productivity gains generated by this work. Keywords: Process simulators, production systems, scheduling, simulation. 1. INTRODUCTION Recent manufacturing philosophies have been centered in marketing, logistics, production or materials. New manufacturing philosophies points to production as the central area of the manufacturing process. Note that production is supported by many other service functions in order to timely deliver high-quality, low-cost, functional products to customers, see Pinedo (2002). The major concerns of the order/project management are then process organization, resource optimization and throughput time reduction according to vision and objectives of the company. The dynamic strategies of corporations, especially the ones that have to deal with long lead-time products, are dealing with a strong increase of management complexity, since processes and information must be adjusted quickly and consistently. Currently, these adjustments to changes have not been done in an efficient way; the costs of changes are usually high. Therefore, the low adaptation of enterprises to the constraints of the market resources is not allowing the optimization of processes and is increasing production costs. Several software solutions are commercially available to this optimization, but they normally are focused on the sequence generation and/or line balancing, disregarding the optimization of production processes and the dynamism of the companies. However, to the best of our knowledge, software tools to create models to simulate flow assembly lines are not readily available. Due to the high costs associated with the revision of a manufacturing process (a methods team would spend weeks or months to redesign a running process and the double of the time to issue all required documentation) process optimization is only verified once in the initial phase of layout design and aggregate documentation. Thus, the optimization process is done by local subprocess improvement with the goal of reducing the execution time of individual tasks, ignoring completely the dynamic philosophies linked with company main lines. In order to achieve optimized solutions at reduced cost, it is imperative to develop algorithms to be implemented in some standard software. This paper presents the development of software tools to simulate and optimize flow assembly lines. The presented tool allows the inclusion of methods staff expertise. This know-how allows a fast dynamic reconfiguration of the assembly scheduling, a fast response to shortages in assembly line or equipment

2 malfunctions and an efficient adaptation to changes in the company objectives. The study of flow production lines is a very complex task due mainly to the huge number of variables to handle (Pinedo and Chao, 1999). The developed work started by analyzing an existing production line. A deep and continuous communication with the methods team was required for acquiring data and learning in detail the implementation of the production line. The key point in a flow assembly line is the production schedule. The scheduling solutions for production were optimized based on standard techniques, namely the Shifting Bottleneck Heuristic (Pinedo, 2002). These solutions were developed recurring to the software MatLab. The obtained scheduling is stored in a database and becomes the input necessary for the model creation. These data are translated to Arena using Visual Basic, to simulate, validate and test the obtained production simulation models. Note that the work is general enough, such that the developed models can simulate different types of large-scale products, such as rolling stock material, planes or armored vehicles. Classically, simulations models are built to represent the reality. As so, the ideal model should allow the simulation of unforeseen difficulties and adapt itself to new environments. A simulation, beyond representing the reality, can also be used to study the model responses to chosen sequences of events. The main goals of the developed work were then to obtain a solution for the scheduling problem and to define the risk of the solutions found. To achieve these objectives the following steps were performed: 1. Analysis of flow assembly lines and identification of their constraints. 2. Definition of a data structure to store the production schedule for simulation purposes. 3. Development of a software tool for automatic creation of simulation models of a given production schedule. 4. Application to the flow assembly line of the train manufacturing process implemented at Bombardier Transportation SA Amadora. 5. Analysis of obtained results. This article is organized as follows. Section 2 presents some software simulation tools and the reasons to choose a special one. Section 3 describes the characteristics of the developed software tool, presenting both the objects of the tool and the flow assembly lines specifications and special characteristics. The detailed description of the developed software tool and the justification for some options that were made are presented in Section 4. A case study and its production scheduling are described in section 5, and some conclusions are drawn in section SOFTWARE SIMULATION TOOLS The simulation of industrial assembly lines has been done by different methodologies, especially by those that are computer aided. Different software tools can be found for discrete or continuous event systems exist. Due to the industrial focus of simulation software houses, some difficulties arise in finding information about the features of commercial available tools. Hssain (2000) presents some solutions to flux simulation. Moreover, there are different software simulation and scheduling tools available like Arena (Kelton et al., 2003), Witness, Automod, Asprova, or Jobboss, for which their features were summarily studied. Russo and Vicente (2003) performed a comparative study of those software tools based on learning easiness, process adaptation, graphic features and cost aspects, using a decreasing A to D classification, as presented in Table 1. Table 1: Software tools comparison learning easiness process adaptation continuos process graphic features cost ARENA D A C A C AUTOMOD C A C A D EXTEND B B A B A PROMODEL B B D B D SIMPLE ++ C C D C E TAYLOR B C D B B WITNESS C A C B D The characteristics that are more relevant for the presented work are process adaptation and the visualization facility translated in the graphic features. By observing Table 1, it is easily concluded that both Arena and Automod are suitable to the simulation purposes of this paper. As Arena is less expensive, and moreover a license under special conditions for research and development was possible to be bought, it was the software chosen for simulation of the production line. 3. CHARACTERISTICS OF THE SOFTWARE TOOL This section presents the description of the basic features, in terms of functional characteristics to allow the development of simulation models.

3 3.1 Objects of the software tool The objects of the software development tool are the following. Entities are the dynamic objects for simulation. They can be created, used through the system and deleted when they no longer necessary for the simulation. They are abstract representations of the objects to be processed in the system. Attributes are each characteristic of an entity. An entity can contain several different characteristics at same time. Variables are defined as global for a specific system, and have read/write access by all the entities. Resources represent any need, such as a worker, a machine, etc. of a task. The resources have limited capacity, can be used in any section of the model and can be used by any entity. Queues are entities that request a resource in use by other entity. The entities must wait in the queue until the resource is released. Arena Macros Visual Basic Automatic creation of simulation model Macros Fig. 1: Creation of the simulation model. In order to build a simulation model automatically it is necessary to make the connection between a production schedule using the Shifting Bottleneck Heuristic (stored in Excel) and Arena. The communication is established using a Visual Basic program, which receives the necessary information and creates the simulation of the production line in Arena. 3.2 Specifications and special characteristics During the process analysis important constraints were taken into account: Working stations, which are the physical places, were a sequence of tasks is executed, may share resources. Tasks may have predecessors. Assembly lines have the ability to produce vehicles of different types. Different tasks can be executed simultaneously in the same working station, but at different locations. Task assembly times follow a probabilistic distribution. Task times can have large variations. These specifications were all implemented in the software tool to create simulation tools. It should be stressed that he cooperation of workers and production experts was fundamental for the determination of the characteristics of the assembly line and their respective constraints. 4. SOFTWARE TOOL FOR MODEL CREATION The software tool developed for the simulation of production lines is at the moment implemented for Flexible Flow Shop configurations (Pinedo, 2002). Any production schedule can be modeled and simulated by Arena using the developed tool. The model manages all the existing resources and tasks, creating sequences and attributes characteristics to them. Each task can be described as independent, i.e., it does not need to follow a sequence, and can be part of different sequences. Several variables must be created, namely: vehicle type, vehicle type comparison, station occupation control and task execution identification. The software tool also creates the processing models described next. 4.1 Entity creation Each entity represents a vehicle, which receives all tasks and resources required, and transport them until the end of the manufacturing process. The entity must follow the tasks defined in the production schedule, which are accomplished in the given station. At any instant the entity must contain the work in progress of the process. This module determines also the first stations of the routing to be followed by the entity, holding it in case the destination station is not free. An example of the Arena aspect of an entity is given in Fig. 2. Car Selection Car Attributes Fig. 2: Entity creation and routing indication.

4 4.2 Start of an assembly station Assembly stations are independent amongst them. These stations transform the arriving entity and process it. The entity type is verified and routed to the task sequence defined for the station. The number of teams and its location in the station are defined and included into the entity. Also task works are attributed to the entity. The assembly station can receive different kinds of entities and processes them sequentially. An example of an assembly station is given in Fig. 3. Car Selection Human resources and task definitions This module is used to aggregate all assembled parts of the product in just one entity that represents all work in process incorporated in the tasks processed before. This last entity is then routed to the end of the module, where is retained until the next station is available to receive it. Transport of entities between stations is made by a single resource. If the transportation means are not available, the entity remains at the end of the station waiting for its availability. Each closing assembly station can concatenate up to 25 teams (processes) into one single entity. This number is considered enough to aggregate all cars in the formation of a tram, e.g. the Eurostar is a ten car formation tram. Is also in this module that some statistical data can be stored for later analysis. An example is given in Fig. 5. Car Tasks A WIP aggregation Car Tasks B Fig. 3: Example of an assembly station with different types of entities to process. 4.3 Tasks The objective of a task is to use the respective resources taking a certain time according to its requirements. Some tasks may be dependent of others (precedents) to be initialized. Only the precedent tasks processed in the same station are verified before the initialization of a task, because the tasks on the preceding stations are already concluded. When an entity arrives at a certain task, the availability of resources must be verified. If the resources are not available, the entity is retained until they are at disposal. The resources are retained by that task during a certain time, and are released when this time elapses. After the task conclusion, the entity is routed to the next task or to the end of the station. The task formation in Arena is shown in Fig. 4. Fig. 5: Example of a closing assembly station module concatenating 2 teams. 4.5 End module After an entity had passed through all assembly stations it is routed to the end module (were its throughput time is computed) and disposed, see Fig. 6. Fig. 6: Process ending module. Fig. 4: Task formation. 4.4 Closing of the assembly station When an assembly station is closing, the leaving entities represent an assembled product or part of it. 5. CASE STUDY In this paper, the case study for software validation is the production line of rolling stock vehicles of the CP2000 type, manufactured at Bombardier Transportation Portugal SA, Amadora. The flow assembly line is producing a train of four different vehicles, as shown in Fig. 8.

5 A bottleneck is found in workstation 630 due to the tightness tests. 5.3 Working locations Fig. 8: The CP2000 train formation. 5.1 The CP2000 assembly line The assembly line is unique and processes all vehicles simultaneously at the same bit-rate. Each vehicle has its own assembly tasks but the assembly line responds well to the different solicitations. Eight workstations, with four locations each, form the flow assembly line to built the train, see Fig. 9. The team working locations vary depending on the workstation. Teams can have 1, 2 or 4 workers each. Working locations by station are determined according the following rules: Vehicle interior o Salon Max 2 teams of 2 workers o Cab (EA, EB) Max 1 team of 1 worker Vehicle exterior o Lateral Max 2 teams of 2 workers o Roof Max 2 teams of 2 workers o Under floor Max 2 teams of 2 workers The majority of working stations have three up to four teams (six up to eight workers) at a time. On Cab only one worker is allowed. Pré-Montagem Bogies Estação 620 Estação 625 Pré-Montagem Entrada 5.4 Production schedule Saída Fluxo de Trabalho Estação 650 Estação 630 Ensaio estanqueidade EA IA IB EB Estação 640 Fig. 9: Assembly line implemented. The development of the production schedule for this assembly line is a time consuming and difficult task since it is necessary to conciliate constraints and minimize resources, while a balance of works is required to reduce the idle time and cost of the process. Experts make this task manually with the know-how acquired in past projects and constant revision of the tasks. 5.2 Sequence of workstations The assembly line is composed by five workstations (numbered 620, 625, 630, 640 and 650) and the station 640 is divided into four independent stations. The workstation 650 does the concatenation of the four vehicles for train formation. The sequence of workstations is presented in Fig. 10. An Excel file containing the sheets: tasks; resources and scheduling stores the production schedule to which the simulation model is intended. The first sheet relates to the list of executable tasks, the second to the list of existing resources and the third to the list of the schedule planning to simulate. The database must follow a fixed format and must have the configuration shown in Fig. 11. Station 620 All vehicles Bit Rate 3 days Station 625 All vehicles Bit Rate 3 days Station 630 All vehicles Assembly tasks Duration 2 days Tightness test Duration 1 days Bit Rate 3 days Station 640 (1) Vehicles EB Station 640 (2) Vehicles IB Station 640 (3) Vehicles IA Station 640 (4) Vehicles EA Station 650 Vehicle concatenation EA Fig. 10: Sequence of working stations. Fig. 11: Production scheduling data sheets example.

6 5.5 Simulation The database is read by Arena, using the Visual Basic program to communicate between software. The created model is then simulated by Arena. First, possible scheduling errors are checked. If no errors are detected, Arena runs the simulation model. Utilizacao do(s) Recurso(s) ao longo do tempo Mec 16.rdat Mec 18.rdat Tempo (em Unidades de Tempo) Fig. 15: Comparison between the usages of two different resources. Idle time and tasks performed by the resources are shown. Fig. 12: Probability distribution for the through put time of the process studied The simulation produces a report that stores important information about the process. A MatLab program called Analyzer was developed to analyze the data stored during model creation, to identify delays due to predecessors and shared resources, to identify the critical path, to determine the confidence intervals and to identify the minimum resources needed. Figures 13, 14 and 15 present some results produced by Analyzer. The methodology proposed in this paper was compared to the methodology actually used in the factory. The software tool was able to reduce the production of a new schedule from 45 days using a manual solution to 8 hours. Also some scheduling errors in the implemented solution at Bombardier were found. The study shown that the major constraint of the process, i.e. the limitation to 5% of extra time to fulfill all tasks within the bit rate of 3 days (24 hours), can easily be achieved by small adjustments in the production schedule. 6. CONCLUSION This paper presents the development of a software tool to create simulation models of flow assembly lines. One example of a very complex model, the production line of rolling stock vehicles, showed the powerful capabilities of the tool, which is able to simulate a wide variety of assembly lines. Fig. 13: Statistical analysis for the throughput time of the studied process. The intention of this paper was to briefly discuss the simulation model creation process. The development process was not shown in detail, as it can be consulted in (Russo and Vicente, 2003). Future work will deal with other scheduling methods based on soft computing methods. REFERENCES Fig. 14: Confidence interval for the throughput time of the process studied. Hssain, A., (2000). Optimisation des Flux de Production. Methodes et Simulation, Éditions Dunod, Paris. Russo, J., Vicente R., (2003). Análise e Simulação de uma Linha de Montagem, Technical Report GCAR Lisboa, Portugal. Kelton, W., R. Sadowski, D. Sturrock (2003). Simulation with Arena, McGraw-Hill. Pinedo, M. (2002). Scheduling: Theory, Algorithms, and Systems, 2 nd Edition, Prentice Hall. Pinedo, M. and X. Chao (1999). Operations Scheduling with Applications in Manufacturing and Services, Irwin/McGraw Hill.

PROCESS FLOW IMPROVEMENT PROPOSAL OF A BATCH MANUFACTURING SYSTEM USING ARENA SIMULATION MODELING

PROCESS FLOW IMPROVEMENT PROPOSAL OF A BATCH MANUFACTURING SYSTEM USING ARENA SIMULATION MODELING PROCESS FLOW IMPROVEMENT PROPOSAL OF A BATCH MANUFACTURING SYSTEM USING ARENA SIMULATION MODELING Chowdury M. L. RAHMAN 1 Shafayet Ullah SABUJ 2 Abstract: Simulation is frequently the technique of choice

More information

The problem with waiting time

The problem with waiting time The problem with waiting time Why the only way to real optimization of any process requires discrete event simulation Bill Nordgren, MS CIM, FlexSim Software Products Over the years there have been many

More information

Priori ty ... ... ...

Priori ty ... ... ... .Maintenance Scheduling Maintenance scheduling is the process by which jobs are matched with resources (crafts) and sequenced to be executed at certain points in time. The maintenance schedule can be prepared

More information

NEW MODELS FOR PRODUCTION SIMULATION AND VALIDATION USING ARENA SOFTWARE

NEW MODELS FOR PRODUCTION SIMULATION AND VALIDATION USING ARENA SOFTWARE NEW MODELS FOR PRODUCTION SIMULATION AND VALIDATION USING ARENA SOFTWARE Marinela INŢĂ 1 and Achim MUNTEAN 1 ABSTRACT: Currently, Lean Manufacturing is a recognized topic in many research fields, which

More information

- 1 - intelligence. showing the layout, and products moving around on the screen during simulation

- 1 - intelligence. showing the layout, and products moving around on the screen during simulation - 1 - LIST OF SYMBOLS, TERMS AND EXPRESSIONS This list of symbols, terms and expressions gives an explanation or definition of how they are used in this thesis. Most of them are defined in the references

More information

Chapter 11. MRP and JIT

Chapter 11. MRP and JIT Chapter 11 MRP and JIT (Material Resources Planning and Just In Time) 11.1. MRP Even if MRP can be applied among several production environments, it has been chosen here as a preferential tool for the

More information

Simulation Software 1

Simulation Software 1 Simulation Software 1 Introduction The features that should be programmed in simulation are: Generating random numbers from the uniform distribution Generating random variates from any distribution Advancing

More information

AN INDUSTRIAL APPLICATION OF THE SMED METHODOLOGY AND OTHER LEAN PRODUCTION TOOLS

AN INDUSTRIAL APPLICATION OF THE SMED METHODOLOGY AND OTHER LEAN PRODUCTION TOOLS Integrity, Reliability and Failure of Mechanical Systems Paper Ref: 3927 AN INDUSTRIAL APPLICATION OF THE SMED METHODOLOGY AND OTHER LEAN PRODUCTION TOOLS Eric Costa 1(*), Rui Sousa 1, Sara Bragança 1,

More information

Elevator Simulation and Scheduling: Automated Guided Vehicles in a Hospital

Elevator Simulation and Scheduling: Automated Guided Vehicles in a Hospital Elevator Simulation and Scheduling: Automated Guided Vehicles in a Hospital Johan M. M. van Rooij Guest Lecture Utrecht University, 31-03-2015 from x to u The speaker 2 Johan van Rooij - 2011 current:

More information

Determining Inventory Levels in a CONWIP Controlled Job Shop

Determining Inventory Levels in a CONWIP Controlled Job Shop Determining Inventory Levels in a CONWIP Controlled Job Shop Sarah M. Ryan* Senior Member, IIE Department of Industrial and Management Systems Engineering University of Nebraska-Lincoln Lincoln, NE 68588-0518

More information

Design and Analysis of Automobiles Manufacturing System Based on Simulation Model

Design and Analysis of Automobiles Manufacturing System Based on Simulation Model Design and Analysis of Automobiles Manufacturing System Based on Simulation Model Razman Bin Mat Tahar & Ali Asghar J.Adham Faculty of Technology Management, University Malaysia Pahang, Kuantan 26300,

More information

Assembly line balancing to minimize balancing loss and system loss. D. Roy 1 ; D. Khan 2

Assembly line balancing to minimize balancing loss and system loss. D. Roy 1 ; D. Khan 2 J. Ind. Eng. Int., 6 (11), 1-, Spring 2010 ISSN: 173-702 IAU, South Tehran Branch Assembly line balancing to minimize balancing loss and system loss D. Roy 1 ; D. han 2 1 Professor, Dep. of Business Administration,

More information

CHAPTER 1. Basic Concepts on Planning and Scheduling

CHAPTER 1. Basic Concepts on Planning and Scheduling CHAPTER 1 Basic Concepts on Planning and Scheduling Scheduling, FEUP/PRODEI /MIEIC 1 Planning and Scheduling: Processes of Decision Making regarding the selection and ordering of activities as well as

More information

Introduction to Systems Analysis and Design

Introduction to Systems Analysis and Design Introduction to Systems Analysis and Design What is a System? A system is a set of interrelated components that function together to achieve a common goal. The components of a system are called subsystems.

More information

Introduction. Continue to Step 1: Creating a Process Simulator Model. Goal: 40 units/week of new component. Process Simulator Tutorial

Introduction. Continue to Step 1: Creating a Process Simulator Model. Goal: 40 units/week of new component. Process Simulator Tutorial Introduction This tutorial places you in the position of a process manager for a specialty electronics manufacturing firm that makes small lots of prototype boards for medical device manufacturers. Your

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

MODERN METHODS FOR MANUFACTURING PLANNING AND SCHEDULING

MODERN METHODS FOR MANUFACTURING PLANNING AND SCHEDULING MODERN METHODS FOR MANUFACTURING PLANNING AND SCHEDULING IVANA SIMEONOVOVA 1, ALEKSANDAR GYUROV 2, SIMEON SIMEONOV1 1 Brno University of Technology, Faculty of Mechanical Engineering 2 Technical University

More information

1 st year / 2014-2015/ Principles of Industrial Eng. Chapter -3 -/ Dr. May G. Kassir. Chapter Three

1 st year / 2014-2015/ Principles of Industrial Eng. Chapter -3 -/ Dr. May G. Kassir. Chapter Three Chapter Three Scheduling, Sequencing and Dispatching 3-1- SCHEDULING Scheduling can be defined as prescribing of when and where each operation necessary to manufacture the product is to be performed. It

More information

High-Mix Low-Volume Flow Shop Manufacturing System Scheduling

High-Mix Low-Volume Flow Shop Manufacturing System Scheduling Proceedings of the 14th IAC Symposium on Information Control Problems in Manufacturing, May 23-25, 2012 High-Mix Low-Volume low Shop Manufacturing System Scheduling Juraj Svancara, Zdenka Kralova Institute

More information

Simulation Software: Practical guidelines for approaching the selection process

Simulation Software: Practical guidelines for approaching the selection process Practical guidelines for approaching the selection process Randall R. Gibson, Principal / Vice President Craig Dickson, Senior Analyst TranSystems I Automation Associates, Inc. Challenge Selecting from

More information

Justifying Simulation. Why use simulation? Accurate Depiction of Reality. Insightful system evaluations

Justifying Simulation. Why use simulation? Accurate Depiction of Reality. Insightful system evaluations Why use simulation? Accurate Depiction of Reality Anyone can perform a simple analysis manually. However, as the complexity of the analysis increases, so does the need to employ computer-based tools. While

More information

From Big Data to Smart Data How to improve public transport through modelling and simulation.

From Big Data to Smart Data How to improve public transport through modelling and simulation. From Big Data to Smart Data How to improve public transport through modelling and simulation. Dr. Alex Erath, Pieter Fourie, Sergio Ordó ~ nez, Artem Chakirov FCL Research Module: Mobility and Transportation

More information

PERFORMANCE ANALYSIS OF AN AUTOMATED PRODUCTION SYSTEM WITH QUEUE LENGTH DEPENDENT SERVICE RATES

PERFORMANCE ANALYSIS OF AN AUTOMATED PRODUCTION SYSTEM WITH QUEUE LENGTH DEPENDENT SERVICE RATES ISSN 1726-4529 Int j simul model 9 (2010) 4, 184-194 Original scientific paper PERFORMANCE ANALYSIS OF AN AUTOMATED PRODUCTION SYSTEM WITH QUEUE LENGTH DEPENDENT SERVICE RATES Al-Hawari, T. * ; Aqlan,

More information

There are a number of factors that increase the risk of performance problems in complex computer and software systems, such as e-commerce systems.

There are a number of factors that increase the risk of performance problems in complex computer and software systems, such as e-commerce systems. ASSURING PERFORMANCE IN E-COMMERCE SYSTEMS Dr. John Murphy Abstract Performance Assurance is a methodology that, when applied during the design and development cycle, will greatly increase the chances

More information

QUEST The Systems Integration, Process Flow Design and Visualization Solution

QUEST The Systems Integration, Process Flow Design and Visualization Solution Resource Modeling & Simulation DELMIA QUEST The Systems Integration, Process Flow Design and Visualization Solution DELMIA QUEST The Systems Integration, Process Flow Design and Visualization Solution

More information

HSR HOCHSCHULE FÜR TECHNIK RA PPERSW I L

HSR HOCHSCHULE FÜR TECHNIK RA PPERSW I L 1 An Introduction into Modelling and Simulation Prof. Dr.-Ing. Andreas Rinkel af&e [email protected] Tel.: +41 (0) 55 2224928 Mobil: +41 (0) 79 3320562 Goal After the whole lecture you: will have an

More information

Software engineering used in simulation of Flexible Manufacturing Systems

Software engineering used in simulation of Flexible Manufacturing Systems Software engineering used in simulation of Flexible Manufacturing Systems FOTA ADRIANA, BARABAS SORIN Faculty of Technological Engineering and Industrial Management Transilvania University of Brasov 29,

More information

Publishing Process. An idea, an outline or a manuscript for a book can enter into a publishing house in a number of ways:

Publishing Process. An idea, an outline or a manuscript for a book can enter into a publishing house in a number of ways: Manuscript Submission Manuscript original text of a book. An idea, an outline or a manuscript for a book can enter into a publishing house in a number of ways: 1) Solicited submitted to a specific editor

More information

IFS-8000 V2.0 INFORMATION FUSION SYSTEM

IFS-8000 V2.0 INFORMATION FUSION SYSTEM IFS-8000 V2.0 INFORMATION FUSION SYSTEM IFS-8000 V2.0 Overview IFS-8000 v2.0 is a flexible, scalable and modular IT system to support the processes of aggregation of information from intercepts to intelligence

More information

pm4dev, 2015 management for development series Project Schedule Management PROJECT MANAGEMENT FOR DEVELOPMENT ORGANIZATIONS

pm4dev, 2015 management for development series Project Schedule Management PROJECT MANAGEMENT FOR DEVELOPMENT ORGANIZATIONS pm4dev, 2015 management for development series Project Schedule Management PROJECT MANAGEMENT FOR DEVELOPMENT ORGANIZATIONS PROJECT MANAGEMENT FOR DEVELOPMENT ORGANIZATIONS A methodology to manage development

More information

HMLV Manufacturing Systems Simulation Analysis Using the Database Interface

HMLV Manufacturing Systems Simulation Analysis Using the Database Interface HMLV Manufacturing Systems Simulation Analysis Using the Database Interface JURAJ ŠVANČARA Faculty of Electrical Engineering and Information Technology Slovak University of Technology in Bratislava Ilkovicova

More information

Analysis Of Shoe Manufacturing Factory By Simulation Of Production Processes

Analysis Of Shoe Manufacturing Factory By Simulation Of Production Processes Analysis Of Shoe Manufacturing Factory By Simulation Of Production Processes Muhammed Selman ERYILMAZ a Ali Osman KUŞAKCI b Haris GAVRANOVIC c Fehim FINDIK d a Graduate of Department of Industrial Engineering,

More information

Windows Server Performance Monitoring

Windows Server Performance Monitoring Spot server problems before they are noticed The system s really slow today! How often have you heard that? Finding the solution isn t so easy. The obvious questions to ask are why is it running slowly

More information

Modeling Stochastic Inventory Policy with Simulation

Modeling Stochastic Inventory Policy with Simulation Modeling Stochastic Inventory Policy with Simulation 1 Modeling Stochastic Inventory Policy with Simulation János BENKŐ Department of Material Handling and Logistics, Institute of Engineering Management

More information

Process Data: a Means to Measure Operational Performance and Implement Advanced Analytical Models

Process Data: a Means to Measure Operational Performance and Implement Advanced Analytical Models Process Data: a Means to Measure Operational Performance and Implement Advanced Analytical Models Pablo SANTIBAÑEZ a,1 Vincent S CHOW a John FRENCH a Martin L PUTERMAN b Scott TYLDESLEY a a British Columbia

More information

jobs that obey the norms must ensure the load balancing qualities. Load balancing should be interpreted as releasing a balanced mix of jobs to the

jobs that obey the norms must ensure the load balancing qualities. Load balancing should be interpreted as releasing a balanced mix of jobs to the Summary The term job shops is used to indicate companies that produce customer-specific components in small batches. Jobs (production orders) in a job shop are characterised by a large variety of routings

More information

Using Simulation to Understand and Optimize a Lean Service Process

Using Simulation to Understand and Optimize a Lean Service Process Using Simulation to Understand and Optimize a Lean Service Process Kumar Venkat Surya Technologies, Inc. 4888 NW Bethany Blvd., Suite K5, #191 Portland, OR 97229 [email protected] Wayne W. Wakeland

More information

Innovative Analysis of a CRM Database using Online Analytical Processing (OLAP) Technique in Value Chain Management Approach

Innovative Analysis of a CRM Database using Online Analytical Processing (OLAP) Technique in Value Chain Management Approach Innovative Analysis of a CRM Database using Online Analytical Processing (OLAP) Technique in Value Chain Management Approach ADRIAN MICU, ANGELA-ELIZA MICU, ALEXANDRU CAPATINA Faculty of Economics, Dunărea

More information

CONSTRUCTION PROJECT BUFFER MANAGEMENT IN SCHEDULING PLANNING AND CONTROL

CONSTRUCTION PROJECT BUFFER MANAGEMENT IN SCHEDULING PLANNING AND CONTROL CONSTRUCTION PROJECT BUFFER MANAGEMENT IN SCHEDULING PLANNING AND CONTROL Jan, Shu-Hui Ph.D. Student Construction Engineering & Management Program Department of Civil Engineering National Taiwan University

More information

Arena 9.0 Basic Modules based on Arena Online Help

Arena 9.0 Basic Modules based on Arena Online Help Arena 9.0 Basic Modules based on Arena Online Help Create This module is intended as the starting point for entities in a simulation model. Entities are created using a schedule or based on a time between

More information

NEW CHALLENGES IN COLLABORATIVE VIRTUAL FACTORY DESIGN

NEW CHALLENGES IN COLLABORATIVE VIRTUAL FACTORY DESIGN 02 NEW CHALLENGES IN COLLABORATIVE VIRTUAL FACTORY DESIGN Stefano Mottura, Giampaolo Viganò, Luca Greci, Marco Sacco Emanuele Carpanzano Institute of Industrial Technologies and Automation National Research

More information

Business Process Management of Telecommunication Companies: Fulfillment and Operations Support and Readiness Cases

Business Process Management of Telecommunication Companies: Fulfillment and Operations Support and Readiness Cases Business Process of Telecommunication Companies: Fulfillment and Operations Support and Readiness Cases Byeong-Yun Chang School of Business Administration, Ajou University [email protected] Abstract In

More information

The Thinking Approach LEAN CONCEPTS. 2012-2013, IL Holdings, LLC All rights reserved 1

The Thinking Approach LEAN CONCEPTS. 2012-2013, IL Holdings, LLC All rights reserved 1 The Thinking Approach LEAN CONCEPTS All rights reserved 1 Basic Thinking to Manage the Journey MANAGEMENT TACTICS OF A LEAN TRANSFORMATION All rights reserved 2 LEAN MANAGEMENT Two key questions What is

More information

Solutions to Optimize Your Supply Chain Operations

Solutions to Optimize Your Supply Chain Operations Solutions to Optimize Your Supply Chain Operations Executive Summary Strategic optimization of your end-to-end supply chain produces significant savings and improves your operational service levels. Effecting

More information

KNOWLEDGE-BASED MODELING OF DISCRETE-EVENT SIMULATION SYSTEMS. Henk de Swaan Arons

KNOWLEDGE-BASED MODELING OF DISCRETE-EVENT SIMULATION SYSTEMS. Henk de Swaan Arons KNOWLEDGE-BASED MODELING OF DISCRETE-EVENT SIMULATION SYSTEMS Henk de Swaan Arons Erasmus University Rotterdam Faculty of Economics, ment of Computer Science P.O. Box 1738, H9-28 3000 DR Rotterdam, The

More information

Research of Railway Wagon Flow Forecast System Based on Hadoop-Hazelcast

Research of Railway Wagon Flow Forecast System Based on Hadoop-Hazelcast International Conference on Civil, Transportation and Environment (ICCTE 2016) Research of Railway Wagon Flow Forecast System Based on Hadoop-Hazelcast Xiaodong Zhang1, a, Baotian Dong1, b, Weijia Zhang2,

More information

Lawrence S. Farey. 193 S.W. Seminole Drive Aloha, OR 97006

Lawrence S. Farey. 193 S.W. Seminole Drive Aloha, OR 97006 Proceedings of the 1996 Winter Simulation Conference. ed. J. 1\1. Charnes, D. J. l\iorrice, D. T. Brunner, and J. J. S,valfl TRWITED ACCELEROMETER WAFER PROCESS PRODUCTION FACILITY: MANUFACTURING SIM:ULATION

More information

15. How would you show your understanding of the term system perspective? BTL 3

15. How would you show your understanding of the term system perspective? BTL 3 Year and Semester FIRST YEAR II SEMESTER (EVEN) Subject Code and Name BA7201 OPERATIONS MANAGEMENT Faculty Name 1) Mrs.L.SUJATHA ASST.PROF (S.G) 2) Mr. K.GURU ASST.PROF (OG) Q.No Unit I Part A BT Level

More information

Assembly Line Balancing in a Clothing Company

Assembly Line Balancing in a Clothing Company S. H.Eryuruk, F. Kalaoglu, *M. Baskak Textile Engineering Department, *Industrial Engineering Department, Istanbul Technical University Instanbul, Turkiye Assembly Line Balancing in a Clothing Company

More information

Acknowledgments. Luis Martínez

Acknowledgments. Luis Martínez INNOVATIVE TRANSPORT SERVICES FOR HIGH QUALITY MOBILITY IN SUSTAINABLE CITIES Acknowledgments Luis Martínez MIT Portugal SCUSSE Project (Smart Combination of passenger transport modes and services in Urban

More information

INTEGRATED OPTIMIZATION OF SAFETY STOCK

INTEGRATED OPTIMIZATION OF SAFETY STOCK INTEGRATED OPTIMIZATION OF SAFETY STOCK AND TRANSPORTATION CAPACITY Horst Tempelmeier Department of Production Management University of Cologne Albertus-Magnus-Platz D-50932 Koeln, Germany http://www.spw.uni-koeln.de/

More information

Basic Queuing Relationships

Basic Queuing Relationships Queueing Theory Basic Queuing Relationships Resident items Waiting items Residence time Single server Utilisation System Utilisation Little s formulae are the most important equation in queuing theory

More information

Efficient Scheduling Of On-line Services in Cloud Computing Based on Task Migration

Efficient Scheduling Of On-line Services in Cloud Computing Based on Task Migration Efficient Scheduling Of On-line Services in Cloud Computing Based on Task Migration 1 Harish H G, 2 Dr. R Girisha 1 PG Student, 2 Professor, Department of CSE, PESCE Mandya (An Autonomous Institution under

More information

International Journal of Industrial Engineering Computations

International Journal of Industrial Engineering Computations International Journal of Industrial Engineering Computations 2 (2011) 329 336 Contents lists available at GrowingScience International Journal of Industrial Engineering Computations homepage: www.growingscience.com/ijiec

More information

TRAFFIC LIGHT: A PEDAGOGICAL EXPLORATION

TRAFFIC LIGHT: A PEDAGOGICAL EXPLORATION TAFFIC LIGHT: A PEDAGOGICAL EXPLOATION THOUGH A DESIGN SPACE Viera K. Proulx. Jeff aab, ichard asala College of Computer Science Northeastern University Boston, MA 02115 617-373-2462 [email protected], [email protected],

More information

Modeling Agile Manufacturing Cell using Object-Oriented Timed Petri net

Modeling Agile Manufacturing Cell using Object-Oriented Timed Petri net Modeling Agile Manufacturing Cell using Object-Oriented Timed Petri net Peigen Li, Ke Shi, Jie Zhang Intelligent Manufacturing Lab School of Mechanical Science and Engineering Huazhong University of Science

More information

15-418 Final Project Report. Trading Platform Server

15-418 Final Project Report. Trading Platform Server 15-418 Final Project Report Yinghao Wang [email protected] May 8, 214 Trading Platform Server Executive Summary The final project will implement a trading platform server that provides back-end support

More information

SUPPLY CHAIN MODELING USING SIMULATION

SUPPLY CHAIN MODELING USING SIMULATION SUPPLY CHAIN MODELING USING SIMULATION 1 YOON CHANG AND 2 HARRIS MAKATSORIS 1 Institute for Manufacturing, University of Cambridge, Cambridge, CB2 1RX, UK 1 To whom correspondence should be addressed.

More information

Intelligent Process Management & Process Visualization. TAProViz 2014 workshop. Presenter: Dafna Levy

Intelligent Process Management & Process Visualization. TAProViz 2014 workshop. Presenter: Dafna Levy Intelligent Process Management & Process Visualization TAProViz 2014 workshop Presenter: Dafna Levy The Topics Process Visualization in Priority ERP Planning Execution BI analysis (Built-in) Discovering

More information

Introduction. Real World Planning. Planning with Time. Time 15/11/2012. COMP219: Artificial Intelligence. COMP219: Artificial Intelligence

Introduction. Real World Planning. Planning with Time. Time 15/11/2012. COMP219: Artificial Intelligence. COMP219: Artificial Intelligence COMP219: Artificial Intelligence COMP219: Artificial Intelligence Dr. Annabel Latham Room 2.05 Ashton Building Department of Computer Science University of Liverpool Lecture 26: Real World Planning: Scheduling

More information

Computer Integrated Manufacturing CIM A T I L I M U N I V E R S I T Y

Computer Integrated Manufacturing CIM A T I L I M U N I V E R S I T Y MFGE 404 Computer Integrated Manufacturing CIM A T I L I M U N I V E R S I T Y Manufacturing Engineering Department Lecture 1 - Introduction Dr. Saleh AMAITIK Fall 2005/2006 Production Systems Production

More information

SFWR 4C03: Computer Networks & Computer Security Jan 3-7, 2005. Lecturer: Kartik Krishnan Lecture 1-3

SFWR 4C03: Computer Networks & Computer Security Jan 3-7, 2005. Lecturer: Kartik Krishnan Lecture 1-3 SFWR 4C03: Computer Networks & Computer Security Jan 3-7, 2005 Lecturer: Kartik Krishnan Lecture 1-3 Communications and Computer Networks The fundamental purpose of a communication network is the exchange

More information

8. KNOWLEDGE BASED SYSTEMS IN MANUFACTURING SIMULATION

8. KNOWLEDGE BASED SYSTEMS IN MANUFACTURING SIMULATION - 1-8. KNOWLEDGE BASED SYSTEMS IN MANUFACTURING SIMULATION 8.1 Introduction 8.1.1 Summary introduction The first part of this section gives a brief overview of some of the different uses of expert systems

More information

Advanced Planning and Scheduling

Advanced Planning and Scheduling Taylor Scheduler Welcome! Taylor Scheduler is our advanced planning and production scheduling software. Its many features allow Taylor Scheduler to be able to handle just about any manufacturing scheduling

More information

DISCRETE AND CONTINUOUS SIMULATION OF MANUFACTURING PROCESSES

DISCRETE AND CONTINUOUS SIMULATION OF MANUFACTURING PROCESSES DISCRETE AND CONTINUOUS SIMULATION OF MANUFACTURING PROCESSES Abstract DISKRÉTNA A SPOJITÁ SIMULÁCIA VÝROBNÝCH PROCESOV Ing. Maroš Fill, prof. Ing. Gabriel Fedorko PhD. Technická univerzita v Košiciach

More information

Lean manufacturing and ERP: How to leverage ERP to get lean

Lean manufacturing and ERP: How to leverage ERP to get lean E-Book Lean manufacturing and ERP: How to leverage ERP to get lean A manufacturing firm adopting the principles of lean manufacturing can effectively leverage the company s ERP system during its transition

More information

IMPROVING PRODUCTIVITY USING STANDARD MATHEMATICAL PROGRAMMING SOFTWARE

IMPROVING PRODUCTIVITY USING STANDARD MATHEMATICAL PROGRAMMING SOFTWARE IMPROVING PRODUCTIVITY USING STANDARD MATHEMATICAL PROGRAMMING SOFTWARE $QWRQýLåPDQ 1, Samo Cerc 2, Andrej Pajenk 3 1 University of Maribor, Fakulty of Organizational Sciences.UDQM.LGULþHYDD(PDLODQWRQFL]PDQ#IRYXQLPEVL

More information

TEACHING SIMULATION WITH SPREADSHEETS

TEACHING SIMULATION WITH SPREADSHEETS TEACHING SIMULATION WITH SPREADSHEETS Jelena Pecherska and Yuri Merkuryev Deptartment of Modelling and Simulation Riga Technical University 1, Kalku Street, LV-1658 Riga, Latvia E-mail: [email protected],

More information

Personal Development Plan. For. Date

Personal Development Plan. For. Date Personal Development Plan For 1 Personal Development Plan This is the personal development plan for made on this the day of, 20. Life Purpose/Vision/Identity Statement Describe your high level vision Dreams

More information

Production Management for the Pulp and Paper Industry. Industrial IT Tools for Production Data Management

Production Management for the Pulp and Paper Industry. Industrial IT Tools for Production Data Management Production Management for the Pulp and Paper Industry Industrial IT Tools for Production Data Management Towards Optimum Mill Performance with Managing the production process Industrial IT Production Management

More information

Analysis of a production-inventory system with unreliable production facility

Analysis of a production-inventory system with unreliable production facility Analysis of a production-inventory system with unreliable production facility Katrien Ramaekers Gerrit K Janssens Transportation Research Institute Hasselt University - Campus Diepenbeek Wetenschapspark

More information

Seradex White Paper A newsletter for manufacturing organizations April, 2004

Seradex White Paper A newsletter for manufacturing organizations April, 2004 Seradex White Paper A newsletter for manufacturing organizations April, 2004 Using Project Management Software for Production Scheduling Frequently, we encounter organizations considering the use of project

More information

APPLICATION OF KANBAN SYSTEM FOR MANAGING INVENTORY

APPLICATION OF KANBAN SYSTEM FOR MANAGING INVENTORY Bulletin of the Transilvania University of Braşov Vol. 3 (52) - 2010 Series I: Engineering Sciences APPLICATION OF KANBAN SYSTEM FOR MANAGING INVENTORY M. APREUTESEI 1 I.R. ARVINTE 1 E. SUCIU 2 D. MUNTEANU

More information

SAP Configuration Management at Harley-Davidson Motor Company. 2013 SAP Product Configurator Info Day

SAP Configuration Management at Harley-Davidson Motor Company. 2013 SAP Product Configurator Info Day SAP Configuration Management at Harley-Davidson Motor Company 2013 SAP Product Configurator Info Day Introductions Richard Quinlan GPM, Master Data Management Laurie Schlenvogt Variant Configuration Lead

More information

Optimal Scheduling for Dependent Details Processing Using MS Excel Solver

Optimal Scheduling for Dependent Details Processing Using MS Excel Solver BULGARIAN ACADEMY OF SCIENCES CYBERNETICS AND INFORMATION TECHNOLOGIES Volume 8, No 2 Sofia 2008 Optimal Scheduling for Dependent Details Processing Using MS Excel Solver Daniela Borissova Institute of

More information

3 Traditional approach

3 Traditional approach The Unified Approach to Modeling of Software Project Management Processes Šárka Květoňová 1, Zdeněk Martínek 1 1 Dept. of Information Systems, Faculty of Information Technology, Brno University of Technology,

More information

Lean Implementation in a Low Volume Manufacturing Environment: a Case Study

Lean Implementation in a Low Volume Manufacturing Environment: a Case Study Proceedings of the 2010 Industrial Engineering Research Conference A. Johnson and J. Miller, eds. Lean Implementation in a Low Volume Manufacturing Environment: a Case Study Lucas Simmons, Robbie Holt,

More information

Offshore Wind Farm Layout Design A Systems Engineering Approach. B. J. Gribben, N. Williams, D. Ranford Frazer-Nash Consultancy

Offshore Wind Farm Layout Design A Systems Engineering Approach. B. J. Gribben, N. Williams, D. Ranford Frazer-Nash Consultancy Offshore Wind Farm Layout Design A Systems Engineering Approach B. J. Gribben, N. Williams, D. Ranford Frazer-Nash Consultancy 0 Paper presented at Ocean Power Fluid Machinery, October 2010 Offshore Wind

More information

Backward Scheduling An effective way of scheduling Warehouse activities

Backward Scheduling An effective way of scheduling Warehouse activities Backward Scheduling An effective way of scheduling Warehouse activities Traditionally, scheduling algorithms were used in capital intensive production processes where there was a need to optimize the production

More information

Re-balancing of Generalized Assembly Lines Searching Optimal Solutions for SALBP

Re-balancing of Generalized Assembly Lines Searching Optimal Solutions for SALBP Proceedings of the 2010 International Conference on Industrial Engineering and Operations Management Dhaka, Bangladesh, January 9 10, 2010 Re-balancing of Generalized Assembly Lines Searching Optimal Solutions

More information

Data Collection for Manufacturing

Data Collection for Manufacturing for Manufacturing G.S.D. Associates offers data collection expertise in the key applications that help our customers operate more efficiently and at lower cost: Work-In-Process (WIP) Tracking, Inventory

More information

Computer Training Centre University College Cork

Computer Training Centre University College Cork Computer Training Centre University College Cork Project 2013 Table of Contents What's new in Project 2013... 1 Manual scheduling... 1 Graphical Reports... 1 Trace task paths... 1 Easier view customization...

More information

PROCESS DATA VISUALIZATION AND MONITORING USING INTERNET

PROCESS DATA VISUALIZATION AND MONITORING USING INTERNET International Carpathian Control Conference ICCC 2002 MALENOVICE, CZECH REPUBLIC May 27-30, 2002 PROCESS DATA VISUALIZATION AND MONITORING USING INTERNET Lenka LANDRYOVÁ 1 and Jiří KOZIOREK 2 1 Department

More information

Consulting. Planning. Managing.

Consulting. Planning. Managing. Consulting. Planning. Managing. Your wishes meet our solutions Consulting Corporate success attaining goals through competence Dürr is a world leader in the construction and supply of plant and machinery.

More information

SIMULATION BASED APPROACH TO STUDY THE INTERACTION OF SCHEDULING AND ROUTING ON A LOGISTIC NETWORK

SIMULATION BASED APPROACH TO STUDY THE INTERACTION OF SCHEDULING AND ROUTING ON A LOGISTIC NETWORK SIMULATION BASED APPROACH TO STUDY THE INTERACTION OF SCHEDULING AND ROUTING ON A LOGISTIC NETWORK Alex J. Ruiz-Torres Department of Decision Sciences Florida Gulf Coast University 17595 S. Tamiami Trail,

More information

Alternative Job-Shop Scheduling For Proton Therapy

Alternative Job-Shop Scheduling For Proton Therapy Alternative Job-Shop Scheduling For Proton Therapy Cyrille Dejemeppe ICTEAM, Université Catholique de Louvain (UCLouvain), Belgium, [email protected] Director: Yves Deville (ICTEAM, UCLouvain)

More information