Chapter 7 Network Flow Models.

Slides:



Advertisements
Similar presentations
Decision Maths Networks Kruskals Algorithm Wiltshire Networks A Network is a weighted graph, which just means there is a number associated with each.
Advertisements

ITS THE FINAL LECTURE! (SING IT, YOU KNOW YOU WANT TO) Operations Research.
Outline LP formulation of minimal cost flow problem
Networks Prim’s Algorithm
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
Management Science 461 Lecture 2b – Shortest Paths September 16, 2008.
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).
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.
Transportation and Assignment Problems
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,
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 Models (2) Tran Van Hoai Faculty of Computer Science & Engineering HCMC University of Technology Tran Van Hoai.
COSC 2007 Data Structures II Chapter 14 Graphs III.
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.
Minimal Spanning Tree Problems in What is a minimal spanning tree An MST is a tree (set of edges) that connects all nodes in a graph, using.
Chapter 8 Network Models to accompany Operations Research: Applications and Algorithms 4th edition by Wayne L. Winston Copyright (c) 2004 Brooks/Cole,
Welcome Unit 6 Seminar MM305 Wednesday 8:00 PM ET Quantitative Analysis for Management Delfina Isaac.
Welcome to MM305 Unit 6 Seminar Dr. Bob Network Models.
Chapter 5: Transportation, Assignment and Network Models © 2007 Pearson Education.
1 1 Slide © 2008 Thomson South-Western. All Rights Reserved © 2011 Cengage Learning. All Rights Reserved. May not be scanned, copied or duplicated, or.
Decision Maths 1 Shortest path algorithm Dijkstra’s Algorithm A V Ali :
ENGM 631 Minimum Spanning Tree. Prototype Example Seervada Park Trams route smallest total distance Phone lines minimum spanning tree Tram limitations.
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
ENGM 631 Maximum Flow Solutions. Maximum Flow Models (Flow, Capacity) (0,3) (2,2) (5,7) (0,8) (3,6) (6,8) (3,3) (4,4) (4,10)
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
Part 3 Linear Programming
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
CS223 Advanced Data Structures and Algorithms
Maximum Flow Solutions
Business Statistics with Quantitative Analysis
Transportation, Assignment and Network Models
Introduction Basic formulations Applications
Lecture 19-Problem Solving 4 Incremental Method
Network Models 7-1.
Spanning Tree Algorithms
Communication Networks
Networks Kruskal’s Algorithm
Network Models Chapter 12
Chapter 6 Network Flow Models.
Dijkstra’s Algorithm for Shortest Paths
and 6.855J Dijkstra’s Algorithm
Networks Prim’s Algorithm
Shortest Path Solutions
Prim’s algorithm for minimum spanning trees
Presentation transcript:

Chapter 7 Network Flow Models

Shortest Route Problem Given distances between nodes, find the shortest route between any pair of nodes.

Example: p.282 (291)

Solution Methods Dijkstra algorithm: Using QM: Introduced in book. Not required for this course Using QM: Required for this course Data input format -

Discussion What if the ‘cost’, instead of ‘distance’, between two nodes are given, and we want to find the ‘lowest-cost route’ from a starting node to a destination node? What if the cost from a to b is different from the cost from b to a? (QM does not handle this situation.)

Minimal Spanning Tree Problem Given costs (distances) between nodes, find a network (actually a “tree”) that covers all the nodes with minimum total cost. Applications:

Example: p.290 (299) Solution Method: Using QM.

Shortest Route vs. Minimal Spanning The minimal spanning tree problem is to identify a set of connected arcs that cover all nodes. The shortest route problem is to identify a route from a particular node to another, which typically does not pass through every node.

Maximal Flow Problem Given flow-capacities between nodes, find the maximum amount of flows that can go from the origin node to the destination node through the network. Applications:

Example: p.294 (303) Solution Method: Using QM.

Network Flow Problem Solving Given a problem, we need to tell what ‘problem’ it is (shortest route, minimal spanning tree, or maximal flow); then use the corresponding module in QM to solve it.