Applying LP to Plan Production at Jos A Bank

Size: px
Start display at page:

Download "Applying LP to Plan Production at Jos A Bank"

Transcription

1 Applying LP to Plan Production at Jos A Bank

2 Learning objectives today Understand Jos A Bank production Issues in production planning Formulating an LP to plan production Issues in formulation Solving the LP using Xpress

3 Goal(s) Maximize long-term Economic Profit by manufacturing and selling suits produce the right product and offer it at the right price (service goal) minimize the cost to deliver (cost goal) This way of thinking (separating the revenue goal from the cost goal) is quite common in business and industry

4 General Business Process Customer orders Marker-making Inventory data How are orders batched together for marker-making? Marker Spreading What is the lead-time for inventory, and how are the fabrics and colors selected? Fabric from inventory

5 General Business Process, cont d Marker Spreading Fabric from inventory Cutting Fitting Sub-assembly Final Ass y Press/Inspect Technological and labor requirements for each process step

6 Marker driven batch operations Cut Match & Tag Bundle cut All these are the same part for the same style/size Pull out and tag all the parts for the same suit (style, size, and color) Bundle together identical parts, so they can all be sewn at one time How many bundles are created from each marker?

7 Estimating spreading/cutting labor Depends on the number of layers Depends on the type(s) of fabric Depends on the length of the table Issue: how to size capacity

8 Marker-Making Extremely difficult problem Good marker minimizes waste by getting the maximum number of parts onto the marker A suit comes from a single layer Want to spread as much fabric as possible (layers) because the maximizes cutting productivity

9 Order driven batch operations bundles subassembly subassembly Final assembly One or more orders

10 Estimating assembly labor content Depends on the technology Depends on the style, fabric, pattern Depends on the experience of the operator Depends on the bundle size Traditional IE role is to set standards

11 An operator Works on many bundles during a shift Has a buffer of bundles waiting, to insure no idle time

12 To finish a suit The pieces for the suit are cut at the same time, then fitted and tagged But then they are bundled with pieces for other suits (of the same style, size, fabric) The five different bundles, traveling five different routes, all come together at final The bundles go to different operators; variability in queue time and process time means they don t all arrive together at final assembly

13 Design Questions How many operators are needed in assembly? What is the manufacturing cycle time? (or how much WIP on average?) What is the minimum production quantity for a size/style/color?

14 Number of Operators Std hrs for each operation Number of suits of each type Total std hrs Hrs avail per operator (take out meals, breaks, and allowances average over the year/season

15 Examining Impacts labor Inventory, delay Operating Cost per suit Average operator utilization Queuing phenomenon!

16 Design Issue Each operator is a server How many servers do we need? Trade-off cost of operators (labor) against the cost of waiting (inventory and customer service) Capacity is not a free variable

17 Why Study Queues? Because understanding Little s Law, and the behavior of queues helps us to understand the behavior of Jos A Bank s sewing room, and understand the interplay between the number of sewing operators, the manufacturing cycle time, the work-in-process inventory, and the total cost of garments produced.

18 How can Jos A Bank plan production over the season?

19 Hypothetical Sales Forecast Units Required Week Coats Trousers

20 Fundamental Decisions How much work to release each week, for both trousers and coats X(t,1), X(t,2) How much inventory to carry in anticipation of peak demand I(t,1), I(t,2)

21 Objective Minimize the total inventory carried over the duration of the season Sum of the week-ending inventory values T [ I( t,1) + = t 1 I( t,2)]

22 Types of Constraints Technical Financial Work practices Conceptual

23 Let s simplify cutting sewing yds/garment min/garment coats trousers capacity 5000 yds/week 6 operators 3.2X ( t,1) + 2.2X ( t,2) 5000 t = 1,... T 7.34X ( t,1) X ( t,2) 6*420 t = 1,... T

24 Lead-time Suppose we have done the queuing or simulation analysis, and determined that the lead-time is five weeks (note: we know, in reality, that leadtime will be a function of loading and operator utilization, so it actually will vary as we change the release rate)

25 Consider only trousers, and leadtime = zero weeks prod p(2) p(3) p(4) inv i(2) i(3) i(4) d(1) d(2) d(3) d(4) i(t) = i(t-1) + p(t) - d(t) Boundary conditions for first and last periods Inventory balance (flow conservation) equation

26 Suppose Lead-Time = 1 Week prod p(2) p(3) p(4) 1 inv i(2) i(3) i(4) d(1) d(2) d(3) d(4)

27 Lead-Time = 2 weeks prod p(2) p(3) p(4) inv i(2) i(3) i(4) d(1) d(2) d(3) d(4)

28 Visual Xpress Model for Jos A Bank model JABank! Start a new model uses "mmxprs"! Load the optimizer library declarations nprod = 2!number of products--coats, trousers iprod = 1..nprod nper = 26!number of weeks in the plan iper = 1..nper LT = 5!production lead time in weeks ilt = 1..LT D: array(iper, iprod) of real!demand in each period for coats and trousers y: array(iprod) of real!cutting standards for coats and trousers s: array(iprod) of real!sewing standards for coats and trousers X: array(iper, iprod) of mpva!quantity of coats and trousers to be started in each period I: array(iper, iprod) of mpvar!inventory of coats and trousers at the beginning of each period end-declarations

29 Visual Xpress Model for Jos A Bank y := [3.2, 2.2] s := [7.34, 5.25] YPW := 6000!cutting capacity in yards per week SOP := 5!sewing operators available initializations from 'jabank.dat' D end-initializations forall(i in iprod) s(i) := s(i)/60!convert sewing standards into hours from minutes

30 Visual Xpress Model for Jos A Bank!objective function; total inventory carried during the planning horizon obj_fcn:= sum(j in iper) I(j,1)+sum(j in iper) I(j,2)!capacity constraints forall (j in iper) cutting (j):= y(1)*x(j,1) + y(2)*x(j,2) <= YPW!can't cut more than 5000 yds per week forall (j in iper) sewing (j):= s(1)*x(j,1) + s(2)*x(j,2) <= SOP*40!can sew more than SOP*40 hours per week!balance constraints forall (j in LT+1..nper) bal_coats (j):= I(j-1,1) + X(j-LT,1) -D(j,1)-I(j,1) = 0 forall (j in LT+1..nper) bal_trou (j):= I(j-1,2) + X(j-LT,2) -D(j,2)-I(j,2) = 0!boundary conditions forall (j in ilt) init (j):= I(j,1)+I(j,2)=0 minimize(obj_fcn)

31 Visual Xpress Model for Jos A Bank! Print out the solution writeln("solution ") writeln(" Objective: ", getobjval) writeln writeln(" Coat Trouser") writeln("period Production Inventory Production Inventory") writeln forall (j in iper) writeln(" ", strfmt(j, 2), " ", strfmt(getsol(x(j,1)),6,0)," ", strfmt(getsol(i(j,1)), 6,0), " ", strfmt(getsol(x(j,2)), 6, 0), " ", strfmt(getsol(i(j,2)), 6, 0)) end-model

32 Data File for Jos A Bank D: [ ]

33 Xpress-IVE

34 Solution--Trousers Demand Production Inventory

35 Solution--Coats Demand Production Inventory

36 This Model: Enforces the cutting capacity constraint Enforces the limit on sewing operators Enforces inventory balance Satisfies all demand Minimizes the total unit-weeks of inventory

37 What s tricky about this? Lead-time!

38 NOTE: I can use this model to determine the minimum possible number of sewing operators for a given lead-time I can vary the lead-time (What s the relationship between lead-time and number of operators?)

39 Summary Jos A Bank production process Formulating the production planning LP The inventory balance constraint Dealing with lead-time Practices in using Xpress

IEOR 130 Methods of Manufacturing Improvement Practice Examination Problems Part II of Course Prof. Leachman Fall, 2017

IEOR 130 Methods of Manufacturing Improvement Practice Examination Problems Part II of Course Prof. Leachman Fall, 2017 IEOR 130 Methods of Manufacturing Improvement Practice Examination Problems Part II of Course Prof. Leachman Fall, 2017 1. For a particular semiconductor product, the customer orders received to date are

More information

Chapter 4. Models for Known Demand

Chapter 4. Models for Known Demand Chapter 4 Models for Known Demand Introduction EOQ analysis is based on a number of assumptions. In the next two chapters we describe some models where these assumptions are removed. This chapter keeps

More information

Answer Key Testname: M1 06

Answer Key Testname: M1 06 Testname: M1-06 1) B 2) D 3) A 4) B 5) C 6) C 7) B 8) A 9) D 10) B 11) A 12) D 13) B 14) A 15) B 16) B 17) B 18) D 19) A 20) B 21) B 22) D 23) B 24) B 25) A 26) With the pull method, customer demand (an

More information

Flow and Pull Systems

Flow and Pull Systems Online Student Guide Flow and Pull Systems OpusWorks 2016, All Rights Reserved 1 Table of Contents LEARNING OBJECTIVES... 4 INTRODUCTION... 4 BENEFITS OF FLOW AND PULL... 5 CLEARING ROADBLOCKS... 5 APPROACH

More information

Inventory Control. Inventory. Inventories in a manufacturing plant. Why inventory? Reasons for holding Raw Materials. Reasons for holding WIP

Inventory Control. Inventory. Inventories in a manufacturing plant. Why inventory? Reasons for holding Raw Materials. Reasons for holding WIP Inventory Control Inventory the oldest result of the scientific management efforts inventory plays a key role in the logistical behavior of virtually all manufacturing systems the classical inventory results

More information

Aggregate Planning (session 1,2)

Aggregate Planning (session 1,2) Aggregate Planning (session 1,2) 1 Outline The Planning Process The Nature of Aggregate Planning Aggregate Planning Strategies Capacity Options Demand Options Mixing Options to Develop a Plan Methods for

More information

Little s Law 101. Tathagat Varma, PMP, Six Sigma Green Belt, Certified Scrum Master, Lean Certified, Kaizen Certified

Little s Law 101. Tathagat Varma, PMP, Six Sigma Green Belt, Certified Scrum Master, Lean Certified, Kaizen Certified Little s Law 101 Tathagat Varma, Tathagat.varma@gmail.com PMP, Six Sigma Green Belt, Certified Scrum Master, Lean Certified, Kaizen Certified Abstract Little s Law states that inventory in a process is

More information

Finished goods available to meet Takt time when variations in customer demand exist.

Finished goods available to meet Takt time when variations in customer demand exist. Delaware Valley Industrial Resource Center 2905 Southampton Road Philadelphia, PA 19154 Tel: (215) 464-8550 Fax: (215) 464-8570 www.dvirc.org Term Batch-and-Queue Processing Buffer Stock Catchball Cell

More information

Aggregate Planning and S&OP

Aggregate Planning and S&OP Aggregate Planning and S&OP 13 OUTLINE Global Company Profile: Frito-Lay The Planning Process Sales and Operations Planning The Nature of Aggregate Planning Aggregate Planning Strategies 1 OUTLINE - CONTINUED

More information

JUST IN TIME. Manuel Rincón, M.Sc. October 22nd, 2004

JUST IN TIME. Manuel Rincón, M.Sc. October 22nd, 2004 JUST IN TIME Manuel Rincón, M.Sc. October 22nd, 2004 Lecture Outline 1. Just-in-Time Philosophy 2. Suppliers Goals of JIT Partnerships Concerns of Suppliers 3. JIT Layout Distance Reduction Increased Flexibility

More information

WAYNE STATE UNIVERSITY

WAYNE STATE UNIVERSITY Ph.D. Preliminary Examination June 2016 (11:00 am to 4:00 pm) Candidate Name: Answer ALL Questions 1- Decision Analysis (20 points) The executive search being conducted for Western Bank by Headhunters

More information

Drum Buffer-Rope. Based on : R. Holt, Ph.D., PE

Drum Buffer-Rope. Based on : R. Holt, Ph.D., PE Drum Buffer-Rope Based on : R. Holt, Ph.D., PE Traditional Approach: Divide and Conquer Division of Labor breaks down linkages complex systems into manageable chunks. Which is harder to manage? Left or

More information

History IE 376 PRODUCTION INFORMATION SYSTEMS. Course Notes Lecture #2.A Material Requirements Planning

History IE 376 PRODUCTION INFORMATION SYSTEMS. Course Notes Lecture #2.A Material Requirements Planning IE PRODUCTION INFORMATION SYSTEMS Course Notes Lecture #.A Material Requirements Planning IE Bilkent University Manufacturing Planning and Control System Routing file Resource planning Bills of material

More information

use lean lot sizing to prepare for economic recovery

use lean lot sizing to prepare for economic recovery ANtiCiPAtiNg the reemergence of demand use lean lot sizing to prepare for economic recovery By Steve CiMorelli, CfPiM Over the past 12 to 18 months, much has been written about manufacturers cutting inventories

More information

Simulation and Queing Theory

Simulation and Queing Theory Simulation and Queing Theory BUS 735: Business Decision Making and Research Goals and Agenda Learning Objective Active Learning Activity Learn how to simulate probability distribution Example problem in

More information

Outline. Push-Pull Systems Global Company Profile: Toyota Motor Corporation Just-in-Time, the Toyota Production System, and Lean Operations

Outline. Push-Pull Systems Global Company Profile: Toyota Motor Corporation Just-in-Time, the Toyota Production System, and Lean Operations JIT and Lean Operations Outline Push-Pull Systems Global Company Profile: Toyota Motor Corporation Just-in-Time, the Toyota Production System, and Lean Operations Eliminate Waste Remove Variability Improve

More information

Question 2: How do we make decisions about inventory?

Question 2: How do we make decisions about inventory? uestion : How do we make decisions about inventory? Most businesses keep a stock of goods on hand, called inventory, which they intend to sell or use to produce other goods. Companies with a predictable

More information

Factory Physics Analytics with applications to Project Production

Factory Physics Analytics with applications to Project Production Factory Physics Analytics with applications to Project Production FACTORY PHYSICS is a registered trademark of Factory Physics Inc. All rights reserved. Why Factory Physics Analytics? Projects are like

More information

Simulation Analytics

Simulation Analytics Simulation Analytics Powerful Techniques for Generating Additional Insights Mark Peco, CBIP mark.peco@gmail.com Objectives Basic capabilities of computer simulation Categories of simulation techniques

More information

Production Management and Scheduling

Production Management and Scheduling Production Management and Scheduling Meet Your Due Dates Your production process can be simple or complex, time consuming or quick, but one thing remains constant the drive to meet your customer s delivery

More information

PLUS VALUE STREAM MAPPING

PLUS VALUE STREAM MAPPING LEAN PRINCIPLES PLUS VALUE STREAM MAPPING Lean Principles for the Job Shop (v. Aug 06) 1 Lean Principles for the Job Shop (v. Aug 06) 2 Lean Principles for the Job Shop (v. Aug 06) 3 Lean Principles for

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

Modeling and Problem Solving

Modeling and Problem Solving Modeling and Problem Solving Gonca Yıldırım Department of Industrial Engineering Çankaya University November 4, 2014 Objectives of Today s Lecture another definition of Industrial Engineering and a part

More information

ANALYSING QUEUES USING CUMULATIVE GRAPHS

ANALYSING QUEUES USING CUMULATIVE GRAPHS AALYSIG QUEUES USIG CUMULATIVE GRAPHS G A Vignaux March 9, 1999 Abstract Queueing theory is the theory of congested systems. Usually it only handles steady state stochastic problems. In contrast, here

More information

IT 470a Six Sigma Chapter X

IT 470a Six Sigma Chapter X Chapter X Lean Enterprise IT 470a Six Sigma Chapter X Definitions Raw Materials component items purchased and received from suppliers WIP work in process, items that are in production on the factory floor

More information

Drum Buffer-Rope. Skorkovský. Based on : R. Holt, Ph.D., PE

Drum Buffer-Rope. Skorkovský. Based on : R. Holt, Ph.D., PE Drum Buffer-Rope Skorkovský Based on : R. Holt, Ph.D., PE Traditional Approach: Divide and Conquer Division of Labor breaks down linkages complex systems into manageable chunks. Which is harder to manage?

More information

Space Requirements. Space Requirements

Space Requirements. Space Requirements Facility Location, Layout, and 96 Production Rate Determination Market forecast is translated into production quantities» Desired output = O n = (1+Safety Factor)*Forecast» For k = n,...,1 Ok Ik = 1 P

More information

Operations Management

Operations Management Operations Management Chapter 16 JIT and Lean Operations PowerPoint presentation to accompany Heizer/Render Operations Management, 11ed Some additions and deletions have been made by Ömer Yağız to this

More information

Introduction to Management Science 8th Edition by Bernard W. Taylor III. Chapter 1 Management Science

Introduction to Management Science 8th Edition by Bernard W. Taylor III. Chapter 1 Management Science Introduction to Management Science 8th Edition by Bernard W. Taylor III Chapter 1 Management Science Chapter 1- Management Science 1 Chapter Topics The Management Science Approach to Problem Solving Model

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

Supply Chain Drivers and Metrics

Supply Chain Drivers and Metrics 3 Supply Chain Drivers and Metrics PowerPoint presentation to accompany Chopra and Meindl Supply Chain Management, 5e 2012 Prentice Hall Inc. 1 1-1 3-1 Learning Objectives 1. Identify the major drivers

More information

MFS605/EE605 Systems for Factory Information and Control

MFS605/EE605 Systems for Factory Information and Control MFS605/EE605 Systems for Factory Information and Control Fall 2004 Larry Holloway Dept. of Electrical Engineering and Center for Robotics and Manufacturing Systems 1 Collect info on name, major, MS/PhD,

More information

Calculation Schema. Setting up the calculation schema in beas. Beas Tutorial. Boyum Solutions IT A/S

Calculation Schema. Setting up the calculation schema in beas. Beas Tutorial. Boyum Solutions IT A/S Calculation Schema Setting up the calculation schema in beas Boyum Solutions IT A/S Beas Tutorial TABLE OF CONTENTS 1. INTRODUCTION... 3 2. PROCESS... 3 2.1. Master Data Tab... 5 2.2. Overhead Costs Tab...

More information

Lean Project Delivery Operating System

Lean Project Delivery Operating System Lean Project Delivery Operating System David MacNeel & Dan Passick, On Point Lean OCTOBER 16, 2017 LCI Education & Training Lean Construction Institute Provider Number H561 LCI Learning Module: Introduction

More information

Slides 2: Simulation Examples

Slides 2: Simulation Examples Slides 2: Simulation Examples Today I ll present several examples of simulations that can be performed by devising a simulation table either manually or with a spreadsheet. This will provide insight into

More information

ASSIGNMENT BOOKLET Bachelor's Degree Programme (BS.c./B.A/B.Com) OPERATIONS RESEARCH

ASSIGNMENT BOOKLET Bachelor's Degree Programme (BS.c./B.A/B.Com) OPERATIONS RESEARCH PHE-0 AOR-0 ASSIGNMENT BOOKLET Bachelor's Degree Programme (BS.c./B.A/B.Com) OPERATIONS RESEARCH Valid from st January to st December 0 It is compulsory to submit the Assignment before filling in the Term-End

More information

PTP_Intermediate_Syllabus2012_Dec2015_Set 1 PAPER 9 - OPERATIONS MANAGEMENT & INFORMATION SYSTEM

PTP_Intermediate_Syllabus2012_Dec2015_Set 1 PAPER 9 - OPERATIONS MANAGEMENT & INFORMATION SYSTEM PAPER 9 - OPERATIONS MANAGEMENT & INFORMATION SYSTEM Academics Department, The Institute of Cost Accountants of India (Statutory Body under an Act of Parliament) Page 1 LEVEL B PTP_Intermediate_Syllabus2012_Dec2015_Set

More information

(Assignment) Master of Business Administration (MBA) PGDPM Subject : Management Subject Code : PGDPM

(Assignment) Master of Business Administration (MBA) PGDPM Subject : Management Subject Code : PGDPM (Assignment) 2017-2018 Master of Business Administration (MBA) PGDPM Subject : Management Subject Code : PGDPM Subject Title : Operation Research Course Code : PGDPM-01 Maximum Marks: 30 Note: Long Answer

More information

Assume only one reference librarian is working and M/M/1 Queuing model is used for Questions 1 to 7.

Assume only one reference librarian is working and M/M/1 Queuing model is used for Questions 1 to 7. 3 Test 2, Spring 2009 During a normal week, the reference desk of JMU East Library serves students at the rate of one every 6 minutes. Assume the service time is exponentially distributed. It is observed

More information

A Case Study of Capacitated Scheduling

A Case Study of Capacitated Scheduling A Case Study of Capacitated Scheduling Rosana Beatriz Baptista Haddad rosana.haddad@cenpra.gov.br; Marcius Fabius Henriques de Carvalho marcius.carvalho@cenpra.gov.br Department of Production Management

More information

lakeshore group, ltd. WEARABLES ORDER

lakeshore group, ltd. WEARABLES ORDER WEARABLES ORDER Wearable items have become increasingly important to the promotional products industry. The related orders are, however, often quite complicated to enter as it involves both a decorator

More information

ISE480 Sequencing and Scheduling

ISE480 Sequencing and Scheduling ISE480 Sequencing and Scheduling INTRODUCTION ISE480 Sequencing and Scheduling 2012 2013 Spring term What is Scheduling About? Planning (deciding what to do) and scheduling (setting an order and time for

More information

2. What are the typical problems with Manufacturing Resources Planning (MRP)? Indicate how one can overcome each problem. 4 points

2. What are the typical problems with Manufacturing Resources Planning (MRP)? Indicate how one can overcome each problem. 4 points EXAM: PRODUCTIO MAAGEMET -- 35V6A5 Date: 12 May 2010 Part 1: Closed Book You have ± 45 minutes to answer the following questions. Write your answers short, clear and to the point (max. 8 lines per question).

More information

Flexible Manufacturing systems. Lec 4. Dr. Mirza Jahanzaib

Flexible Manufacturing systems. Lec 4. Dr. Mirza Jahanzaib Flexible Manufacturing systems AB A. Bottleneck kmdl Model Lec 4 Dr. Mirza Jahanzaib Where to Apply FMS Technology The plant presently either: Produces parts in batches or Uses manned GT cells and management

More information

System Dynamics Group Sloan School of Management Massachusetts Institute of Technology

System Dynamics Group Sloan School of Management Massachusetts Institute of Technology System Dynamics Group Sloan School of Management Massachusetts Institute of Technology Introduction to System Dynamics, 15.871 System Dynamics for Business Policy, 15.874 Professor John Sterman Professor

More information

Ch 19 Flexible Manufacturing Systems

Ch 19 Flexible Manufacturing Systems Ch 19 Flexible Manufacturing Systems Sections: 1. What is a Flexible Manufacturing System? 2. FMS Components 3. FMS Applications and Benefits 4. FMS Planning and Implementation Issues 5. Quantitative Analysis

More information

Time and Cost Optimization of Parallel Services on Line Balancing Problem using Integer Programming

Time and Cost Optimization of Parallel Services on Line Balancing Problem using Integer Programming Time and Cost Optimization of Parallel Services on Line Balancing Problem using Integer Programming Tiar Anindya Putri Department of Management Technology tiaranindyap@gmail.com Riyanarto Sarno Department

More information

PETRI NET VERSUS QUEUING THEORY FOR EVALUATION OF FLEXIBLE MANUFACTURING SYSTEMS

PETRI NET VERSUS QUEUING THEORY FOR EVALUATION OF FLEXIBLE MANUFACTURING SYSTEMS Advances in Production Engineering & Management 5 (2010) 2, 93-100 ISSN 1854-6250 Scientific paper PETRI NET VERSUS QUEUING THEORY FOR EVALUATION OF FLEXIBLE MANUFACTURING SYSTEMS Hamid, U. NWFP University

More information

Inventory Management 101 Basic Principles SmartOps Corporation. All rights reserved Copyright 2005 TeknOkret Services. All Rights Reserved.

Inventory Management 101 Basic Principles SmartOps Corporation. All rights reserved Copyright 2005 TeknOkret Services. All Rights Reserved. Inventory Management 101 Basic Principles 1 Agenda Basic Concepts Simple Inventory Models Batch Size 2 Supply Chain Building Blocks SKU: Stocking keeping unit Stocking Point: Inventory storage Item A Loc

More information

PRACTICE PROBLEM SET Topic 1: Basic Process Analysis

PRACTICE PROBLEM SET Topic 1: Basic Process Analysis The Wharton School Quarter II The University of Pennsylvania Fall 1999 PRACTICE PROBLEM SET Topic 1: Basic Process Analysis Problem 1: Consider the following three-step production process: Raw Material

More information

On the real final exam on Dec. 13, 2006, you will receive a printed copy of the questions with a cover page showing your last name and campus

On the real final exam on Dec. 13, 2006, you will receive a printed copy of the questions with a cover page showing your last name and campus On the real final exam on Dec. 13, 2006, you will receive a printed copy of the questions with a cover page showing your last name and campus computing ID. You will also be able to access the questions

More information

OM (Fall 2016) Outline

OM (Fall 2016) Outline Lean Operations Outline Global Company Profile: Toyota Motor Corporation Lean Operations Lean and Just-in-Time Lean and the Toyota Production System Lean Organizations Lean in Services 2 Toyota Motor Corporation

More information

MASTER PRODUCTION SCHEDULE (MPS)

MASTER PRODUCTION SCHEDULE (MPS) MASTER PRODUCTION SCHEDULE (MPS) Anticipated build schedule for manufacturing end products (or product options) A statement of production, not a statement of market demand MPS takes into account capacity

More information

Welcome to Principles of Lean Manufacturing

Welcome to Principles of Lean Manufacturing v3.0 The LE101 Experience Welcome to Principles of Lean Manufacturing 2018 Time Wise Solutions. All rights reserved. The Real World Your External Customers What do they expect from you? Where do you fall

More information

Dynamic Lead Time Based Control Point Policy for Multi Stage Manufacturing Systems

Dynamic Lead Time Based Control Point Policy for Multi Stage Manufacturing Systems Dynamic Lead Time ased Control Point Policy for Multi Stage Manufacturing Systems Marcello Colledani (1), Stanley. Gershwin (2) 11 th Conference on Stochastic Models of Manufacturing and Service Operations,

More information

Performance Analysis of Single Flow line Manufacturing A Modeling Simulation approach

Performance Analysis of Single Flow line Manufacturing A Modeling Simulation approach Performance Analysis of Single Flow line Manufacturing A Modeling Simulation approach G. G. Sastry # Dr Mukesh Saxena Dr Rajnish Garg ABSTRACT The flow line manufacturing with pull production control mechanisms

More information

Chapter two. Product and Process design

Chapter two. Product and Process design Chapter two Product and Process design 2-1- Product design Product design is the process of defining all the features and characteristics of the product to manufacture. Product design also includes the

More information

CHAPTER 1 INTRODUCTION

CHAPTER 1 INTRODUCTION 1 CHAPTER 1 INTRODUCTION 1.1 MANUFACTURING SYSTEM Manufacturing, a branch of industry, is the application of tools and processes for the transformation of raw materials into finished products. The manufacturing

More information

Inventory Management [10] Outline. Inventory Models. Operations Management, 8e. Heizer/Render. ABC Analysis 2 / Prentice Hall, Inc.

Inventory Management [10] Outline. Inventory Models. Operations Management, 8e. Heizer/Render. ABC Analysis 2 / Prentice Hall, Inc. Inventory Management [10] Heizer/Render Operations Management, 8e Outline Functions Of Inventory Types of Inventory Inventory Management ABC Analysis Record Accuracy Cycle Counting Control of Service Inventories

More information

Customer Choice. Introduction. Prof. Christian Terwiesch

Customer Choice. Introduction. Prof. Christian Terwiesch Customer Choice Introduction Customer Choice for HP DeskJet Printers How many HP printers are there on Amazon? Why are there so many? HP Deskjet printer (a look at Amazon) 1000 line 2000 line 3000 line

More information

1.204 Lecture 23. Analytic approximations. Transit design. Analytic approximations. First spiral in developing problem solution

1.204 Lecture 23. Analytic approximations. Transit design. Analytic approximations. First spiral in developing problem solution 1.204 Lecture 23 Analytic approximations Vehicle routing Transit design Analytic approximations First spiral in developing problem solution Assist in requirements, prototyping, initial results, review

More information

LEAN REVERSE LOGISTICS.

LEAN REVERSE LOGISTICS. LEAN REVERSE LOGISTICS www.fourprinciples.com BACKGROUND In the early days, the reverse logistics focus was on the front-end of the retailer s return process. It was meant to provide the customers with

More information

Microeconomic Theory -1- Introduction and maximization

Microeconomic Theory -1- Introduction and maximization Microeconomic Theory -- Introduction and maximization Introduction Maximization. Profit maximizing firm with monopoly power 6. General results on maximizing with two variables 3. Non-negativity constraints

More information

Value Stream Mapping Train the Trainer

Value Stream Mapping Train the Trainer Value Stream Mapping Train the Trainer Information For A Process Data Box (to be collected on the shop floor) Cycle time Changeover time Process reliability (uptime) Scrap/Rework/Defect rate Number of

More information

Chapter 17. Synchronizing and Balancing Processes. Level the master production schedule. Production. Time

Chapter 17. Synchronizing and Balancing Processes. Level the master production schedule. Production. Time Chapter 17 Synchronizing and Balancing Processes 1 Goal Achieve uniform flow Level the master production schedule Production Time Avg. Reduce the size of batches produced for final assembly Production

More information

Chapter C Waiting Lines

Chapter C Waiting Lines Supplement C Waiting Lines Chapter C Waiting Lines TRUE/FALSE 1. Waiting lines cannot develop if the time to process a customer is constant. Answer: False Reference: Why Waiting Lines Form Keywords: waiting,

More information

Lecture 12. Introductory Production Control

Lecture 12. Introductory Production Control Lecture 12 Introductory Production Control 167 Where we ve come from: Models of Manufacturing Systems: Deterministic, Queuing, Simulation Key ideas: Some WIP useful for buffering stations, but More WIP

More information

Stop Planning Semiconductor Chips Like Potato Chips!

Stop Planning Semiconductor Chips Like Potato Chips! epaper Series Version A.1.0 Stop Planning Semiconductor Chips Like Potato Chips! Overview It s no surprise that the Semiconductor industry is very asset-intensive, with long leadtimes and expensive capital

More information

UNIVERSITY OF MORATUWA

UNIVERSITY OF MORATUWA UNIVERSITY OF MORATUWA MSC/POSTGRADUATE DIPLOMA IN FINANCIAL MATHEMATICS MA 5101 OPERATIONAL RESEARCH TECHNIQUE I THREE HOURS October 2008 Answer FIVE questions and NO MORE. Question 1 ALI Electronics

More information

Business Systems Operations Management

Business Systems Operations Management Business Systems Operations Management Facilitator: Dr. Jonathan Farrell 1 This Evening s s Program Capacity Planning & Control Aggregate Planning Capacity versus Demand The Planning Process Managing Capacity

More information

VARIABILITY PROFESSOR DAVID GILLEN (UNIVERSITY OF BRITISH COLUMBIA) & PROFESSOR BENNY MANTIN (UNIVERSITY OF WATERLOO)

VARIABILITY PROFESSOR DAVID GILLEN (UNIVERSITY OF BRITISH COLUMBIA) & PROFESSOR BENNY MANTIN (UNIVERSITY OF WATERLOO) VARIABILITY PROFESSOR DAVID GILLEN (UNIVERSITY OF BRITISH COLUMBIA) & PROFESSOR BENNY MANTIN (UNIVERSITY OF WATERLOO) Istanbul Technical University Air Transportation Management M.Sc. Program Logistic

More information

TOPIC: Process Fundamentals I

TOPIC: Process Fundamentals I Dr. Rogelio Oliva SCMT 614 Class XVII Fall 2015 TOPIC: Process Fundamentals I OBJECTIVES & COMPETENCIES: The first module introduces the concept of an operating system, which we define as a system of operating

More information

MANUFACTURING SYSTEM BETP 3814 INTRODUCTION TO MANUFACTURING SYSTEM

MANUFACTURING SYSTEM BETP 3814 INTRODUCTION TO MANUFACTURING SYSTEM MANUFACTURING SYSTEM BETP 3814 INTRODUCTION TO MANUFACTURING SYSTEM Tan Hauw Sen Rimo 1, Engr. Mohd Soufhwee bin Abd Rahman 2, 1 tanhauwsr@utem.edu.my, 2 soufhwee@utem.edu.my LESSON OUTCOMES At the end

More information

Ph.D. Defense: Resource Allocation Optimization in the Smart Grid and High-performance Computing Tim Hansen

Ph.D. Defense: Resource Allocation Optimization in the Smart Grid and High-performance Computing Tim Hansen Ph.D. Defense: Resource Allocation Optimization in the Smart Grid and High-performance Computing Tim Hansen Department of Electrical and Computer Engineering Colorado State University Fort Collins, Colorado,

More information

University of Chicago Graduate School of Business June 8, Riverside Fashions

University of Chicago Graduate School of Business June 8, Riverside Fashions University of Chicago Graduate School of Business June 8, 2006 Riverside Fashions Ken Wilkens arrives early in the mornning to his plant, Riverside Fashions, Inc. in Norris, SC. It is a medium sized apparel

More information

PRODUCT-MIX ANALYSIS WITH DISCRETE EVENT SIMULATION. Raid Al-Aomar. Classic Advanced Development Systems, Inc. Troy, MI 48083, U.S.A.

PRODUCT-MIX ANALYSIS WITH DISCRETE EVENT SIMULATION. Raid Al-Aomar. Classic Advanced Development Systems, Inc. Troy, MI 48083, U.S.A. Proceedings of the 2000 Winter Simulation Conference J. A. Joines, R. R. Barton, K. Kang, and P. A. Fishwick, eds. PRODUCT-MIX ANALYSIS WITH DISCRETE EVENT SIMULATION Raid Al-Aomar Classic Advanced Development

More information

SIMUL8-PLANNER FOR COMPOSITES MANUFACTURING

SIMUL8-PLANNER FOR COMPOSITES MANUFACTURING Proceedings of the 2006 Winter Simulation Conference L. F. Perrone, F. P. Wieland, J. Liu, B. G. Lawson, D. M. Nicol, and R. M. Fujimoto, eds. SIMUL8-PLANNER FOR COMPOSITES MANUFACTURING Kim Hindle Project

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

Homework 1 Fall 2000 ENM3 82.1

Homework 1 Fall 2000 ENM3 82.1 Homework 1 Fall 2000 ENM3 82.1 Jensen and Bard, Chap. 2. Problems: 11, 14, and 15. Use the Math Programming add-in and the LP/IP Solver for these problems. 11. Solve the chemical processing example in

More information

Ch.01 Introduction to Modeling. Management Science / Instructor: Bonghyun Ahn

Ch.01 Introduction to Modeling. Management Science / Instructor: Bonghyun Ahn Ch.01 Introduction to Modeling Management Science / Instructor: Bonghyun Ahn Chapter Topics The Management Science Approach to Problem Solving Model Building: Break-Even Analysis Computer Solution Management

More information

Banks, Carson, Nelson & Nicol

Banks, Carson, Nelson & Nicol Banks, Carson, Nelson & Nicol Discrete-Event System Simulation Purpose To present several examples of simulations that can be performed by devising a simulation table either manually or with a spreadsheet.

More information

Planned Shortages with Back-Orders

Planned Shortages with Back-Orders Planned Shortages with Back-Orders Shortage: when customer demand cannot be met Planned shortages could be beneficial Cost of keeping item is more expensive than the profit from selling it Ex: car 1 Customer

More information

The motivation for Optimizing the Supply Chain

The motivation for Optimizing the Supply Chain The motivation for Optimizing the Supply Chain 1 Reality check: Logistics in the Manufacturing Firm Profit 4% Logistics Cost 21% Profit Logistics Cost Marketing Cost Marketing Cost 27% Manufacturing Cost

More information

Operator Scheduling Using Queuing Theory and Mathematical Programming Models

Operator Scheduling Using Queuing Theory and Mathematical Programming Models STOCHASTIC MODELS OF MANUFACTURING AND SERVICE OPERATIONS SMMSO 2009 Operator Scheduling Using Queuing Theory and Mathematical Programming Models Hesham K. Alfares Systems Engineering Department King Fahd

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

Process design Push-pull boundary 35C03000 Process Analysis and Management Max Finne, Assistant Professor of Information and Service management

Process design Push-pull boundary 35C03000 Process Analysis and Management Max Finne, Assistant Professor of Information and Service management Process design Push-pull boundary 35C03000 Process Analysis and Management Max Finne, Assistant Professor of Information and Service management Arrangements for lectures 9 and 10 In class Studying outside

More information

"Value Stream Mapping How does Reliability play a role in making Lean Manufacturing a Success " Presented by Larry Akre May 17, 2007

Value Stream Mapping How does Reliability play a role in making Lean Manufacturing a Success  Presented by Larry Akre May 17, 2007 "Value Stream Mapping How does Reliability play a role in making Lean Manufacturing a Success " Presented by Larry Akre May 17, 2007 LAKRE 2007 1 Lean Manufacturing What is Lean Manufacturing? A philosophy

More information

Chapter 2 Simulation Examples. Banks, Carson, Nelson & Nicol Discrete-Event System Simulation

Chapter 2 Simulation Examples. Banks, Carson, Nelson & Nicol Discrete-Event System Simulation Chapter 2 Simulation Examples Banks, Carson, Nelson & Nicol Discrete-Event System Simulation Purpose To present several examples of simulations that can be performed by devising a simulation table either

More information

Introduction. Introduction. Introduction LEARNING OBJECTIVES LEARNING OBJECTIVES

Introduction. Introduction. Introduction LEARNING OBJECTIVES LEARNING OBJECTIVES Valua%on and pricing (November 5, 2013) LEARNING OBJECTIVES Lecture 9 Control 1. Understand the importance of inventory control and ABC analysis. 2. Use the economic order quantity (EOQ) to determine how

More information

An Inventory Model with Demand Dependent Replenishment Rate for Damageable Item and Shortage

An Inventory Model with Demand Dependent Replenishment Rate for Damageable Item and Shortage Proceedings of the 2014 International Conference on Industrial Engineering and Operations Management Bali, Indonesia, January 7 9, 2014 An Inventory Model with Demand Dependent Replenishment Rate for Damageable

More information

The Five Focusing Steps

The Five Focusing Steps Back to Basic TOC The Five Focusing Steps Presented by: Eli Schragenheim Blog: www.elischragenheim.com elischragenheim@gmail.com Date: January 27, 2018 The power of having an insight Having an insight

More information

Process Costing. Chapter 17 ACCT Fall Jay K. Baker, MSFS, MBA, CPA, CFP

Process Costing. Chapter 17 ACCT Fall Jay K. Baker, MSFS, MBA, CPA, CFP Process Costing Chapter 17 ACCT 3270 Fall 2016 Jay K. Baker, MSFS, MBA, CPA, CFP J. Keith Baker 2015 Job Costing Versus Process Costing LO 17-1 Identify the situations in which process-costing systems

More information

Real Time Management of All Operational Domains and Workflows in Your Laboratory. Chris Christopher Csquared Global Healthcare Consulting

Real Time Management of All Operational Domains and Workflows in Your Laboratory. Chris Christopher Csquared Global Healthcare Consulting Real Time Management of All Operational Domains and Workflows in Your Laboratory Chris Christopher Csquared Global Healthcare Consulting Objective: Chris Christopher Csquared Global Healthcare Consulting

More information

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

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

More information

Modeling, Analysis, Simulation and Control of Semiconductor Manufacturing Systems: A Generalized Stochastic Colored Timed Petri Net Approach

Modeling, Analysis, Simulation and Control of Semiconductor Manufacturing Systems: A Generalized Stochastic Colored Timed Petri Net Approach Modeling, Analysis, Simulation and Control of Semiconductor Manufacturing Systems: A Generalized Stochastic Colored Timed Petri Net Approach Ming-Hung Lin and Li-Chen F u Dept. of Computer Science and

More information

A typical manufacturing plant

A typical manufacturing plant CHAPTER6: PRODUCTION PLANNING & CONTROL Production planning is concerned with the determination of production, inventory, and work force levels to meet fluctuating demand A typical manufacturing plant

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

Sales and Operations Planning (S&OP) WHAT S STOPPING YOU? Kaushik Dutta

Sales and Operations Planning (S&OP) WHAT S STOPPING YOU? Kaushik Dutta Sales and Operations Planning (S&OP) WHAT S STOPPING YOU? by Kaushik Dutta Agenda Sales and Operations planning 10-step methodology Key considerations Summary 2 S&OP it s all about ALIGNMENT Vision Goals

More information

Simulation. Supplement B. Simulation 1. Simulation. Supplement B. Specialty Steel Products Co. Example B.1. Specialty Steel Products Co. Example B.

Simulation. Supplement B. Simulation 1. Simulation. Supplement B. Specialty Steel Products Co. Example B.1. Specialty Steel Products Co. Example B. Supplement B Simulation Simulation Simulation: The act of reproducing the behavior of a system using a model that describes the processes of the system. Time Compression: The feature of simulations that

More information

Industrial Engineering Prof. Inderdeep Singh Department of Mechanical and Industrial Engineering Indian Institute of Technology, Roorkee

Industrial Engineering Prof. Inderdeep Singh Department of Mechanical and Industrial Engineering Indian Institute of Technology, Roorkee Industrial Engineering Prof. Inderdeep Singh Department of Mechanical and Industrial Engineering Indian Institute of Technology, Roorkee Module - 04 Lecture - 04 Sales Forecasting I A very warm welcome

More information