Chapter 11 Network Models. What You Need to Know For each of the three models: –What is the model? (what are given and what is to calculate) –What is.

Slides:



Advertisements
Similar presentations
Outline LP formulation of minimal cost flow problem
Advertisements

Computer Networking A Top-Down Approach Chapter 4.7.
O(N 1.5 ) divide-and-conquer technique for Minimum Spanning Tree problem Step 1: Divide the graph into  N sub-graph by clustering. Step 2: Solve each.
Network Flows. 2 Ardavan Asef-Vaziri June-2013Transportation Problem and Related Topics Table of Contents Chapter 6 (Network Optimization Problems) Minimum-Cost.
Chapter 11 To accompany Quantitative Analysis for Management, Eleventh Edition, Global Edition by Render, Stair, and Hanna Power Point slides created by.
Case Study By: The South Group
Chapter 5: Transportation, Assignment and Network Models © 2007 Pearson Education.
CSC 2300 Data Structures & Algorithms April 17, 2007 Chapter 9. Graph Algorithms.
1 Minimal Spanning Tree This is a technique used when we need to connect many places to a system(network).
Math443/543 Mathematical Modeling and Optimization
Chapter 7 Network Flow Models.
Minimum Spanning Network: Brute Force Solution
© 2008 Prentice-Hall, Inc. Chapter 12 To accompany Quantitative Analysis for Management, Tenth Edition, by Render, Stair, and Hanna Power Point slides.
A network is shown, with a flow f. v u 6,2 2,2 4,1 5,3 2,1 3,2 5,1 4,1 3,3 Is f a maximum flow? (a) Yes (b) No (c) I have absolutely no idea a b c d.
Network Flow Models Chapter 7.
Transportation, Assignment, Network Models
MNG221 - Management Science
Stevenson and Ozgur First Edition Introduction to Management Science with Spreadsheets McGraw-Hill/Irwin Copyright © 2007 by The McGraw-Hill Companies,
To accompany Quantitative Analysis for Management, 9e by Render/Stair/Hanna 12-1 © 2006 by Prentice Hall, Inc. Upper Saddle River, NJ Chapter 12.
1 1 Slide © 2000 South-Western College Publishing/ITP Slides Prepared by JOHN LOUCKS.
Introduction to Management Science
NetworkModel-1 Network Optimization Models. NetworkModel-2 Network Terminology A network consists of a set of nodes and arcs. The arcs may have some flow.
7-1 Copyright © 2010 Pearson Education, Inc. Publishing as Prentice Hall Network Flow Models Chapter 7.
7-1 Copyright © 2013 Pearson Education, Inc. Publishing as Prentice Hall Network Flow Models Chapter 7.
Shortest Route, Minimal Spanning Tree and Maximal Flow Models
Operations Research Assistant Professor Dr. Sana’a Wafa Al-Sayegh 2 nd Semester ITGD4207 University of Palestine.
Networks and the Shortest Path Problem.  Physical Networks  Road Networks  Railway Networks  Airline traffic Networks  Electrical networks, e.g.,
Network Optimization Models
Network Models (2) Tran Van Hoai Faculty of Computer Science & Engineering HCMC University of Technology Tran Van Hoai.
Module 5 – Networks and Decision Mathematics Chapter 24 – Directed Graphs.
Network Optimization Problems
Welcome to MM305 Unit 6 Seminar Larry Musolino
Stevenson and Ozgur First Edition Introduction to Management Science with Spreadsheets McGraw-Hill/Irwin Copyright © 2007 by The McGraw-Hill Companies,
1 1 © 2003 Thomson  /South-Western Slide Slides Prepared by JOHN S. LOUCKS St. Edward’s University.
6/10/01Network Problems: DJK1 Network Problems Chapters 9 and 10.
___________________________________________________________________________ ___________________________________________________________________________.
___________________________________________________________________________ ___________________________________________________________________________.
Welcome Unit 6 Seminar MM305 Wednesday 8:00 PM ET Quantitative Analysis for Management Delfina Isaac.
Distribution Manager Supply Chain Man. (SCM), “Logistics” Transport Plans (Production Plans) Facility Location f.ex. warehouses Network Models: Minimal.
Welcome to MM305 Unit 6 Seminar Dr. Bob Network Models.
Chapter 5: Transportation, Assignment and Network Models © 2007 Pearson Education.
ENGM 631 Minimum Spanning Tree. Prototype Example Seervada Park Trams route smallest total distance Phone lines minimum spanning tree Tram limitations.
Linear Programming Chapter 1 Introduction.
7-1 Copyright © 2010 Pearson Education, Inc. Publishing as Prentice Hall Network Flow Models Chapter 7.
Network Problems A D O B T E C
SHORTEST ROUTE PROBLEM A Networking Model Report for DPA 702 QUANTITATIVE METHODS OF RESEARCH By: ALONA M. SALVA Cebu Technological University.
1 1 Slide © 2005 Thomson/South-Western Chapter 9 Network Models n Shortest-Route Problem n Minimal Spanning Tree Problem n Maximal Flow Problem.
Operations Research II Course,, September Part 2: Network Flow Operations Research II Dr. Aref Rashad.
Network Models Chapter 12
Cycle Canceling Algorithm
Part 3 Linear Programming
Route Choice Lecture 11 Norman W. Garrick
St. Edward’s University
Shortest Path from G to C Using Dijkstra’s Algorithm
Network Flow Problems – Shortest Path Problem
Network Models Chapter 12
Chapter 12 Network Models 12-1
Routing and Logistics with TransCAD
Business Statistics with Quantitative Analysis
Transportation, Assignment and Network Models
MATS Quantitative Methods Dr Huw Owens
Introduction Basic formulations Applications
Network Models 7-1.
Route Choice Lecture 11 Norman W. Garrick
Network Models Robert Zimmer Room 6, 25 St James.
Communication Networks
Prepared by Lee Revere and John Large
Network Models Chapter 12
Chapter 6 Network Flow Models.
X y y = x2 - 3x Solutions of y = x2 - 3x y x –1 5 –2 –3 6 y = x2-3x.
Presentation transcript:

Chapter 11 Network Models

What You Need to Know For each of the three models: –What is the model? (what are given and what is to calculate) –What is the model for? (Applications) –Solve it by QM You do not need to know the solution technique since QM does it for us. But given an application, you should tell which model fit the application and solve it by QM.

Minimum Spanning Tree Problem Given costs (distances) between nodes, find a network (actually a “tree”) that covers all the nodes with minimum total cost. Applications: Planning water pipe, power cable, or phone line to the residents in a community. Example: p.430

Maximum Flow Problem Given flow-capacities between nodes, find the maximum amount of flows from the origin node to the destination node. Applications: Capacity of traffic flows between two points of a city. Example: p.434

Shortest Route Problem Given distances (costs) between nodes, find the shortest route between any pair of nodes. Applications: Find the shortest route from one place to another. Example: p.440