1 / 14

4-step Model – Trip Assignment

Lecture 13-1. 4-step Model – Trip Assignment. Trip Assignment. Definition Assign T ij onto alternative routes on the network to predict the Link flows and to evaluate the network performance. Trip Assignment. Generalized Cost = function of time, distance, $$ + possibly others.

chipo
Télécharger la présentation

4-step Model – Trip Assignment

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Lecture 13-1 4-step Model – Trip Assignment CVEN672

  2. Trip Assignment Definition Assign Tij onto alternative routes on the network to predict the Link flows and to evaluate the network performance. CVEN672

  3. Trip Assignment Generalized Cost = function of time, distance, $$ + possibly others. From the user’s perspective; shortest path (stochastic vs. deterministic)UE From the planner’s perspective: minimize the network wide travel cost SO j i CVEN672

  4. Trip Assignment: Link Performance Fucntion Each path has an associated Link performance function (LPF): Typical forms: t = t0eV/C t = t0ab(V/C) Most common from the Bureau of Public Roads (BPR) t = t0(1 + a(V/C)b) which becomeswhen linear (b = 1, a = aC/t0): t = t0 + aV CVEN672

  5. Trip Assignment • Four classes of TA methods: • ALL-or-NOTHING Assignment for uncongested network (constant cost) [Dijkstra: Shortest path algorithm] find the shortest path and assign all travels on the SP between a pair of OD. • User Equilibrium (Wardrop principles) • Every traveler is on the shortest path to the destination. No user can be better off by unilaterally changing to a different route. • 3. Stochastic TA (due to “perceived” costs, lack of info for users) • Users do not have perfect real time information about cost. Their route choice decisions have uncertain factor. • Dynamic assignment (how about time variable???) • Traffic do not happen on the roads at one single instance of time. Early travel decisions have impact on later traffic congestions. The interactions over time are considered. CVEN672

  6. Shortest Path (Dijkstra) Assuming a known network with a known deterministic link performance, the objective is to find a path from an origin to a destination at the least cost. Shortest path calculations are idealistic, but are most fundamental to the network flow problem and to the network traffic assignment problem. Many sophisticated algorithms are built with the shortest path algorithm. There are many variations (Dijkstra, Moore), but all get to the same results. The complexities are different slightly. CVEN672

  7. Notations • N Set of nodes • M set of unlabeled notes • Bar(M) set of unlabeled nodes • niith node in consideration • C(ni,nj) cost of travel from node i to node j. • C(nj) cost of travel from the home node to node j. CVEN672

  8. Shortest Path (Dijkstra) CVEN672

  9. Label L(ni) = [predecessor, cost] This is the algorithm to summarize based on the example CVEN672

  10. Shortest Path (Dijkstra) CVEN672

  11. DIJKSTRA’SALGORITHM • Greedy Algorithm • Greedy algorithms use problem solving methods based on actions to see if there’s a better long term strategy. Dijkstra’s algorithm uses the greedy approach to solve the single source shortest problem. It repeatedly selects from the unselected vertices, vertex v nearest to source s and declares the distance to be the actual shortest distance from s to v. The edges of v are then checked to see if their destination can be reached by v followed by the relevant outgoing edges. • Disadvantages • The major disadvantage of the algorithm is the fact that it does a blind search there by consuming a lot of time waste of necessary resources. • Another disadvantage is that it cannot handle negative edges. This leads to acyclic graphs and most often cannot obtain the right shortest path. CVEN672

  12. Exercise: find the shortest path from AE CVEN672

  13. All-or-nothing Assignment, use Dijkstra to find S.P. for each O/D pair and then assign all flow to it A-C = 400; A-D = 200; B-C = 300; B-D = 100 CVEN672

  14. Some math background to the Dijkastra’s Algorithm (optional) • Linear programming • LP to inset later • Dual program d_o CVEN672

More Related