Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Future Plan: Add solvers for DUE and DSO #159

Open
toruseo opened this issue Nov 13, 2024 · 1 comment
Open

Future Plan: Add solvers for DUE and DSO #159

toruseo opened this issue Nov 13, 2024 · 1 comment
Labels
enhancement New feature or request

Comments

@toruseo
Copy link
Owner

toruseo commented Nov 13, 2024

There are 3 famous route choice principles for dynamic traffic assignments (the definition varies depending on the terminology).

  • Dynamic User Optimal (DUO): Travelers choose the shortest path based on the instantaneous travel time (the current average speed).
  • Dynamic User Equilibrium (DUE): Travelers choose the shortest path based on the actual travel time.
  • Dynamic System Optimal (DSO): Travelers choose the path so that the total travel time is minimized.

The default routing principle of UXsim is based on DUO, because it is reasonable and very easy to compute.

DUE and DSO are also useful as theoretical benchmarks. It is known that they are difficult to solve, especially when the network is large. But, for small or mid scale networks, they can be solved by UXsim (see example22 and example25). General solvers based on these codes (or more sophisticated version, especially for DSO) could be added.

@toruseo toruseo added the enhancement New feature or request label Nov 13, 2024
@toruseo
Copy link
Owner Author

toruseo commented Jan 6, 2025

TODO list

DUE solver is almost completed.

DSO solver is partially completed, but the following issue must be fixed:

game_prob[np.isnan(game_prob)] = 0.5 #TODO: 確率計算を正確にする

Vehicles that did not completed their trip need to be considered in the objective function.

Time-dependent toll need to be incorporated. This requires update of UXsim main module. This can be a future task.

Demo is work in progress.

Related documents need to be reworked.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant