1 Minimal Spanning Tree This is a technique used when we need to connect many places to a system(network).

Slides:



Advertisements
Similar presentations
Network Models Chapter 11
Advertisements

Decision Maths Networks Kruskals Algorithm Wiltshire Networks A Network is a weighted graph, which just means there is a number associated with 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.
1 Transportation Model. 2 Basic Problem The basic idea in a transportation problem is that there are sites or sources of product that need to be shipped.
Case Study By: The South Group
Chapter 5: Transportation, Assignment and Network Models © 2007 Pearson Education.
Management Science 461 Lecture 2b – Shortest Paths September 16, 2008.
CSC 2300 Data Structures & Algorithms April 17, 2007 Chapter 9. Graph Algorithms.
The Transshipment Problem This section is a slight modification of the transportation problem.
Example 5.3 More General Logistics Models | 5.2 | 5.4 | 5.5 | 5.6 | 5.7 | 5.8 | 5.9 | 5.10 | 5.10a a Background Information.
Chapter 7 Network Flow Models.
1 Chapter 10 The assignment model section. 2 The general problem in this section is that we have people in our employ and we have tasks to be accomplished.
1 Linear Programming With Sensitivity Analysis Here we look at some graphs to learn some ideas.
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.
© 2008 Prentice-Hall, Inc. Chapter 12 To accompany Quantitative Analysis for Management, Tenth Edition, by Render, Stair, and Hanna Power Point slides.
Network Flow Models Chapter 7.
Transportation, Assignment, Network Models
Game Theory 2 Computer solutions.
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.
Transportation Model (Powerco) Send electric power from power plants to cities where power is needed at minimum cost Transportation between supply and.
Example 15.4 Distributing Tomato Products at the RedBrand Company
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.,
How to Build Network? ISAT 625 Network Problems Build highways to connect cities Build highways to connect cities Build network to connect computers.
Network Optimization Models
Graph Theory Topics to be covered:
Network Optimization Problems
Welcome to MM305 Unit 6 Seminar Larry Musolino
An-Najah N. University Faculty of Engineering and Information Technology Department of Management Information systems Operations Research and Applications.
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.
1 Network Models Transportation Problem (TP) Distributing any commodity from any group of supply centers, called sources, to any group of receiving.
Networks and Graphs in Introduction Many Decision Science problems can be modelled using what are called graphs or networks. A network is.
Graphs A ‘Graph’ is a diagram that shows how things are connected together. It makes no attempt to draw actual paths or routes and scale is generally inconsequential.
Lagrangean Relaxation
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.
Network Problems A D O B T E C
Problems With Assistance Module 3 – Problem 3 Filename: PWA_Mod03_Prob03.ppt This problem is adapted from: Exam #2 – Problem #1 – ECE 2300 – July 25,
Network Analyst. Network A network is a system of linear features that has the appropriate attributes for the flow of objects. A network is typically.
1 Chapter 13 Mathematical models of networks give us algorithms so computationally efficient that we can employ them to evaluate problems too big to be.
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
St. Edward’s University
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
Network Models 7-1.
Network Models Robert Zimmer Room 6, 25 St James.
Communication Networks
Prepared by Lee Revere and John Large
Networks Kruskal’s Algorithm
Network Models Chapter 12
Chapter 6 Network Flow Models.
Presentation transcript:

1 Minimal Spanning Tree This is a technique used when we need to connect many places to a system(network).

2 The typical object here is to “span” all the places with minimum distance. Cost would then be minimized. As an example, say we want to hook up all the houses in a neighborhood with a new phone wire. We want to find the order of houses so that when we are finished connecting the houses we have used the least amount of wire. On the next screen I have a map of the house locations and the distances between each. The houses are a geometric shape and have been labeled with a number – the locations are called nodes. The distance between each location is marked and we call each connection between nodes a branch. In the final analysis we do not have to hook-up each distance shown, for we only have to get all connected. As an example we may not have wire between 3 and 7. 7 might be hooked-up from 8.

Node Branch between nodes Distance of Branch

4 Qm for windows will solve a problem like this: Go to module -> networks -> File -> new -> Miminum spanning tree Then at input screen put in the number of branches ( I look at the map and cross off a branch when I have counted it – there are 12 on the previous screen.) When you hit OK you will get to the data input. For each branch put in the starting node, ending node and cost. If you do not have cost data, put in distance. The two are correlated. The “Solution Steps” section of the output has the branches used and the cost of the work.

5 Maximal-Flow This is a technique used to determine the amount that can flow through a system. Each part of the system may not have the same capacity.

6 An example here may be that we have a system of streets in a town and we want to know the maximal flow of traffic from west to east that may occur. Another example would be how many gallons of fluid could flow through a system of pipes. Like in the spanning problem, we have nodes (connections), but now we have capacity amounts. The amount that can flow in one direction may not have the same capacity in the reverse direction. In the traffic flow analogy, you could have one lane in the east direction, but two lanes going west. Another difference is that we have to pick a starting node and an ending node in terms of the direction of the flow. Let’s see an example on the next slide.

8 We will us QM for Windows to solve the problem for us, but let’s consider some of the logic of the solution. We will start at node 1 (source) on the previous slide and move toward node 6 (sink). You will note out of nodes 2, 4 and 3 that a total of 5 can flow toward 6. That will be the final amount through the system here. Sometimes the solution will be such that you will ship toward the intended flow, but because of capacity constraints you will reverse course and take some on a different route. That really isn’t the case in this example, but that could happen.

9 In QM for windows you will go to module-> networks, file-> new-> maximal flow. Again you have to tell it how many branches there are. We have 9 here. Indicate which node is the source and which node is the sink On each branch you input the staring node, ending node, the capacity flow and the reverse capacity. The “Iterations” section of output will show you each path to the source and how much flowed to the sink.

10 Shortest Route Here we have many ways to get from A to B, but we want the shortest (could mean distance or time) route, because it will cheapest.

12 We want to get stuff from the plant to the warehouse. We still have nodes and branches and distance or time between nodes. Here you do not want to reverse course and back track because that is costly here. In QM for windows you will go to module-> networks, file-> new-> Shortest route. Again you have to tell it how many branches there are. On each branch you input the staring node, ending node, and the distance or time. Plus you have to say which node is the origin and which is the destination The output section “Network Results” shows the branches used and shows the minimum distance covered.