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

Add parking tests and comments #3637

Merged
merged 11 commits into from
Dec 11, 2024
Prev Previous commit
adapt readme
  • Loading branch information
paulheinr committed Dec 11, 2024
commit d67ce8a631e8c7e56665cf8cf7afe059af302e4e
32 changes: 31 additions & 1 deletion contribs/parking/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,34 @@ approaches as to how parking can be handled in MATSim, depending on the use case
. This was designed for large scenarios where it's not feasable to fully simulate parking agents. Rather, the
additional time needed for parking is estimated
- Parking Costs, developed by Marcel Rieser and Joschka Bischoff at SBB. This modules allows the integration of parking
costs based on link attribute data.
costs based on link attribute data.

## Implementations

### Parking Search

Model parking search, including walking segments and parking search traffic.

Different Parking Search Logics:

1. **Random:**
1. Drive to the destination.
2. The next link is chosen randomly.
2. **DistanceMemoryParkingSearch:**
1. Drive to the destination.
2. Select the next link:
1. Choose an unknown link with the shortest straight-line distance to the destination.
2. If all links are known, choose randomly.
3. **NearestParkingSpotSearchLogic:**
1. Drive to the destination (??).
2. Search for the facility with the shortest distance to the current location, considering the expected driving time and parking duration (and
possibly parking time restrictions).
3. If no suitable facility is found ?
4. **BenensonParkingSearchLogic:** A more sophisticated strategy based on the Benenson
model: https://www.sciencedirect.com/science/article/pii/S0198971508000689

### Parking Proxy

### Parking Costs

### Parking Choice
Loading