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

Number of vehicles does not change with modal split #2967

Open
mabijkerk opened this issue Dec 1, 2023 · 1 comment · May be fixed by #2970
Open

Number of vehicles does not change with modal split #2967

mabijkerk opened this issue Dec 1, 2023 · 1 comment · May be fixed by #2970
Assignees
Labels
Pinned Will never be marked as stale or auto-closed.

Comments

@mabijkerk
Copy link
Member

Background
For a cars, buses, vans and trucks we calculate the number of units. This is mainly done to determine the available storage volume for the electric variants. For example, for cars it works like this, the transport_useful_demand_cars node gets the number_of_units assigned in the start year:

~ number_of_units = AREA(number_of_cars)

The transport_car_using_electricity the determines its number of units using the inheritable number of units group, which simply takes the share of electric cars and multiplies it with the number of units for all cars.

- groups = [inheritable_nou, ...]

If the share of electric cars in the mix of cars is changed, automatically the number of electric cars will change as well, through the interitable_nou group. You can query this:

EACH(
  V(transport_car_using_electricity,number_of_units),
  V(transport_useful_demand_cars,number_of_units),
  INPUT_VALUE(transport_car_using_electricity_share)
)


[
  4,265,500.0,
  8,531,000.0,
  50.0,
]

Problem
The problem is that if the modal split of cars in the total passenger transport is changed, the total number of cars does not change. This means that if I change transport_cars_share or if I change the total passenger demand transport_useful_demand_passenger_kms, the number of cars will stay at 8,531,000.0.

Goal
For cars and buses their number of units need to scale with the change in passenger transport demand and with their share in the modal split for passenger transport. For vans and trucks their number of units need to scale with the change in freight transport demand and with their share in the modal split for freight transport. This means that we need to adjust the following inputs to also update the relevant number of units:

  • tranport_useful_demand_passenger_kmgs
  • transport_cars_share
  • transport_busses_share
  • transport_useful_demand_freight_tonne_kms
  • transport_trucks_share
  • transport_vans_share
Copy link

This issue has had no activity for 60 days and will be closed in 7 days. Removing the "Stale" label or posting a comment will prevent it from being closed automatically. You can also add the "Pinned" label to ensure it isn't marked as stale in the future.

@github-actions github-actions bot added the Stale Issue had no activity for 60 days and will be, or has been, closed. label Jan 31, 2024
@github-actions github-actions bot closed this as completed Feb 8, 2024
@mabijkerk mabijkerk reopened this Feb 8, 2024
@mabijkerk mabijkerk added Pinned Will never be marked as stale or auto-closed. and removed Stale Issue had no activity for 60 days and will be, or has been, closed. labels Feb 8, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Pinned Will never be marked as stale or auto-closed.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants