matsim-org / matsim-code-examples

A repository containing code examples around MATSim
GNU General Public License v3.0
81 stars 178 forks source link

Different roadPricing for cars and SAVs #1115

Open FNaqavi opened 4 months ago

FNaqavi commented 4 months ago

Hello,

We want to investigate congestion pricing schemes for SAVs in Stockholm, however, Stockholm already has a congestion tax scheme for cars. I want to keep the current car's congestion tax scheme for cars, and I want to know if it is possible to have separate road pricing for SAVs and exclude them from the current road pricing that is for cars since their definition is the same as cars?

PT and bike are teleported modes and are exempt from congestion tax. Cars and drt are being simulated.

Here is the link to my MATSim repository drt branch with mainly default settings

JWJoubert commented 4 months ago

Hi @FNaqavi. Using the roadPricing contrib, you could implement your own custom TollFactor, which allows you to have a unique cost/toll based on:

FNaqavi commented 4 months ago

Thank you!