SINGLE MACHINE SEQUENCING. ISE480 Sequencing and Scheduling Fall semestre

Size: px
Start display at page:

Download "SINGLE MACHINE SEQUENCING. ISE480 Sequencing and Scheduling Fall semestre"

Transcription

1 SINGLE MACHINE SEQUENCING Fall semestre

2 INTRODUCTION The pure sequencing problem is a specialized scheduling problem in which an ordering of the jobs completely determines a schedule. Moreover, the simplest pure sequencing problem is one in which there is a single resource, or machine, and all processing times are deterministic. 2

3 The single-machine problem illustrates a variety of scheduling topics in a tractable model. It provides a context in which to investigate many different performance measures and several solution techniques. It is therefore a building block in the development of a comprehensive understanding of scheduling concepts. 3

4 Single Machine Conditions In addition to the limitation to a single machine, the basic problem is characterized by these conditions: C1. There are n single-operation jobs simultaneously available for processing (at time zero). C2. Machines can process at most one job at a time. C3. Setup times for the jobs are independent of job sequence and are included in processing times. C4. Job descriptors are deterministic and known in advance. C5. Machines are continuously available (no breakdowns occur). C6. Machines are never kept idle while work is waiting. C7. Once an operation begins, it proceeds without interruption. 4

5 Under these conditions, there is a one-to-one correspondence between a sequence of the n jobs and a permutation of the job indices 1, 2,..., n. The total number of distinct solutions to the basic singlemachine problem is therefore n!, which is the number of different sequences of n elements. Whenever a schedule can be completely characterized by a permutation of integers, it is called a permutation schedule. In describing permutation schedules, it is helpful to use brackets to indicate position in sequence. Thus [5] = 2 means that the fifth job in sequence is job 2. Similarly, d[1] refers to the due date of the first job in sequence. 5

6 Prelimineries Information that is known in advance serves as input to the scheduling process. Three basic pieces of information that help to describe jobs in the single-machine case are: Processing time (p j ): The amount of processing required by job j Release date (r j ): The time at which job j is available for processing Due date (d j ): The time at which the processing of job j is due to be completed 6

7 Information that is generated as a result of scheduling decisions represents output from the scheduling function. Completion time (Cj) The time at which the processing of job j is finished Quantitative measures for evaluating schedules are usually functions of job completion times. 7

8 Two important quantities are: Flowtime (F j ): The time job j spends in the system: F j = C j r j Lateness (L j): The amount of time by which the completion time of job j exceeds its due date: L j = C j d j 8

9 These two quantities reflect two kinds of service. Flowtime measures the response of the system to individual demands for service and represents the interval a job waits between its arrival and its departure. (This interval is sometimes called the turnaround time.) Lateness measures the conformity of the schedule to a given due date and takes on negative values whenever a job is completed early. Negative lateness represents earlier service than requested; positive lateness represents later service than requested. In many situations, distinct penalties are associated with positive lateness, but no benefits are associated with negative lateness. 9

10 Therefore, it is often helpful to work with a quantity that measures only positive lateness: Tardiness (T j ): The lateness of job j if it fails to meet its due date, or zero otherwise T j = max{0, L j } 10

11 Performance Measures Schedules are generally evaluated by aggregate quantities that involve information about all jobs, resulting in one-dimensional performance measures. Measures of schedule performance are usually functions of the set of completion times in a schedule. 11

12 12

13 Under our basic assumptions, Cmax = Fmax = p j, This quantity is also known as the makespan. With this notation, it is convenient to refer to the minimization of total flowtime as the F-problem, and similarly for the T - problem, the Cmax-problem, and so on. 13

14 Total flowtime, for example, is simply the sum of each of the job flowtimes. In this type of function, each job makes a direct contribution to the performance measure, because each individual flowtime is part of the sum. Instead of total flowtime, we could just as easily take mean flowtime as a performance measure. The mean value is simply the total value divided by the number of jobs, or F/n. Similarly, total tardiness could be scaled by 1/n to yield mean tardiness, and U could be scaled to yield the proportion of jobs tardy. 14

15 Each of these measures is a function of the set of job completion times, so that their general form is Z = f (C1,C2,...,Cn) Furthermore, these quantities belong to an important class of performance measures called regular measures. 15

16 Regular Performance Measure A performance measure Z is regular if (a) the scheduling objective is to minimize Z, and (b) Z can increase only if at least one of the completion times in the schedule increases. 16

17 More formally, suppose that Z = f (C 1,C 2,...,C n ) is the value of the measure that characterizes schedule S and that Z = f (C 1,C 2,...,C n ) represents the value of the same measure under some different schedule S. Then Z is regular as long as the following condition holds: Z > Z implies that C j > Cj for some job j 17

18 Dominant Sets The definition is significant because it is usually desirable to restrict attention to a limited set of schedules called a dominant set. To verify that a set D is a dominant set of schedules for regular measures of performance, we can use the following reasoning. 1. Consider an arbitrary schedule S (which contains completion times C j ) that is excluded from D. 2. Show that there exists a schedule S in D, in which C j C j for all j. 3. Therefore Z Z for any regular measure, and so S is at least as good as S. 4. Hence, in searching for an optimal schedule, it is sufficient to consider only schedules in D. 18

19 Theorem 2.1 In the basic single-machine problem with a regular performance measure, schedules without inserted idle time constitute a dominant set. 19

20 Theorem 2.2 In the basic single-machine problem with a regular performance measure, schedules without preemption constitute a dominant set. 20

21 PROBLEMS WITHOUT DUE DATES: ELEMENTARY RESULTS Flowtime and Inventory Sometimes, the costs associated with scheduling decisions involve service to customers, as reflected by their time spent in the system, and the scheduling objective is rapid turnaround. In other situations, the costs involve investment in system resources, as reflected by the behavior of inprocess inventories, and the scheduling objective is to maintain low inventory levels. 21

22 The time spent by a job in the system is its flowtime, and the rapid turnaround objective can be interpreted as minimizing total flowtime. The low inventory objective can be interpreted as minimizing the average number of jobs in the system. 22

23 Let J (t ) denote the number of jobs in the system at time t, and let J be the time average of the J (t ) function. 23

24 24

25 25

26 Since F max is a given constant, J is directly proportional to F. As a result, the job sequence that minimizes F (total flowtime) simultaneously minimizes J (average inprocess inventory). Whether the vantage point is one of optimizing customer service or minimizing in-process inventory levels, the problem is the same: find the sequence that minimizes F. 26

27 Minimizing Total Flowtime Consider the J (t ) graph and the problem of minimizing total flowtime, F. An equivalent problem is that of minimizing the area under the J (t ) function. The selection of a sequence can be interpreted as the construction of a path on the J (t ) graph from the point (0, n) to the point (F max, 0). The path consists of n vectors with given slopes, 1/p j. 27

28 28

29 SPT Clearly, the area can be minimized by placing the steepest slope to the left, then the next steepest slope, and so on. This configuration amounts to sequencing the processing times in nondecreasing order. Sequencing the jobs in nondecreasing order of processing times is known as shortest processing time (SPT) sequencing. 29

30 Theorem 2.3 Total flowtime is minimized by shortest processing time (SPT) sequencing (p [1] p [2]... p [n] ). 30

31 1. Begin with any non-spt sequence. 2. Find a pair of adjacent jobs i and j, with j following i, such that p i > p j. 3. Interchange jobs i and j in sequence, thereby improving the performance measure. 4. Return to Step 2 iteratively, improving the performance measure each time, until eventually the SPT sequence is constructed. 31

32 Properties of Theorem 2.3 First, by virtue of the relationship between flowtime and inventory, SPT sequencing minimizes J as well as F. Second, if the waiting time of job j is defined as the time it spends in the system prior to the start of its processing, then SPT minimizes total waiting time. Third, SPT minimizes the maximum waiting time. Finally, SPT also minimizes total completion time. 32

SCHEDULING AND CONTROLLING PRODUCTION ACTIVITIES

SCHEDULING AND CONTROLLING PRODUCTION ACTIVITIES SCHEDULING AND CONTROLLING PRODUCTION ACTIVITIES Al-Naimi Assistant Professor Industrial Engineering Branch Department of Production Engineering and Metallurgy University of Technology Baghdad - Iraq dr.mahmoudalnaimi@uotechnology.edu.iq

More information

SEQUENCING & SCHEDULING

SEQUENCING & SCHEDULING SEQUENCING & SCHEDULING November 14, 2010 1 Introduction Sequencing is the process of scheduling jobs on machines in such a way so as to minimize the overall time, cost and resource usage thereby maximizing

More information

SCHEDULING IN MANUFACTURING SYSTEMS

SCHEDULING IN MANUFACTURING SYSTEMS In process planning, the major issue is how to utilize the manufacturing system s resources to produce a part: how to operate the different manufacturing processes. In scheduling. The issue is when and

More information

Operations and Supply Chain Management Prof. G. Srinivasan Department of Management Studies Indian Institute of Technology, Madras

Operations and Supply Chain Management Prof. G. Srinivasan Department of Management Studies Indian Institute of Technology, Madras Operations and Supply Chain Management Prof. G. Srinivasan Department of Management Studies Indian Institute of Technology, Madras Lecture - 24 Sequencing and Scheduling - Assumptions, Objectives and Shop

More information

A Sequencing Heuristic to Minimize Weighted Flowtime in the Open Shop

A Sequencing Heuristic to Minimize Weighted Flowtime in the Open Shop A Sequencing Heuristic to Minimize Weighted Flowtime in the Open Shop Eric A. Siy Department of Industrial Engineering email : eric.siy@dlsu.edu.ph Abstract: The open shop is a job shop with no precedence

More information

APPENDIX 1 Processing time (pij) Release date (rj) Due date (dj): Weight (wj)

APPENDIX 1 Processing time (pij) Release date (rj) Due date (dj): Weight (wj) 172 APPENDIX 1 In all the scheduling problems considered the number of jobs and the number of machines are assumed to be finite. The number of jobs is denoted by N and the number of machines by M. usually,

More information

SIMULATION AND COMPARISON ANALYSIS OF DUE DATE ASSIGNMENT METHODS USING SCHEDULING RULES IN A JOB SHOP PRODUCTION SYSTEM

SIMULATION AND COMPARISON ANALYSIS OF DUE DATE ASSIGNMENT METHODS USING SCHEDULING RULES IN A JOB SHOP PRODUCTION SYSTEM SIMULATION AND COMPARISON ANALYSIS OF DUE DATE ASSIGNMENT METHODS USING SCHEDULING RULES IN A JOB SHOP PRODUCTION SYSTEM Fitsum Getachew and Eshetie Berhan School of Mechanical and Industrial Engineering,

More information

Clock-Driven Scheduling

Clock-Driven Scheduling NOTATIONS AND ASSUMPTIONS: UNIT-2 Clock-Driven Scheduling The clock-driven approach to scheduling is applicable only when the system is by and large deterministic, except for a few aperiodic and sporadic

More information

Learning Objectives. Scheduling. Learning Objectives

Learning Objectives. Scheduling. Learning Objectives Scheduling 16 Learning Objectives Explain what scheduling involves and the importance of good scheduling. Discuss scheduling needs in high-volume and intermediate-volume systems. Discuss scheduling needs

More information

JOB SHOP SCHEDULING TO MINIMIZE WORK-IN-PROCESS, EARLINESS AND TARDINESS COSTS ZHU ZHECHENG A THESIS SUBMITTED FOR THE DEGREE OF DOCTOR OF PHILOSOPHY

JOB SHOP SCHEDULING TO MINIMIZE WORK-IN-PROCESS, EARLINESS AND TARDINESS COSTS ZHU ZHECHENG A THESIS SUBMITTED FOR THE DEGREE OF DOCTOR OF PHILOSOPHY JOB SHOP SCHEDULING TO MINIMIZE WORK-IN-PROCESS, EARLINESS AND TARDINESS COSTS ZHU ZHECHENG A THESIS SUBMITTED FOR THE DEGREE OF DOCTOR OF PHILOSOPHY DEPARTMENT OF INDUSTRIAL AND SYSTEMS ENGINEERING NATIONAL

More information

PRODUCTION ACTIVITY CONTROL (PAC)

PRODUCTION ACTIVITY CONTROL (PAC) PRODUCTION ACTIVITY CONTROL (PAC) Concerns execution of material plans Contains shop floor control (SFC), and vendor scheduling and follow-up SFC encompasses detailed scheduling and control of individual

More information

Yuji Yamamoto PPU411. Today s topic

Yuji Yamamoto PPU411. Today s topic Yuji Yamamoto PPU411 Today s topic What is operations planning and scheduling? How to cope with mismatch between demand and supply? Production planning Scheduling Job shop scheduling theories 1 Production

More information

PLANNING AND CONTROL FOR JOB SHOP PRODUCTION 11.1 INTRODUCTION Objectives

PLANNING AND CONTROL FOR JOB SHOP PRODUCTION 11.1 INTRODUCTION  Objectives UNIT 11 Objectives PLANNING AND CONTROL FOR JOB SHOP PRODUCTION After completion of this unit, you should be able to: understand the nature of job production appreciate the variety of problems that may

More information

A HYBRID GENETIC ALGORITHM FOR JOB SHOP SCHEUDULING

A HYBRID GENETIC ALGORITHM FOR JOB SHOP SCHEUDULING A HYBRID GENETIC ALGORITHM FOR JOB SHOP SCHEUDULING PROF. SARVADE KISHORI D. Computer Science and Engineering,SVERI S College Of Engineering Pandharpur,Pandharpur,India KALSHETTY Y.R. Assistant Professor

More information

An Optimal Service Ordering for a World Wide Web Server

An Optimal Service Ordering for a World Wide Web Server An Optimal Service Ordering for a World Wide Web Server Amy Csizmar Dalal Hewlett-Packard Laboratories amy dalal@hpcom Scott Jordan University of California at Irvine sjordan@uciedu Abstract We consider

More information

IJSRD - International Journal for Scientific Research & Development Vol. 4, Issue 05, 2016 ISSN (online):

IJSRD - International Journal for Scientific Research & Development Vol. 4, Issue 05, 2016 ISSN (online): IJSRD - International Journal for Scientific Research & Development Vol. 4, Issue 05, 2016 ISSN (online): 2321-0613 A Genetic Algorithm Approach for Minimization of Flow Time in Job Shop Scheduling Sunil

More information

Single Machine Scheduling with Interfering Job Sets

Single Machine Scheduling with Interfering Job Sets Multidisciplinary International Conference on Scheduling : Theory and Applications (MISTA 009) 0- August 009, Dublin, Ireland MISTA 009 Single Machine Scheduling with Interfering Job Sets Ketan Khowala,

More information

World Rural Observations 2017;9(3) Developing a New Mathematical Model for Scheduling Trucks in Cross-Docking Systems

World Rural Observations 2017;9(3)   Developing a New Mathematical Model for Scheduling Trucks in Cross-Docking Systems Developing a New Mathematical Model for Scheduling Trucks in Cross-Docking Systems Rashed Sahraeian, Mohsen Bashardoost Department of Industrial Engineering, Shahed University, Tehran, Iran Sahraeian@shahed.ac.ir,

More information

Minimizing Makespan for Machine Scheduling and Worker Assignment Problem in Identical Parallel Machine Models Using GA

Minimizing Makespan for Machine Scheduling and Worker Assignment Problem in Identical Parallel Machine Models Using GA , June 30 - July 2, 2010, London, U.K. Minimizing Makespan for Machine Scheduling and Worker Assignment Problem in Identical Parallel Machine Models Using GA Imran Ali Chaudhry, Sultan Mahmood and Riaz

More information

Lab: Response Time Analysis using FpsCalc Course: Real-Time Systems Period: Autumn 2015

Lab: Response Time Analysis using FpsCalc Course: Real-Time Systems Period: Autumn 2015 Lab: Response Time Analysis using FpsCalc Course: Real-Time Systems Period: Autumn 2015 Lab Assistant name: Jakaria Abdullah email: jakaria.abdullah@it.uu.se room: 1235 Introduction The purpose of this

More information

Performance Improvement of the Flexible Manufacturing System (FMS) with a Proper Dispatching Rules Planning

Performance Improvement of the Flexible Manufacturing System (FMS) with a Proper Dispatching Rules Planning Proceedings of the 2014 International Conference on Industrial Engineering and Operations Management Bali, Indonesia, January 7 9, 2014 Performance Improvement of the Flexible Manufacturing System (FMS)

More information

Operations and Supply Chain Management Prof. G. Srinivasan Department of Management Studies Indian Institute of Technology, Madras

Operations and Supply Chain Management Prof. G. Srinivasan Department of Management Studies Indian Institute of Technology, Madras Operations and Supply Chain Management Prof. G. Srinivasan Department of Management Studies Indian Institute of Technology, Madras Module - 01 Lecture - 08 Aggregate Planning, Quadratic Model, Demand and

More information

Efficient Algorithm for Maximizing the Expected Profit from a Serial Production Line with Inspection Stations and Rework

Efficient Algorithm for Maximizing the Expected Profit from a Serial Production Line with Inspection Stations and Rework Discrete Optimization Day 5 August 2008, Technion Efficient Algorithm for Maximizing the Expected Profit from a Serial Production Line with Inspection Stations and Rework Tal Raviv Department of Industrial

More information

Heuristics for N Job M Machine Flowshop Batch Processing With Breakdown Times

Heuristics for N Job M Machine Flowshop Batch Processing With Breakdown Times ISSN (Online): Volume Issue, July Heuristics for N Job M Machine Flowshop Batch rocessing With Breakdown Times V Senthiil, V S Mirudhuneka rofessor & Head, Department of Mechanical Engineering, St. eters

More information

CHAPTER II SEQUENCING MODELS

CHAPTER II SEQUENCING MODELS CHAPTER II SEQUENCING MODELS The basic models in scheduling due to Johnson (1957) and owing to Maggu & Das (1977) T.P. Singh (1985, 86, 2005, 2006) are explained one by one which form a basis of scheduling

More information

Clock-Driven Scheduling

Clock-Driven Scheduling Integre Technical Publishing Co., Inc. Liu January 13, 2000 8:49 a.m. chap5 page 85 C H A P T E R 5 Clock-Driven Scheduling The previous chapter gave a skeletal description of clock-driven scheduling.

More information

LOADING AND SEQUENCING JOBS WITH A FASTEST MACHINE AMONG OTHERS

LOADING AND SEQUENCING JOBS WITH A FASTEST MACHINE AMONG OTHERS Advances in Production Engineering & Management 4 (2009) 3, 127-138 ISSN 1854-6250 Scientific paper LOADING AND SEQUENCING JOBS WITH A FASTEST MACHINE AMONG OTHERS Ahmad, I. * & Al-aney, K.I.M. ** *Department

More information

An Evolutionary Solution to a Multi-objective Scheduling Problem

An Evolutionary Solution to a Multi-objective Scheduling Problem , June 30 - July 2,, London, U.K. An Evolutionary Solution to a Multi-objective Scheduling Problem Sumeyye Samur, Serol Bulkan Abstract Multi-objective problems have been attractive for most researchers

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 Eugénio Oliveira Scheduling, FEUP/PRODEI /MIEIC 1 Planning and Scheduling: Processes of Decision Making regarding the and ordering of activities as well

More information

Inventory Control Model

Inventory Control Model Inventory Control Model The word 'inventory' means simply a stock of idle resources of any kind having an economic value. In other words, inventory means a physical stock of goods, which is kept in hand

More information

Operations Research Models and Methods Paul A. Jensen and Jonathan F. Bard. Inventory Level. Figure 4. The inventory pattern eliminating uncertainty.

Operations Research Models and Methods Paul A. Jensen and Jonathan F. Bard. Inventory Level. Figure 4. The inventory pattern eliminating uncertainty. Operations Research Models and Methods Paul A. Jensen and Jonathan F. Bard Inventory Theory.S2 The Deterministic Model An abstraction to the chaotic behavior of Fig. 2 is to assume that items are withdrawn

More information

א א א א א א א א

א א א א א א א א א א א W א א א א א א א א א 2008 2007 1 Chapter 6: CPU Scheduling Basic Concept CPU-I/O Burst Cycle CPU Scheduler Preemptive Scheduling Dispatcher Scheduling Criteria Scheduling Algorithms First-Come, First-Served

More information

INDIAN INSTITUTE OF MATERIALS MANAGEMENT Post Graduate Diploma in Materials Management PAPER 18 C OPERATIONS RESEARCH.

INDIAN INSTITUTE OF MATERIALS MANAGEMENT Post Graduate Diploma in Materials Management PAPER 18 C OPERATIONS RESEARCH. INDIAN INSTITUTE OF MATERIALS MANAGEMENT Post Graduate Diploma in Materials Management PAPER 18 C OPERATIONS RESEARCH. Dec 2014 DATE: 20.12.2014 Max. Marks: 100 TIME: 2.00 p.m to 5.00 p.m. Duration: 03

More information

Section 1: Introduction

Section 1: Introduction Multitask Principal-Agent Analyses: Incentive Contracts, Asset Ownership, and Job Design (1991) By Bengt Holmstrom and Paul Milgrom Presented by Group von Neumann Morgenstern Anita Chen, Salama Freed,

More information

A COMPARISON OF JOHNSON S RULE AND TOC BASED SCHEDULING METHODOLOGIES

A COMPARISON OF JOHNSON S RULE AND TOC BASED SCHEDULING METHODOLOGIES A COMPARISON OF JOHNSON S RULE AND TOC BASED SCHEDULING METHODOLOGIES Jirarat Teeravaraprug and Thassaporn Sakulpipat Faculty of Engineering, Thammasat University, Rangsit Campus, Pathumthani 12121 THAILAND

More information

On-line Multi-threaded Scheduling

On-line Multi-threaded Scheduling Departamento de Computación Facultad de Ciencias Exactas y Naturales Universidad de Buenos Aires Tesis de Licenciatura On-line Multi-threaded Scheduling por Marcelo Mydlarz L.U.: 290/93 Director Dr. Esteban

More information

New Results for Lazy Bureaucrat Scheduling Problem. fa Sharif University of Technology. Oct. 10, 2001.

New Results for Lazy Bureaucrat Scheduling Problem. fa  Sharif University of Technology. Oct. 10, 2001. New Results for Lazy Bureaucrat Scheduling Problem Arash Farzan Mohammad Ghodsi fa farzan@ce., ghodsi@gsharif.edu Computer Engineering Department Sharif University of Technology Oct. 10, 2001 Abstract

More information

MINIMIZING MEAN COMPLETION TIME IN FLOWSHOPS WITH RANDOM PROCESSING TIMES

MINIMIZING MEAN COMPLETION TIME IN FLOWSHOPS WITH RANDOM PROCESSING TIMES 8 th International Conference of Modeling and Simulation - MOSIM 0 - May 0-, 00 - Hammamet - Tunisia Evaluation and optimization of innovative production systems of goods and services MINIMIZING MEAN COMPLETION

More information

Fuzzy bi-criteria scheduling on parallel machines involving weighted flow time and maximum tardiness

Fuzzy bi-criteria scheduling on parallel machines involving weighted flow time and maximum tardiness APPLIED & INTERDISCIPLINARY MATHEMATICS RESEARCH ARTICLE Fuzzy bi-criteria scheduling on parallel machines involving weighted flow time and maximum tardiness Received: 18 October 2014 Accepted: 09 February

More information

Priority-Driven Scheduling of Periodic Tasks. Why Focus on Uniprocessor Scheduling?

Priority-Driven Scheduling of Periodic Tasks. Why Focus on Uniprocessor Scheduling? Priority-Driven Scheduling of Periodic asks Priority-driven vs. clock-driven scheduling: clock-driven: cyclic schedule executive processor tasks a priori! priority-driven: priority queue processor tasks

More information

Real-Time and Embedded Systems (M) Lecture 4

Real-Time and Embedded Systems (M) Lecture 4 Clock-Driven Scheduling Real-Time and Embedded Systems (M) Lecture 4 Lecture Outline Assumptions and notation for clock-driven scheduling Handling periodic jobs Static, clock-driven schedules and the cyclic

More information

Chapter 1 INTRODUCTION TO SIMULATION

Chapter 1 INTRODUCTION TO SIMULATION Chapter 1 INTRODUCTION TO SIMULATION Many problems addressed by current analysts have such a broad scope or are so complicated that they resist a purely analytical model and solution. One technique for

More information

Lot Sizing for Individual Items with Time-varying Demand

Lot Sizing for Individual Items with Time-varying Demand Chapter 6 Lot Sizing for Individual Items with Time-varying Demand 6.1 The Complexity of Time-Varying Demand In the basic inventory models, deterministic and level demand rates are assumed. Here we allow

More information

Workload balancing in identical parallel machine scheduling using a mathematical programming method

Workload balancing in identical parallel machine scheduling using a mathematical programming method International Journal of Computational Intelligence Systems, Vol. 7, Supplement 1 (2014), 58-67 Workload balancing in identical parallel machine scheduling using a mathematical programming method Yassine

More information

FIFO SJF STCF RR. Operating Systems. Minati De. Department of Mathematics, Indian Institute of Technology Delhi, India. Lecture 6: Scheduling

FIFO SJF STCF RR. Operating Systems. Minati De. Department of Mathematics, Indian Institute of Technology Delhi, India. Lecture 6: Scheduling Operating Systems Minati De Department of Mathematics, Indian Institute of Technology Delhi, India. Lecture 6: Scheduling What is a scheduling policy? On context switch, which process to run next, from

More information

JOB SHOP SCHEDULING WITH EARLINESS, TARDINESS AND INTERMEDIATE INVENTORY HOLDING COSTS

JOB SHOP SCHEDULING WITH EARLINESS, TARDINESS AND INTERMEDIATE INVENTORY HOLDING COSTS JOB SHOP SCHEDULING WITH EARLINESS, TARDINESS AND INTERMEDIATE INVENTORY HOLDING COSTS Kerem Bulbul Manufacturing Systems and Industrial Engineering, Sabanci University, Istanbul, Turkey bulbul@sabanciuniv.edu

More information

COMPUTATIONAL ANALYSIS OF A MULTI-SERVER BULK ARRIVAL WITH TWO MODES SERVER BREAKDOWN

COMPUTATIONAL ANALYSIS OF A MULTI-SERVER BULK ARRIVAL WITH TWO MODES SERVER BREAKDOWN Mathematical and Computational Applications, Vol. 1, No. 2, pp. 249-259, 25. Association for cientific Research COMPUTATIONAL ANALYI OF A MULTI-ERVER BULK ARRIVAL ITH TO MODE ERVER BREAKDON A. M. ultan,

More information

Single machine scheduling with two agents for total completion time objectives

Single machine scheduling with two agents for total completion time objectives Lecture Notes in Management Science (2016) Vol. 8, 106 112 ISSN 2008-0050 (Print), ISSN 1927-0097 (Online) Single machine scheduling with two agents for total completion time objectives Yuvraj Gajpal 1

More information

Code No: RR Set No. 1

Code No: RR Set No. 1 Code No: RR410301 Set No. 1 IV B.Tech I Semester Regular Examinations, November 2007 OPERATIONS RESEARCH ( Common to Mechanical Engineering, Mechatronics and Production Engineering) Time: 3 hours Max Marks:

More information

A Tabu Search for the Permutation Flow Shop Problem with Sequence Dependent Setup Times

A Tabu Search for the Permutation Flow Shop Problem with Sequence Dependent Setup Times A Tabu Search for the Permutation Flow Shop Problem with Sequence Dependent Setup Times Nicolau Santos, nicolau.santos@dcc.fc.up.pt Faculdade de Ciências, Universidade do Porto; INESC Porto João Pedro

More information

The MICRO-BOSS Scheduling System: Current Status and Future Efforts

The MICRO-BOSS Scheduling System: Current Status and Future Efforts From: AAAI Technical Report SS-92-1. Compilation copyright 1992, AAAI (www.aaai.org). All rights reserved. The MICRO-BOSS Scheduling System: Current Status and Future Efforts Norman M. Sadeh Center for

More information

Introduction to Artificial Intelligence. Prof. Inkyu Moon Dept. of Robotics Engineering, DGIST

Introduction to Artificial Intelligence. Prof. Inkyu Moon Dept. of Robotics Engineering, DGIST Introduction to Artificial Intelligence Prof. Inkyu Moon Dept. of Robotics Engineering, DGIST Chapter 9 Evolutionary Computation Introduction Intelligence can be defined as the capability of a system to

More information

I R TECHNICAL RESEARCH REPORT. Rescheduling Frequency and Supply Chain Performance. by Jeffrey W. Herrmann, Guruprasad Pundoor TR

I R TECHNICAL RESEARCH REPORT. Rescheduling Frequency and Supply Chain Performance. by Jeffrey W. Herrmann, Guruprasad Pundoor TR TECHNICAL RESEARCH REPORT Rescheduling Frequency and Supply Chain Performance by Jeffrey W. Herrmann, Guruprasad Pundoor TR 2002-50 I R INSTITUTE FOR SYSTEMS RESEARCH ISR develops, applies and teaches

More information

Hybrid search method for integrated scheduling problem of container-handling systems

Hybrid search method for integrated scheduling problem of container-handling systems Hybrid search method for integrated scheduling problem of container-handling systems Feifei Cui School of Computer Science and Engineering, Southeast University, Nanjing, P. R. China Jatinder N. D. Gupta

More information

Analysis of the job shop system with transport and setup times in deadlock-free operating conditions

Analysis of the job shop system with transport and setup times in deadlock-free operating conditions Archives of Control Sciences Volume 22(LVIII), 2012 No. 4, pages 417 425 Analysis of the job shop system with transport and setup times in deadlock-free operating conditions JOLANTA KRYSTEK and MAREK KOZIK

More information

Harold s Hot Dog Stand Part I: Deterministic Process Flows

Harold s Hot Dog Stand Part I: Deterministic Process Flows The University of Chicago Booth School of Business Harold s Hot Dog Stand Part I: Deterministic Process Flows December 28, 2011 Harold runs a hot dog stand in downtown Chicago. After years of consulting

More information

Techniques of Operations Research

Techniques of Operations Research Techniques of Operations Research C HAPTER 2 2.1 INTRODUCTION The term, Operations Research was first coined in 1940 by McClosky and Trefthen in a small town called Bowdsey of the United Kingdom. This

More information

University Question Paper Two Marks

University Question Paper Two Marks University Question Paper Two Marks 1. List the application of Operations Research in functional areas of management. Answer: Finance, Budgeting and Investment Marketing Physical distribution Purchasing,

More information

Production and Transportation Integration for a Make-to-Order Manufacturing Company with a Commit-to-Delivery Business Mode

Production and Transportation Integration for a Make-to-Order Manufacturing Company with a Commit-to-Delivery Business Mode Production and Transportation Integration for a Make-to-Order Manufacturing Company with a Commit-to-Delivery Business Mode Kathryn E Stecke, Xuying Zhao The University of Texas at Dallas, School of Management,Richardson,

More information

Cambridge University Press Modeling Monetary Economies, Second Edition - Bruce Champ and Scott Freeman Excerpt More information.

Cambridge University Press Modeling Monetary Economies, Second Edition - Bruce Champ and Scott Freeman Excerpt More information. Part I Money IN PART I we develop and learn to work with our most basic model of money, applying it to the study of fiat and commodity monies, inflation, and international monetary systems. In studying

More information

Discrete Event Simulation

Discrete Event Simulation Chapter 2 Discrete Event Simulation The majority of modern computer simulation tools (simulators) implement a paradigm, called discrete-event simulation (DES). This paradigm is so general and powerful

More information

Dynamic Control of a Make-to-Order, Parallel-Server System with Cancellations

Dynamic Control of a Make-to-Order, Parallel-Server System with Cancellations OPERATIONS RESEARCH Vol. 57, No. 1, January February 29, pp. 94 18 issn 3-364X eissn 1526-5463 9 571 94 informs doi 1.1287/opre.18.532 29 INFORMS Dynamic Control of a Make-to-Order, Parallel-Server System

More information

System. Figure 1: An Abstract System. If we observed such an abstract system we might measure the following quantities:

System. Figure 1: An Abstract System. If we observed such an abstract system we might measure the following quantities: 2 Operational Laws 2.1 Introduction Operational laws are simple equations which may be used as an abstract representation or model of the average behaviour of almost any system. One of the advantages of

More information

Optimal Control of Hybrid Systems in Manufacturing

Optimal Control of Hybrid Systems in Manufacturing Optimal Control of Hybrid Systems in Manufacturing DAVID L. PEPYNE, MEMBER, IEEE, AND CHRISTOS G. CASSANDRAS, FELLOW, IEEE Invited Paper Hybrid systems combine time-driven event-driven dynamics. This is

More information

SCHEDULING JOBS ON A SINGLE BPM WITH NON-AGREEABLE RELEASE TIME AND DUE DATES TO MINIMIZE MAKESPAN

SCHEDULING JOBS ON A SINGLE BPM WITH NON-AGREEABLE RELEASE TIME AND DUE DATES TO MINIMIZE MAKESPAN 1 Abstract Number: 025-1195 SCHEDULING JOBS ON A SINGLE BPM WITH NON-AGREEABLE RELEASE TIME AND DUE DATES TO MINIMIZE MAKESPAN Ganeshkumar Palanichamy WIPRO Technologies Electronic city Bangalore 560 100

More information

Research on Optimization of Delivery Route of Online Orders

Research on Optimization of Delivery Route of Online Orders Frontiers in Management Research, Vol. 2, No. 3, July 2018 https://dx.doi.org/10.22606/fmr.2018.23002 75 Research on Optimization of Delivery Route of Online Orders Zhao Qingju School of Information Beijing

More information

This article appeared in a journal published by Elsevier. The attached copy is furnished to the author for internal non-commercial research and

This article appeared in a journal published by Elsevier. The attached copy is furnished to the author for internal non-commercial research and This article appeared in a journal published by Elsevier. The attached copy is furnished to the author for internal non-commercial research and education use, including for instruction at the authors institution

More information

Simultaneous Perspective-Based Mixed-Model Assembly Line Balancing Problem

Simultaneous Perspective-Based Mixed-Model Assembly Line Balancing Problem Tamkang Journal of Science and Engineering, Vol. 13, No. 3, pp. 327 336 (2010) 327 Simultaneous Perspective-Based Mixed-Model Assembly Line Balancing Problem Horng-Jinh Chang 1 and Tung-Meng Chang 1,2

More information

1 Mechanism Design (incentive-aware algorithms, inverse game theory)

1 Mechanism Design (incentive-aware algorithms, inverse game theory) 15-451/651: Design & Analysis of Algorithms April 6, 2017 Lecture #20 last changed: April 5, 2017 1 Mechanism Design (incentive-aware algorithms, inverse game theory) How to give away a printer The Vickrey

More information

A Queuing Approach for Energy Supply in Manufacturing Facilities

A Queuing Approach for Energy Supply in Manufacturing Facilities A Queuing Approach for Energy Supply in Manufacturing Facilities Lucio Zavanella, Ivan Ferretti, Simone Zanoni, and Laura Bettoni Department of Mechanical and Industrial Engineering Università degli Studi

More information

Lecture 7 - Auctions and Mechanism Design

Lecture 7 - Auctions and Mechanism Design CS 599: Algorithmic Game Theory Oct 6., 2010 Lecture 7 - Auctions and Mechanism Design Prof. Shang-hua Teng Scribes: Tomer Levinboim and Scott Alfeld An Illustrative Example We begin with a specific example

More information

Comp 204: Computer Systems and Their Implementation. Lecture 10: Process Scheduling

Comp 204: Computer Systems and Their Implementation. Lecture 10: Process Scheduling Comp 204: Computer Systems and Their Implementation Lecture 10: Process Scheduling 1 Today Deadlock Wait-for graphs Detection and recovery Process scheduling Scheduling algorithms First-come, first-served

More information

Chapter 14. Waiting Lines and Queuing Theory Models

Chapter 14. Waiting Lines and Queuing Theory Models Chapter 4 Waiting Lines and Queuing Theory Models To accompany Quantitative Analysis for Management, Tenth Edition, by Render, Stair, and Hanna Power Point slides created by Jeff Heyl 2008 Prentice-Hall,

More information

CPU scheduling. CPU Scheduling

CPU scheduling. CPU Scheduling EECS 3221 Operating System Fundamentals No.4 CPU scheduling Prof. Hui Jiang Dept of Electrical Engineering and Computer Science, York University CPU Scheduling CPU scheduling is the basis of multiprogramming

More information

On-Line Restricted Assignment of Temporary Tasks with Unknown Durations

On-Line Restricted Assignment of Temporary Tasks with Unknown Durations On-Line Restricted Assignment of Temporary Tasks with Unknown Durations Amitai Armon Yossi Azar Leah Epstein Oded Regev Keywords: on-line algorithms, competitiveness, temporary tasks Abstract We consider

More information

1 Mechanism Design (incentive-aware algorithms, inverse game theory)

1 Mechanism Design (incentive-aware algorithms, inverse game theory) TTIC 31010 / CMSC 37000 - Algorithms March 12, 2019 Lecture #17 last changed: March 10, 2019 1 Mechanism Design (incentive-aware algorithms, inverse game theory) How to give away a printer The Vickrey

More information

Simulation of Process Scheduling Algorithms

Simulation of Process Scheduling Algorithms International Journal of Engineering Science Invention ISSN (Online): 2319 6734, ISSN (Print): 2319 6726 Volume 6 Issue 11 November 2017 PP. 67-71 Simulation of Process Scheduling Algorithms Akanksha Verma

More information

Sustainable sequencing of N jobs on one machine: a fuzzy approach

Sustainable sequencing of N jobs on one machine: a fuzzy approach 44 Int. J. Services and Operations Management, Vol. 15, No. 1, 2013 Sustainable sequencing of N jobs on one machine: a fuzzy approach Sanjoy Kumar Paul Department of Industrial and Production Engineering,

More information

Reducibility of Some Multi Criteria Scheduling Problems to Bicriteria Scheduling Problems.

Reducibility of Some Multi Criteria Scheduling Problems to Bicriteria Scheduling Problems. Proceedings of the 2014 International Conference on Industrial Engineering and Operations Management Bali, Indonesia, January 7 9, 2014 Reducibility of Some Multi Criteria Scheduling Problems to Bicriteria

More information

TECHNICAL WHITE PAPER AGENT BLENDING (PROACTIVE/PREDICTIVE AGENT BLENDING PAB)

TECHNICAL WHITE PAPER AGENT BLENDING (PROACTIVE/PREDICTIVE AGENT BLENDING PAB) TECHNICAL WHITE PAPER AGENT BLENDING (PROACTIVE/PREDICTIVE AGENT BLENDING PAB) Date: July 15, 2015 Author: Sudarshan Kannan Abstract: In this course, we would look at the working of Agent Blending feature

More information

Module 7:Application of stochastic processes in queueing theory Lecture 30:Examples of application of stochastic processes in Queueing Theory

Module 7:Application of stochastic processes in queueing theory Lecture 30:Examples of application of stochastic processes in Queueing Theory The Lecture Contains: Example Solution file:///e /courses/introduction_stochastic_process_application/lecture30/30_1.htm[9/30/2013 1:06:58 PM] Example 7.9 (a) Consider a single queue model where only one

More information

Minimizing weighted total earliness, total tardiness and setup costs Kate, H.A. ten; Wijngaard, Jacob; Zijm, W.H.M.

Minimizing weighted total earliness, total tardiness and setup costs Kate, H.A. ten; Wijngaard, Jacob; Zijm, W.H.M. University of Groningen Minimizing weighted total earliness, total tardiness and setup costs Kate, H.A. ten; Wijngaard, Jacob; Zijm, W.H.M. IMPORTANT NOTE: You are advised to consult the publisher's version

More information

We consider a distribution problem in which a set of products has to be shipped from

We consider a distribution problem in which a set of products has to be shipped from in an Inventory Routing Problem Luca Bertazzi Giuseppe Paletta M. Grazia Speranza Dip. di Metodi Quantitativi, Università di Brescia, Italy Dip. di Economia Politica, Università della Calabria, Italy Dip.

More information

Optimal Control of an Assembly System with Multiple Stages and Multiple Demand Classes

Optimal Control of an Assembly System with Multiple Stages and Multiple Demand Classes OPERATIONS RESEARCH Vol. 59, No. 2, March April 2011, pp. 522 529 issn 0030-364X eissn 1526-5463 11 5902 0522 doi 10.1287/opre.1100.0889 2011 INFORMS TECHNICAL NOTE Optimal Control of an Assembly System

More information

Operating System 9 UNIPROCESSOR SCHEDULING

Operating System 9 UNIPROCESSOR SCHEDULING Operating System 9 UNIPROCESSOR SCHEDULING TYPES OF PROCESSOR SCHEDULING The aim of processor scheduling is to assign processes to be executed by the processor or processors over time, in a way that meets

More information

Evolutionary Computation for Minimizing Makespan on Identical Machines with Mold Constraints

Evolutionary Computation for Minimizing Makespan on Identical Machines with Mold Constraints Evolutionary Computation for Minimizing Makespan on Identical Machines with Mold Constraints Tzung-Pei Hong 1, 2, Pei-Chen Sun 3, and Sheng-Shin Jou 3 1 Department of Computer Science and Information Engineering

More information

Lecture: Scheduling. Nicole Megow

Lecture: Scheduling. Nicole Megow Lecture: Scheduling Nicole Megow Technische Universität München Zentrum für Mathematik WS 2015/16 Organisatorial issues Lectures: Wed 8:30 10:00 in Room 00.06.011 (MI Hörsaal 3) Exercises (by Roman Rischke)

More information

1 Mechanism Design (incentive-aware algorithms, inverse game theory)

1 Mechanism Design (incentive-aware algorithms, inverse game theory) 15-451/651: Design & Analysis of Algorithms April 10, 2018 Lecture #21 last changed: April 8, 2018 1 Mechanism Design (incentive-aware algorithms, inverse game theory) How to give away a printer The Vickrey

More information

Chapter 5. Market Equilibrium 5.1 EQUILIBRIUM, EXCESS DEMAND, EXCESS SUPPLY

Chapter 5. Market Equilibrium 5.1 EQUILIBRIUM, EXCESS DEMAND, EXCESS SUPPLY Chapter 5 Price SS p f This chapter will be built on the foundation laid down in Chapters 2 and 4 where we studied the consumer and firm behaviour when they are price takers. In Chapter 2, we have seen

More information

PRINCE2 COURSE FOUNDATION. 1 Powered by POeT Solvers Limited

PRINCE2 COURSE FOUNDATION. 1   Powered by POeT Solvers Limited PRINCE2 COURSE FOUNDATION 1 www.pmtutor.org Powered by POeT Solvers Limited Plans - Approach The philosophy behind producing plans in PRINCE2 is that the products required are identified first, and only

More information

Fast Edge-Orientation Heuristics for Job-Shop Scheduling Problems with Applications to Train Scheduling

Fast Edge-Orientation Heuristics for Job-Shop Scheduling Problems with Applications to Train Scheduling Fast Edge-Orientation Heuristics for Job-Shop Scheduling Problems with Applications to Train Scheduling Omid Gholami 1, Yuri N. Sotskov 2 and Frank Werner 3* 1 Islamic Azad University, Mahmudadad Branch

More information

Job Sequencing and Optimal Scheduling for Tri-Temperature Lot Sizes in Semiconductor Testing

Job Sequencing and Optimal Scheduling for Tri-Temperature Lot Sizes in Semiconductor Testing Job Sequencing and Optimal Scheduling for Tri-Temperature Lot Sizes in Semiconductor Testing Yoshiki B. Kurata Industrial Engineering Department Technological Institute of the Philippines, Cubao, Quezon

More information

Chapter 12. The Material Flow Cycle. The Material Flow Cycle ٠٣/٠٥/١٤٣٠. Inventory System Defined. Inventory Basics. Purposes of Inventory

Chapter 12. The Material Flow Cycle. The Material Flow Cycle ٠٣/٠٥/١٤٣٠. Inventory System Defined. Inventory Basics. Purposes of Inventory Chapter 12 Inventory Management The Material Flow Cycle ١ ٢ Input The Material Flow Cycle Other Wait Move Cycle Queue Setup Run Output 1 Run time: Job is at machine and being worked on 2 Setup time: Job

More information

Scheduling With Tool Changes to Minimize Total Completion Time: A Study of Heuristics and Their Performance

Scheduling With Tool Changes to Minimize Total Completion Time: A Study of Heuristics and Their Performance Scheduling With Tool Changes to Minimize Total Completion Time: A Study of Heuristics and Their Performance M. Selim Akturk, 1 Jay B. Ghosh, 2 Evrim D. Gunes 1 1 Department of Industrial Engineering, Bilkent

More information

System Analysis and Optimization

System Analysis and Optimization System Analysis and Optimization Prof. Li Li Mobile: 18916087269 E-mail: lili@tongji.edu.cn Office: E&I-Building, 611 Department of Control Science and Engineering College of Electronics and Information

More information

We survey different models, techniques, and some recent results to tackle machine scheduling

We survey different models, techniques, and some recent results to tackle machine scheduling PRODUCTION AND OPERATIONS MANAGEMENT Vol. 16, No. 4, July-August 2007, pp. 437 454 issn 1059-1478 07 1604 437$1.25 POMS 2007 Production and Operations Management Society Games and Mechanism Design in Machine

More information

Determining the Effectiveness of Specialized Bank Tellers

Determining the Effectiveness of Specialized Bank Tellers Proceedings of the 2009 Industrial Engineering Research Conference I. Dhillon, D. Hamilton, and B. Rumao, eds. Determining the Effectiveness of Specialized Bank Tellers Inder S. Dhillon, David C. Hamilton,

More information

Production Planning under Uncertainty with Multiple Customer Classes

Production Planning under Uncertainty with Multiple Customer Classes Proceedings of the 211 International Conference on Industrial Engineering and Operations Management Kuala Lumpur, Malaysia, January 22 24, 211 Production Planning under Uncertainty with Multiple Customer

More information

COMBINED-OBJECTIVE OPTIMIZATION IN IDENTICAL PARALLEL MACHINE SCHEDULING PROBLEM USING PSO

COMBINED-OBJECTIVE OPTIMIZATION IN IDENTICAL PARALLEL MACHINE SCHEDULING PROBLEM USING PSO COMBINED-OBJECTIVE OPTIMIZATION IN IDENTICAL PARALLEL MACHINE SCHEDULING PROBLEM USING PSO Bathrinath S. 1, Saravanasankar S. 1 and Ponnambalam SG. 2 1 Department of Mechanical Engineering, Kalasalingam

More information

Scheduling Problems in the Lot Production Lines of the Toyota Production System

Scheduling Problems in the Lot Production Lines of the Toyota Production System J Jpn Ind Manage Assoc 65, 321-327, 2015 Original Paper Scheduling Problems in the Lot Production Lines of the Toyota Production System Shigenori KOTANI 1 Abstract: The focus of this paper is the scheduling

More information