Models and Simulation for Bulk Gas Production/Distribution

Size: px
Start display at page:

Download "Models and Simulation for Bulk Gas Production/Distribution"

Transcription

1 Models and Simulation for Bulk Gas Production and Distribution Wasu Glankwamdee Jackie Griffin Jeff Linderoth Jierui Shen ISE Department Lehigh University Jim Hutton Peter Connard Air Products EWO Annual Meeting Pittsburgh, Pennsylvania November 9, 2006

2 Liquid Bulk Gas Production-Distribution LIN LOX LOX Sites S LOX Products P = {LOX, LIN} Customers C LIN LOX LIN LIN LOX LIN LOX LOX LIN LOX Planning Problem How should one set production levels at the sites s S and sourcing decisions (amount delivered from s S to c C) in order to meet customer demand at minimum cost? Research Scope We are interested in understanding the benefit of considering finer-grain and stochastic/robust planning models.

3 Bulk Gas Wrinkles Production Most sites operate in two modes: Regular Mode Extended Mode (Costs more than regular) Physics of Production: Maximum total production (LOX + LIN) Individual production limit (Fraction of total) Competitor Arrangements Enter contractual take-or-pay arrangements with competitors Allowed to remove (equal) fixed amount of product from each other s sites: Q S : Set of Pick up locations R S : Set of Taken out locations

4 A Simple Planning Model Objective Production Cost + Distribution Cost min ps x ps + β ps e ps ) + p P s S(α (f sc y psc ) p P s S c C Variables x ps : Regular production amount of p P at s S e ps : Extended production amount of p P at s S y psc : Amount of p P shipped from s S to c C Parameters α ps : Regular mode per unit production cost of p P at s S β ps : Extended mode per unit production cost of p P at s S f sc per-unit delivery cost from s S to c C

5 Constraints Maximum Production Level x ps M s, e ps N s s S p P p P x ps Λ p M s, e ps Λ p N s p P, s S Parameters M s : Regular mode maximum total production at s S N s : Extended mode maximum total production at s S Λ P : Maximum air-fraction of p P This is a fairly crude model of production.

6 Constraints Contract Amount Limit x pq Φ p q Q Customer Demand y psc B pc, s S p P p P, c C Parameters Φ p : Contract amount for p P B pc : Customer c C demand for p P Wrinkles Can add (penalized) shortage variable v pc : y psc + v pc B pc s S

7 Constraints Site Inventory Balance x ps + e ps c C y psc z ps = I ps, p P, s S Resource: Driver Hours and Truck Hours d sc y psc D s, s S p P c C d sc y psc K ps, p P, s S c C Parameters I ps : Change in inventory of p P at s S z ps : Amount of p P competitor removes from s S D s : Available driver hours at s S K ps : Available truck hours of p P at s S

8 Using the Production-Distribution Model Model is used to set monthly production levels and customer sourcing decisions. Sometimes, during the course of the month, things get out of skew. There can be a disconnect between planning and scheduling! A customer is about to be run out. Plants don t have enough product to meet short-term customer demand. What Happens in Practice Daily planners attempt to do a manual adjustment to the monthly schedule in order to meet customer demand. Sometimes, the planning model will be re-run given the current (changed) input conditions.

9 Why? One Possible Explanation Known variation in plant supply and customer demand during the course of the month I(t) Customer Usage Aggregate/Prorated Delivery Volume True Customer Inventory t What s the Cure? The rescheduling burden can be alleviated by solving the model at a finer time aggregation.

10 Why? Another Possible Explanation Unknown (random) variation in components of the model A plant just went down for an unscheduled maintenance. A customer used three times as much as forecasted. I(t) t What s the Cure? In those cases, a planning model that directly deals with the inherent uncertainty might be warranted: Stochastic Programming Robust Optimization

11 What to Do? Research Scope We are interested in understanding the benefit of considering finer-grain and stochastic/robust planning models. Step #1 Build and experiment with a multi-period version of the planning model Allow us to experiment with instances solved at variety of time grains Need a multi-period model in order to create a stochastic model anyway

12 A Multi-Period Planning Model T = {1, 2,..., T }: Set of time periods Essentially add a time index to all the variables and parameters Make (site) inventory a variable that can be carried from one period to the next: x pst + e pst c C y psct z pst + I ps,t 1 I pst = 0 p, s, t Also add inventory cost to objective: γ ps I pst p P s S t T

13 Creating the Model Model is built and created in Mosel modeling language. If we wish to build a stochastic programming model later on, Mosel has modules for building stochastic programs. Model reads instance data from (properly formatted) text files.

14 The Facts 1 Models need data. 2 Data is hard to come by. 3 We will create our own data. Instance Generation-Simulation code created in C++. Data is random, but reasonable. Sites Daily Production Rate With Random Outage Customers: Normally Distributed On-Off Specific Needs Call-In As an added bonus, an entire distribution of performance statistics can be produced.

15 Normally Distributed Daily demand is N (µ, σ 2 ). Daily demand is independent.

16 Zero Or Normally Distributed (On-Off) With probability p > 0, daily demand is 0. Else, daily demand is N (µ, σ 2 ). Daily demand is independent.

17 Specific Needs Demand is typically N (µ, σ 2 ). But at certain points in time, the customer try a new process, requiring significantly more consumption. Daily demand is not independent.

18 Call-In Demand is typically 0. But at certain points in time, the customer require significant (nearly constant) daily consumption. Examples: Cranberry season. Flash-freezing fish harvest. Daily demand is not independent.

19 Class Structure InstanceFamily NumDays vector<site> vector<customer> Instance Something that can be solved! create(instancefamily &if, vector<int> &daysperperiod) Each class has a makerandom() method to instantiate itself with random, reasonable, data. When real data is available, we can extended the classes to instantiate themselves by reading from a file.

20 So What? The $64 Question What should we do with this framework? This is a fundamental question for an enterprise-wide optimization (EWO) initiative. Just because XPRESS says a solution is better doesn t make it so. How do you convince a user that an enterprise-engineered solution really will have a big impact on the operation?

21 Experiment Horse Race 0. t = Generate a solution (policy) x p : Single Period Model Multi-Period Model 2. Implement x p for some simulation increment. This costs c p t. 3. Re-sample data (demand). 4. The re-sampled data generates a new instance with different input state. Let t = t + 1. Goto 1.

22 More Code Details Find solution policy x p XPRMrunmod(ewoMod, &result, NULL)); Retrieve solution from solver into Instance class // Set the solution from the Mosel model instance.setsolution(ewomod);

23 Follow The Solution 1 Produce at rate suggested by solution for simulation increment amount of time. 2 Make deliveries for (vector<delivery>::const_iterator it = instance.getdeliveriesbegin(); it!= instance.getdeliveriesend(); ++it) { amt = lpsolutionvalue (from XPRESS); if (period == 1) { int n1 = sim.getsimulincrementsize(); int n2 = daysperperiod[period-1]; assert(n1 <= n2); double tamt = (amt * n1)/n2; double dc = instancefamily.makedelivery(p, s, c, tamt, n1); sim.incrementdeliverycost(dc); } }

24 Make Delivery Like Simulation // Deliver only if customer inventory will be less than safety // stock in the next period if (ci - predictdemand[0] < CUSTOMER_DAILY_SAFETY_STOCK) { // Deliver in an increment of TRUCK_SIZE while(ci - predictdemand[0] + damt < CUSTOMER_DAILY_SAFETY_STOCK) { damt += TRUCK_SIZE; } } // Here increment the date in instancefamily -- updates true // customer inventories based on a new sample instancefamily.movetimeforward(sim.getsimulincrementsize());

25 Preliminary Results C = 200, S = 10. Horizon: 28 days. Simulation Increment: 7 days. Total Cost (M) Customer Shortages Base Policy Avg Median Stdev Avg Median Stdev Single Period Two Periods Four Periods Base Policy RPC (M) EPC (M) DC (M) Single Period Two Periods Four Periods

26 Cost Distributions for Different Base Policies Single Period Two Periods Four Periods

27 Conclusions Many planning methodologies result in a disconnect between strategic and tactical solutions. An important question for EWO: What real impact can you expect if you do things differently? To help answer this question, simulation can be a useful tool. The finer time aggregation model shows promising results. As an added bonus, you can produce an entire distribution of performance statistics. Optimization Under Uncertainty Helping a decision maker to find a good distribution.

28 What s Next? A Stochastic Model The World Is Random! In the planning model, make parameters functions of some random variable ω M st (ω), N st (ω): Production Capacity Uncertain B pct (ω): Demand for product p from customer c in period t is uncertain z prt (ω): Amount of product p contract partner takes out at site r in period t is uncertain. Typically r R t T z prt(ω) = Φ p

29 We Love Σ, Ye We Do! min X X X η X n(α psnx psn+β psne psn+γ psi psn)+ X X X η X n(f scy pscn)+ X X η n p P s S n N p P s S c C n N p P c C n N (1a) X s.t x psn M sn, s S, n N (1b) p P X e psn N sn, s S, n N (1c) p P x psn Λ pm sn, p P, s S, n N (1d) e psn Λ pn sn, p P, s S, n N (1e) X y pscn + u pc,ρ(n) v pc,ρ(n) B pcn = u pcn v pcn, p P, c C, n N(1f) s S X y prcn I pr,ρ(n) x prn e prn + I prn = z prn, p P, r R, n N (1g) c C X y pscn I ps,ρ(n) x psn e psn + I psn = 0, p P, s S\R, n N (1h) c C X x pqn + φ pn = φ p,ρ(n), p P, n N (1i) q Q X X d scy pscn D sn, s S, n N (1j) p P c C X d scy pscn K psn, p P, s S, n N (1k) c C I psn U ps, p P, s S, n N (1l) I psn Γ psi ps0, p P, s S, n N (T (1m) + 1) φ pn Models 0, p and Simulation P, n for N Bulk Gas Production/Distribution (1n)

30 What s Next? Transfer Technology to Air Products Run on Real Data Need to write code to instantiate objects from data files Keep Considering Uncertainty! Minimax Model Robust Optimization Model Stochastic model Disruption Planning: consider more extreme scenarios. Help build contingency lists for sourcing decisions.

31 Next Steps Tactical Decision Making Adapt to run simulation on various tactical models. (Smaller time grain) Cost of Regionalization Use simulation to estimate the cost of first doing sourcing assignment, then setting production level and devliery amounts

AP Stats ~ Lesson 8A: Confidence Intervals OBJECTIVES:

AP Stats ~ Lesson 8A: Confidence Intervals OBJECTIVES: AP Stats ~ Lesson 8A: Confidence Intervals OBJECTIVES: DETERMINE the point estimate and margin of error from a confidence interval. INTERPRET a confidence interval in context. INTERPRET a confidence level

More information

A Multi-Objective Approach to Simultaneous Strategic and Operational Planning in Supply Chain Design

A Multi-Objective Approach to Simultaneous Strategic and Operational Planning in Supply Chain Design A Multi-Objective Approach to Simultaneous Strategic and Operational Planning in Supply Chain Design Ehap H. Sabri i2 Technologies 909 E. Las Colinas Blvd. Irving, TX 75039 Benita M. Beamon Industrial

More information

Global Supply Chain Planning under Demand and Freight Rate Uncertainty

Global Supply Chain Planning under Demand and Freight Rate Uncertainty Global Supply Chain Planning under Demand and Freight Rate Uncertainty Fengqi You Ignacio E. Grossmann Nov. 13, 2007 Sponsored by The Dow Chemical Company (John Wassick) Page 1 Introduction Motivation

More information

Risk Analysis Overview

Risk Analysis Overview Risk Analysis Overview What Is Risk? Uncertainty about a situation can often indicate risk, which is the possibility of loss, damage, or any other undesirable event. Most people desire low risk, which

More information

Thus, there are two points to keep in mind when analyzing risk:

Thus, there are two points to keep in mind when analyzing risk: One-Minute Spotlight WHAT IS RISK? Uncertainty about a situation can often indicate risk, which is the possibility of loss, damage, or any other undesirable event. Most people desire low risk, which would

More information

Introduction to Analytics Tools Data Models Problem solving with analytics

Introduction to Analytics Tools Data Models Problem solving with analytics Introduction to Analytics Tools Data Models Problem solving with analytics Analytics is the use of: data, information technology, statistical analysis, quantitative methods, and mathematical or computer-based

More information

Stochastic Gradient Approach for Energy and Supply Optimisation in Water Systems Management

Stochastic Gradient Approach for Energy and Supply Optimisation in Water Systems Management 22nd International Congress on Modelling and Simulation, Hobart, Tasmania, Australia, 3 to 8 December 217 mssanz.org.au/modsim217 Stochastic Gradient Approach for Energy and Supply Optimisation in Water

More information

SAP Integrated Business Planning (IBP) Towards Digital Now

SAP Integrated Business Planning (IBP) Towards Digital Now SAP Integrated Business Planning (IBP) Towards Digital Now Digital transformation is changing the way we sell, buy, distribute, store, plan, communicate, organize, collaborate and generally speak the essence

More information

Dynamic Simulation and Supply Chain Management

Dynamic Simulation and Supply Chain Management Dynamic Simulation and Supply Chain Management White Paper Abstract This paper briefly discusses how dynamic computer simulation can be applied within the field of supply chain management to diagnose problems

More information

SCM Workshop, TU Berlin, October 17-18, 2005

SCM Workshop, TU Berlin, October 17-18, 2005 H.-O. Günther Dept. of Production Management Technical University of Berlin Supply Chain Management and Advanced Planning Systems A Tutorial SCM Workshop, TU Berlin, October 17-18, 2005 Outline Introduction:

More information

COORDINATING DEMAND FORECASTING AND OPERATIONAL DECISION-MAKING WITH ASYMMETRIC COSTS: THE TREND CASE

COORDINATING DEMAND FORECASTING AND OPERATIONAL DECISION-MAKING WITH ASYMMETRIC COSTS: THE TREND CASE COORDINATING DEMAND FORECASTING AND OPERATIONAL DECISION-MAKING WITH ASYMMETRIC COSTS: THE TREND CASE ABSTRACT Robert M. Saltzman, San Francisco State University This article presents two methods for coordinating

More information

Converting S&OP Strategies into Detailed Planning Direction, Scenarios and Guideposts

Converting S&OP Strategies into Detailed Planning Direction, Scenarios and Guideposts Converting S&OP Strategies into Detailed Planning Direction, Scenarios and Guideposts Preamble One of the biggest disconnects in S&OP implementations is the transfer of process information The conversion

More information

It s Not Just Stuff Back There By Scott Stratman Founder The Distribution Team

It s Not Just Stuff Back There By Scott Stratman Founder The Distribution Team It s Not Just Stuff Back There By Scott Stratman Founder The Distribution Team In the today s highly competitive market, how we handle and manage our assets directly impacts our ability to compete and

More information

Chapter 2 Forecasting

Chapter 2 Forecasting Chapter 2 Forecasting There are two main reasons why an inventory control system needs to order items some time before customers demand them. First, there is nearly always a lead-time between the ordering

More information

PROCUREMENT-DISTRIBUTION MODEL FOR PERISHABLE ITEMS WITH QUANTITY DISCOUNTS INCORPORATING FREIGHT POLICIES UNDER FUZZY ENVIRONMENT

PROCUREMENT-DISTRIBUTION MODEL FOR PERISHABLE ITEMS WITH QUANTITY DISCOUNTS INCORPORATING FREIGHT POLICIES UNDER FUZZY ENVIRONMENT Yugoslav Journal of Operations Research 23 (23) Number 2, 83-96 DOI:.2298/YJOR3229M PROCUREMENT-DISTRIBUTION MODEL FOR PERISHABLE ITEMS WITH QUANTITY DISCOUNTS INCORPORATING FREIGHT POLICIES UNDER FUZZY

More information

Your schedule is the most important system in your office as it IMPACTS (Everyone)

Your schedule is the most important system in your office as it IMPACTS (Everyone) Your schedule is the most important system in your office as it IMPACTS (Everyone) Business 101 Why is this important? Take off your dental hat and put on your business hat What is a schedule? Scheduling

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

Project Managers Guide to Systems Engineering Measurement for Project Success

Project Managers Guide to Systems Engineering Measurement for Project Success Practical Software and Systems Measurement Project Managers Guide to Systems Engineering Measurement for Project Success June 16, 2017 Greg Niemann gregory.niemann@lmco.com Project Managers Guide to Systems

More information

Mobile Marketing. This means you need to change your strategy for marketing to those people, or risk losing them to your competition.

Mobile Marketing. This means you need to change your strategy for marketing to those people, or risk losing them to your competition. Mobile Marketing Introduction Mobile marketing is one of the fastest growing segments of online marketing. Over the last two to three years, the number of people who access the internet on mobile devices

More information

ESTIMATION OF BRIDGE LIFE CYCLE MAINTENANCE COSTS USING RELIABILITY-BASED MODEL

ESTIMATION OF BRIDGE LIFE CYCLE MAINTENANCE COSTS USING RELIABILITY-BASED MODEL ESTIMATION OF BRIDGE LIFE CYCLE MAINTENANCE COSTS USING RELIABILITY-BASED MODEL Rong-Yau Huang, PhD, Professor National Central University, Taoyuan County, Taiwan rhuang@cc.ncu.edu.tw I-Shiang Mao, PhD

More information

There seems to be a universal agreement on what a supply chain is. Jayashankar et al. [25] defines a supply chain to be

There seems to be a universal agreement on what a supply chain is. Jayashankar et al. [25] defines a supply chain to be ne previo conten Next: Intelligent Agents Up: No Title Previous: Introduction Supply Chain Management Introduction This chapter aims to give the supply chain management side of the theoretical background

More information

Predictions of Nuclear Energy Market Share in the U.S. Electricty Market

Predictions of Nuclear Energy Market Share in the U.S. Electricty Market Predictions of Nuclear Energy Market Share in the U.S. Electricty Market The 25th USAEE/IAEE North American September 21, 2005 A. Yacout, G. Conzelmann, V. Koritarov, L. Van Den Durpel Argonne National

More information

Multi-Echelon Inventory Management for a Fresh Produce Retail Supply Chain

Multi-Echelon Inventory Management for a Fresh Produce Retail Supply Chain Multi-Echelon Inventory Management for a Fresh Produce Retail Supply Chain By Thomas Hsien and Yogeshwar D. Suryawanshi Thesis Advisor: Dr. Amanda Schmitt Summary: Chiquita, a fresh produce distributor

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

Written Paper. Global Perspectives. Written Paper

Written Paper. Global Perspectives. Written Paper Component 3 Written Paper Global Perspectives Written Paper Contents Paper 3 Specimen paper Paper 3 Specimen insert Paper 3 Specimen mark scheme Cambridge IGCSE Global Perspectives Written Paper 1 UNIVERSITY

More information

Lecture 10: Managing Uncertainty in the Supply Chain (Safety Inventory) INSE 6300/4-UU. Overview

Lecture 10: Managing Uncertainty in the Supply Chain (Safety Inventory) INSE 6300/4-UU. Overview ecture 10: Managing Uncertainty in the Supply Chain (Safety Inventory) INSE 6300/4-UU Quality Assurance In Supply Chain Management Quality Assurance in Supply Chain Management (INSE 6300/4-UU) Winter 011

More information

Oracle Production Scheduling. Maximize shop floor throughput and optimize resource utilization

Oracle Production Scheduling. Maximize shop floor throughput and optimize resource utilization Oracle Production Scheduling Maximize shop floor throughput and optimize resource utilization Typical Scheduling Challenges How can you: Sequence orders to best use your production resources? Offload production

More information

Best practices in demand and inventory planning

Best practices in demand and inventory planning whitepaper Best practices in demand and inventory planning WHITEPAPER Best Practices in Demand and Inventory Planning 2 about In support of its present and future customers, Aptean sponsored this white

More information

Throw Out Fixed And Variable Cost Thinking Bring In Activity-Based Costing To Business Decisions

Throw Out Fixed And Variable Cost Thinking Bring In Activity-Based Costing To Business Decisions W H I T E P A P E R I Throw Out Fixed And Variable Cost Thinking Bring In Activity-Based Costing To Business Decisions BY D R. R O G E R K. H A R V E Y Dr. Roger K. Harvey is President of Value Associates,

More information

- Stratified Samples - Systematic Samples - Samples can vary - Standard Error

- Stratified Samples - Systematic Samples - Samples can vary - Standard Error - Stratified Samples - Systematic Samples - Samples can vary - Standard Error - From last time: A sample is a small collection we observe and assume is representative of a larger sample. Example: You haven

More information

// How Traditional Risk Reporting Has Let Us Down

// How Traditional Risk Reporting Has Let Us Down // How Traditional Risk Reporting Has Let Us Down Dr. Dan Patterson, PMP CEO & President, Acumen November 2012 www.projectacumen.com Table of Contents Introduction... 3 What is Project Risk Analysis?...

More information

Algorithmic Bias? An Empirical Study into Apparent Gender-Based Discrimination in the Display of STEM Career Ads. Anja Lambrecht and Catherine Tucker

Algorithmic Bias? An Empirical Study into Apparent Gender-Based Discrimination in the Display of STEM Career Ads. Anja Lambrecht and Catherine Tucker Algorithmic Bias? An Empirical Study into Apparent Gender-Based Discrimination in the Display of STEM Career Ads Anja Lambrecht and Catherine Tucker Research Question What may make an ad serving algorithm

More information

The rheumatoid arthritis drug development model: a case study in Bayesian clinical trial simulation

The rheumatoid arthritis drug development model: a case study in Bayesian clinical trial simulation The rheumatoid arthritis drug development model: a case study in Bayesian clinical trial simulation Richard Nixon, Modeling and Simulation, Novartis PSI journal club, 2010 March 24 1 Bayesian clinical

More information

Descriptive Statistics Tutorial

Descriptive Statistics Tutorial Descriptive Statistics Tutorial Measures of central tendency Mean, Median, and Mode Statistics is an important aspect of most fields of science and toxicology is certainly no exception. The rationale behind

More information

Forecasting for Short-Lived Products

Forecasting for Short-Lived Products HP Strategic Planning and Modeling Group Forecasting for Short-Lived Products Jim Burruss Dorothea Kuettner Hewlett-Packard, Inc. July, 22 Revision 2 About the Authors Jim Burruss is a Process Technology

More information

Supply Chain Design and Alignment

Supply Chain Design and Alignment Supply Chain Design and Alignment A supply chain let s a company move product from its source to its final consumption. Companies now use their supply chain as a competitive weapon to compete. The activities,

More information

Multi-Stage Scenario Tree Generation via Statistical Property Matching

Multi-Stage Scenario Tree Generation via Statistical Property Matching Multi-Stage Scenario Tree Generation via Statistical Property Matching Bruno A. Calfa, Ignacio E. Grossmann Department of Chemical Engineering Carnegie Mellon University Pittsburgh, PA 15213 Anshul Agarwal,

More information

Planning Optimized. Building a Sustainable Competitive Advantage WHITE PAPER

Planning Optimized. Building a Sustainable Competitive Advantage WHITE PAPER Planning Optimized Building a Sustainable Competitive Advantage WHITE PAPER Planning Optimized Building a Sustainable Competitive Advantage Executive Summary Achieving an optimal planning state is a journey

More information

RAISING THE STANDARD THE NEW ISO RISK MANAGEMENT STANDARD

RAISING THE STANDARD THE NEW ISO RISK MANAGEMENT STANDARD RAISING THE STANDARD THE NEW ISO RISK MANAGEMENT STANDARD Grant Purdy Associate Director, Broadleaf Capital International Chair, Standards Australia and Standards New Zealand Risk Management Committee,

More information

THE VALUE OF DISCRETE-EVENT SIMULATION IN COMPUTER-AIDED PROCESS OPERATIONS

THE VALUE OF DISCRETE-EVENT SIMULATION IN COMPUTER-AIDED PROCESS OPERATIONS THE VALUE OF DISCRETE-EVENT SIMULATION IN COMPUTER-AIDED PROCESS OPERATIONS Foundations of Computer Aided Process Operations Conference Ricki G. Ingalls, PhD Texas State University Diamond Head Associates,

More information

Effective Integration of Theory and Practice

Effective Integration of Theory and Practice Effective Integration of Theory and Practice Michael F. Gorman Department of MIS, OM, DSC University of Dayton Spotlight on Advanced Research and Scholarship November 19, 2010 1 Presentation Overview Integration

More information

Infor ERP LN 6.1 Enterprise Planning. User's Guide for Order Planning

Infor ERP LN 6.1 Enterprise Planning. User's Guide for Order Planning Infor ERP LN 6.1 Enterprise Planning User's Guide for Order Planning Copyright 2008 Infor All rights reserved. The word and design marks set forth herein are trademarks and/or registered trademarks of

More information

The Challenger TM Customer: THE NEW REALITY OF SALES

The Challenger TM Customer: THE NEW REALITY OF SALES The Challenger TM Customer: THE NEW REALITY OF SALES FOREWORD Imagine your ideal customer: friendly, eager to meet, ready to buy and become an advocate of your products and services. It turns out that

More information

I have neither given nor received help on this exam. Signature

I have neither given nor received help on this exam. Signature Print Name Possible Actual Problem Points Points 1 25 2 25 3 25 4 25 Total 100 At N.C. State Univ. the honor system is used. That means that you do your own work, you don t accept help from anybody else,

More information

Periodic Measurement of Advertising Effectiveness Using Multiple-Test-Period Geo Experiments

Periodic Measurement of Advertising Effectiveness Using Multiple-Test-Period Geo Experiments Periodic Measurement of Advertising Effectiveness Using Multiple-Test-Period Geo Experiments Jon Vaver, Jim Koehler Google Inc Abstract 1 Introduction In a previous paper [6] we described the application

More information

10 ways to make your field service organization a profit center

10 ways to make your field service organization a profit center 10 ways to make your field service organization a profit center The goal of this ebook is to help you move your field service operations from a cost center to a profit center, and we ll outline 10 ways

More information

Consensus Demand Management for Better Planning. You can t survive without it! Ken Titmuss, CFPIM, CSCP, CPF, SCOR P, PLS

Consensus Demand Management for Better Planning. You can t survive without it! Ken Titmuss, CFPIM, CSCP, CPF, SCOR P, PLS Consensus Demand Management for Better Planning You can t survive without it! Ken Titmuss, CFPIM, CSCP, CPF, SCOR P, PLS Ken Titmuss Ken Titmuss, CPIM, CFPIM, CSCP, has an Honours degree in Production

More information

RRS Education Session #1

RRS Education Session #1 RRS Education Session #1 Patricio Rocha Garrido Sr. Engineer Resource Adequacy Planning 11/24/2015 IRM/FPR Basics - Rationale IRM/FPR are computed for future delivery years. And the future is uncertain

More information

How ToolsGroup s SO99+ Complements SAP APO

How ToolsGroup s SO99+ Complements SAP APO White Paper Powerfully Simple How ToolsGroup s SO99+ Complements SAP APO March, 2014 White Paper Powerfully Simple The SAP Planning Platform 3 What s Changed? 3 More Products, Shorter Life Spans 4 Planner

More information

Transportation Optimization: Is This the Next Step?

Transportation Optimization: Is This the Next Step? Transportation Optimization: Is This the Next Step? By Irista, An HK Systems Company Cost reduction through effective transportation management remains a high priority for most organizations. The challenges

More information

The Effects of Management Accounting Systems and Organizational Commitment on Managerial Performance

The Effects of Management Accounting Systems and Organizational Commitment on Managerial Performance The Effects of Management Accounting Systems and Organizational Commitment on Managerial Performance Yao-Kai Chuang, Tajen University, Pingtung, Taiwan ABSTRACT This Study examines the interactive effects

More information

CTL.SC1x -Supply Chain & Logistics Fundamentals. Connecting the Dots. MIT Center for Transportation & Logistics

CTL.SC1x -Supply Chain & Logistics Fundamentals. Connecting the Dots. MIT Center for Transportation & Logistics CTL.SC1x -Supply Chain & Logistics Fundamentals Connecting the Dots MIT Center for Transportation & Logistics Forecasting Approaches Product Technology Current (Have History) New (No History) Market Current

More information

Best Practices in Demand and Inventory Planning

Best Practices in Demand and Inventory Planning W H I T E P A P E R Best Practices in Demand and Inventory Planning for Chemical Companies Executive Summary In support of its present and future customers, CDC Software sponsored this white paper to help

More information

Challenges of Strategic Supply Chain Planning and Modeling

Challenges of Strategic Supply Chain Planning and Modeling Challenges of Strategic Supply Chain Planning and Modeling Jeremy F. Shapiro FOCAPO 2003 January 13, 2003 jshapiro@slimcorp.com Copyright 2003 by Jeremy F. Shapiro. All rights reserved. 1 Agenda 1. Introduction

More information

Operation and supply chain management Prof. G. Srinivasan Department of Management Studies Indian Institute of Technology Madras

Operation and supply chain management Prof. G. Srinivasan Department of Management Studies Indian Institute of Technology Madras Operation and supply chain management Prof. G. Srinivasan Department of Management Studies Indian Institute of Technology Madras Lecture - 37 Transportation and Distribution Models In this lecture, we

More information

Justifying Advanced Finite Capacity Planning and Scheduling

Justifying Advanced Finite Capacity Planning and Scheduling Justifying Advanced Finite Capacity Planning and Scheduling Charles J. Murgiano, CPIM WATERLOO MANUFACTURING SOFTWARE 1. Introduction How well your manufacturing company manages production on the shop

More information

Proactive Listening: Taking Action to Meet Customer Expectations

Proactive Listening: Taking Action to Meet Customer Expectations 2013 Proactive Listening: Taking Action to Meet Customer Expectations Summary: Proactive listening lets your company meet your customers demands for coordinated, responsive treatments. A proactive listening

More information

Container packing problem for stochastic inventory and optimal ordering through integer programming

Container packing problem for stochastic inventory and optimal ordering through integer programming 20th International Congress on Modelling and Simulation, Adelaide, Australia, 1 6 December 2013 www.mssanz.org.au/modsim2013 Container packing problem for stochastic inventory and optimal ordering through

More information

Project 2 - β-endorphin Levels as a Response to Stress: Statistical Power

Project 2 - β-endorphin Levels as a Response to Stress: Statistical Power Score: Name: Due Wednesday, April 10th in class. β-endorphins are neurotransmitters whose activity has been linked to the reduction of pain in the body. Elite runners often report a runners high during

More information

Using Simulation in the Process Industries. Bennett Foster Sr. Consultant, DuPont Co.

Using Simulation in the Process Industries. Bennett Foster Sr. Consultant, DuPont Co. Using Simulation in the Process Industries Bennett Foster Sr. Consultant, DuPont Co. What s different about the Process Industries? Processes are often difficult (and/or expensive) to start and stop Relatively

More information

Unified Commerce is the. Future of Retail

Unified Commerce is the. Future of Retail Unified Commerce is the Future of Retail The goal is to provide an uninterrupted buying journey transacted across multiple channels and devices (often simultaneously) supported by an IT infrastructure

More information

Strategic Engineering of Large Infrastructure Systems: Real Options, Staged Development, and the Role of Flexibility

Strategic Engineering of Large Infrastructure Systems: Real Options, Staged Development, and the Role of Flexibility Strategic Engineering of Large Infrastructure Systems: Real Options, Staged Development, and the Role of Flexibility Jijun Lin Prof. Olivier de Weck, Prof. Richard de Neufville Dr. Afreen Siddiqi Dec.

More information

Flexible Fulfillment Playbook

Flexible Fulfillment Playbook The Flexible Fulfillment Playbook Omni-Channel Strategies for Retail Supply Chain Executives Demand Fulfillment SUPPLIER DC CUSTOMER CUSTOMER CUSTOMER CUSTOMER In today s pressure-packed, highly variable

More information

Information That Predicts

Information That Predicts Information That Predicts Crystal Ball s Solutions for Financial Forecasting and Analysis O R A C L E W H I T E P A P E R N O V E M B E R 2 0 1 7 Table of Contents Introduction 1 Make Superior Financial

More information

Copyright K. Gwet in Statistics with Excel Problems & Detailed Solutions. Kilem L. Gwet, Ph.D.

Copyright K. Gwet in Statistics with Excel Problems & Detailed Solutions. Kilem L. Gwet, Ph.D. Confidence Copyright 2011 - K. Gwet (info@advancedanalyticsllc.com) Intervals in Statistics with Excel 2010 75 Problems & Detailed Solutions An Ideal Statistics Supplement for Students & Instructors Kilem

More information

Central vs. Distributed Stocks: Trends in Logistic Network Design

Central vs. Distributed Stocks: Trends in Logistic Network Design Central vs. Distributed Stocks: Trends in Logistic Network Design Northeast Supply Chain Conference Cambridge, MA 2004 Bruce True, Welch s and Michael Watson, Logic Tools 1 Agenda Introduction to Network

More information

Participation of Renewables in Electricity Markets

Participation of Renewables in Electricity Markets Participation of Renewables in Electricity Markets Pierre Pinson Technical University of Denmark. DTU Electrical Engineering - Centre for Electric Power and Energy mail: ppin@dtu.dk - webpage: www.pierrepinson.com

More information

Case Study. Cosma International improves systems through collaboration with Solarsoft. Customer Spotlight.

Case Study. Cosma International improves systems through collaboration with Solarsoft.  Customer Spotlight. Case Study Cosma International improves systems through collaboration with Solarsoft Customer Spotlight Victor Manufacturing (Cosma) Tier-1 supplier of automotive assemblies A division of Magna International

More information

Driving Strategic Planning with Predictive Modeling O R A C L E W H I T E P A P E R N O V E M B E R

Driving Strategic Planning with Predictive Modeling O R A C L E W H I T E P A P E R N O V E M B E R Driving Strategic Planning with Predictive Modeling O R A C L E W H I T E P A P E R N O V E M B E R 2 0 1 7 Table of Contents Introduction 1 Most Companies Feel the Effect of Uncertainty 1 The Challenge

More information

Marketing Accountability Standards

Marketing Accountability Standards Marketing Accountability Standards Marketing Accountability Journey Marketing, Analytics, and Finance Working Together Tony Pace MASB President/CEO 10 Year Anniversary Marketing Accountability Standards

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

An Optimization Algorithm for the Inventory Routing Problem with Continuous Moves

An Optimization Algorithm for the Inventory Routing Problem with Continuous Moves An Optimization Algorithm for the Inventory Routing Problem with Continuous Moves Martin Savelsbergh Jin-Hwa Song The Logistics Institute School of Industrial and Systems Engineering Georgia Institute

More information

PRODUCTION PLANNING SYSTEM CHAPTER 2

PRODUCTION PLANNING SYSTEM CHAPTER 2 9 PRODUCTION PLANNING SYSTEM CHAPTER 2 ANSWERS TO PROBLEMS 2.1 Ending inventory = opening inventory + production demand = 400 + 700 900 = 200 units 2.2 Total working days = 19 + 20 + 21 = 60 Average daily

More information

The Chicken or the Egg - Value Propositions or SWOT?

The Chicken or the Egg - Value Propositions or SWOT? The Chicken or the Egg - Value Propositions or SWOT? A Thought Leadership White Paper By Howard W. Coleman, MCA Associates I just recently caught-up with a Harvard Business Review blog that discussed,

More information

Understanding Type-well Curve Complexities & Analytic Techniques

Understanding Type-well Curve Complexities & Analytic Techniques Understanding Type-well Curve Complexities & Analytic Techniques Reservoir, Evaluation and Production Optimization Luncheon SPE - Calgary Section Dec. 1 st, 2015 Introduction Thank you SPE Disclaimer and

More information

Optimization under Uncertainty. with Applications

Optimization under Uncertainty. with Applications with Applications Professor Alexei A. Gaivoronski Department of Industrial Economics and Technology Management Norwegian University of Science and Technology Alexei.Gaivoronski@iot.ntnu.no 1 Lecture 2

More information

Mathematical Modeling and Analysis of Finite Queueing System with Unreliable Single Server

Mathematical Modeling and Analysis of Finite Queueing System with Unreliable Single Server IOSR Journal of Mathematics (IOSR-JM) e-issn: 2278-5728, p-issn: 2319-765X. Volume 12, Issue 3 Ver. VII (May. - Jun. 2016), PP 08-14 www.iosrjournals.org Mathematical Modeling and Analysis of Finite Queueing

More information

Looking Ahead The Big Opportunity for Network Design - GST Introduction in India

Looking Ahead The Big Opportunity for Network Design - GST Introduction in India Looking Ahead The Big Opportunity for Network Design - GST Introduction in India Executive Summary The supply chain network of a company is seldom optimal. Reasons for the same can often be associated

More information

Broccolini Construction

Broccolini Construction CASE STUDY Broccolini Construction Challenge Broccolini Construction was using Newforma to manage parts of their projects, but needed a way to simplify and standardize their processes. Solution Using Procore

More information

A Stochastic AHP Method for Bid Evaluation Plans of Military Systems In-Service Support Contracts

A Stochastic AHP Method for Bid Evaluation Plans of Military Systems In-Service Support Contracts A Stochastic AHP Method for Bid Evaluation Plans of Military Systems In-Service Support Contracts Ahmed Ghanmi Defence Research and Development Canada Centre for Operational Research and Analysis Ottawa,

More information

Preparing a Business Capability Statement Guide

Preparing a Business Capability Statement Guide Preparing a Business Capability Statement Guide 2015-16 FACTSHEET Why have a Business Capability Statement? One of the most important steps in targeting supply chain opportunities is to communicate your

More information

Tech-Clarity Insight: Improving Portfolio Decision Making. Marrying PPM Best Practice Processes and Technology to Drive ROI

Tech-Clarity Insight: Improving Portfolio Decision Making. Marrying PPM Best Practice Processes and Technology to Drive ROI Tech-Clarity Insight: Improving Portfolio Decision Making Marrying PPM Best Practice Processes and Technology to Drive ROI Tech-Clarity, Inc. 2011 Table of Contents Table of Contents... 2 Executive Overview...

More information

White Paper. Demand Shaping. Achieving and Maintaining Optimal Supply-and-Demand Alignment

White Paper. Demand Shaping. Achieving and Maintaining Optimal Supply-and-Demand Alignment White Paper Demand Shaping Achieving and Maintaining Optimal Supply-and-Demand Alignment Contents Introduction... 1 Sense-Interpret-Respond Architecture... 2 Sales and Operations Planning... 3 Scenario

More information

Abstract Title: Bridging the Aggregation Gap: Supplementing Sales and Operations

Abstract Title: Bridging the Aggregation Gap: Supplementing Sales and Operations Abstract Number: 007-0038 Abstract Title: Bridging the Aggregation Gap: Supplementing Sales and Operations Planning with Inventory Profile Analysis Authors information: James A Robison Sonoma State University

More information

<Insert Picture Here> Strategic Network Optimization, Demantra & Production Scheduling

<Insert Picture Here> Strategic Network Optimization, Demantra & Production Scheduling Strategic Network Optimization, Demantra & Production Scheduling Andy Brisley Solution Consultant Oracle Minneapolis The following is intended to outline our general product direction.

More information

Planning deliveries from end to beginning: an assessment methodology proposal for big cities in developing countries, with real case application

Planning deliveries from end to beginning: an assessment methodology proposal for big cities in developing countries, with real case application Urban Transport XIV 15 Planning deliveries from end to beginning: an assessment methodology proposal for big cities in developing countries, with real case application D. Tacla 1,3, O. F. Lima Jr 1,3,

More information

Troubled Waters. A voyage to more stable safety stock and service levels. By Steve Johanson. 42 July/August 2010 APICS magazine

Troubled Waters. A voyage to more stable safety stock and service levels. By Steve Johanson. 42 July/August 2010 APICS magazine Navigating Troubled Waters A voyage to more stable safety stock and service levels By Steve Johanson 42 July/August 2010 APICS magazine many operations management professionals treat working capital and

More information

SIMULATION MODEL FOR IRP IN PETROL STATION REPLENISHMENT

SIMULATION MODEL FOR IRP IN PETROL STATION REPLENISHMENT SIMULATION MODEL FOR IRP IN PETROL STATION REPLENISHMENT Dražen Popović a,*, Milorad Vidović a, Nenad Bjelić a a University of Belgrade, Faculty of Transport and Traffic Engineering, Department of Logistics,

More information

The Pennsylvania State University. The Graduate School. Department of Industrial and Manufacturing Engineering

The Pennsylvania State University. The Graduate School. Department of Industrial and Manufacturing Engineering The Pennsylvania State University The Graduate School Department of Industrial and Manufacturing Engineering MULTI-ECHELON SUPPLY CHAIN NETWORK DESIGN FOR INNOVATIVE PRODUCTS IN AGILE MANUFACTURING A Thesis

More information

IBM ILOG Inventory and Product Flow Analyst (IPFA)

IBM ILOG Inventory and Product Flow Analyst (IPFA) IBM ILOG Inventory and Product Flow Analyst (IPFA) Mozafar Hajian, Ph.D, CITP Client Technical Professional, ILOG Optimization and Supply Chain Importance of Supply Chain Planning Strategic Strategic Supply

More information

Make-to-Stock under Drum-Buffer-Rope and Buffer Management Methodology

Make-to-Stock under Drum-Buffer-Rope and Buffer Management Methodology I-09 Elyakim M. Schragenheim Make-to-Stock under Drum-Buffer-Rope and Buffer Management Methodology WHY MAKE-TO-STOCK? At least from the theory of constraints (TOC) perspective this is a valid question.

More information

Balancing Risk and Economics for Chemical Supply Chain Optimization under Uncertainty

Balancing Risk and Economics for Chemical Supply Chain Optimization under Uncertainty Balancing Risk and Economics for Chemical Supply Chain Optimization under Uncertainty Fengqi You and Ignacio E. Grossmann Dept. of Chemical Engineering, Carnegie Mellon University John M. Wassick The Dow

More information

SMPS EMBRACING TECHNOLOGY

SMPS EMBRACING TECHNOLOGY SMPs Technology SMPS EMBRACING TECHNOLOGY Moving to cloud computing is inevitable for small- and medium-sized practices looking to remain as relevant as larger firms with more resources. Michelle Perry

More information

REAPING WHAT YOU SOW

REAPING WHAT YOU SOW REAPING WHAT YOU SOW BY GEORGE E. CRESSMAN JR. Customer-driven pricing strategies help harvest profits. Pricing strategy is an essential element of new product introductions, and realized price is the

More information

WHITE PAPER. Six Simple Steps to Improve Service Quality and Reduce Costs

WHITE PAPER. Six Simple Steps to Improve Service Quality and Reduce Costs WHITE PAPER Six Simple Steps to Improve Service Quality and Reduce Costs INTRODUCTION Do you have challenges with maintaining your SLA commitment? Does your customer support department get more complex

More information

IT S TIME TO RETHINK CONCEPT TESTING

IT S TIME TO RETHINK CONCEPT TESTING GfK 2017 concept testing no longer predicts innovation success Many of our clients tell us that traditional ways to test concepts fail to provide the level of agility, direction and prediction they need.

More information

European Commission - DIGIT.B1. Architecture office, Consultancy, Innovation and Relationship Management Contact

European Commission - DIGIT.B1. Architecture office, Consultancy, Innovation and Relationship Management Contact [EU12] PM2 - Governance PM 2 - Governance Summary ID EU12 Initiative PM 2 Short description Governance is the act of governing and is therefore concerned with how decisions will be made. In the Commission,

More information

Recent Trends in the Evaluation of Analytical Biosimilarity

Recent Trends in the Evaluation of Analytical Biosimilarity Recent Trends in the Evaluation of Analytical Biosimilarity WCBP 2016, Washington D.C. Thomas Stangler, Senior Scientist, Process Development Strategy Sandoz Biopharmaceuticals 2016 Sandoz. All rights

More information

OPENEDGE BPM OVERVIEW

OPENEDGE BPM OVERVIEW OPENEDGE BPM OVERVIEW Fellow and OpenEdge Evangelist Document Version 1.0 July 2011 July, 2011 Page 1 of 11 DISCLAIMER Certain portions of this document contain information about Progress Software Corporation

More information