Open marliekeverweij opened 2 years ago
It seems to be caused by a missing series for electric vans. However, there are more issues with this chart:
merit_ev_demand
and 'other' merit_transport_other_demand
transport demandtransport_car_using_electricity
transport_car_using_electricity
and transport_truck_using_electricity
, and are therefore assigned to the 'other' category, along with all other electric transport demand (with the exception of electric cars)merit_transport_other_demand
, which is mv_transport_load_curve
, which is why it doesn't show in the chartThese network queries are very easily overlooked and not updated automatically, since each node is hardcoded into the query:
- query =
SUM_CURVES(V(
transport_bicycle_using_electricity,
transport_bus_using_electricity,
transport_freight_train_using_electricity,
transport_motorcycle_using_electricity,
transport_passenger_train_using_electricity,
transport_tram_using_electricity,
transport_truck_using_electricity,
electricity_input_curve
))
- unit = curve
A more dynamic query that as far as I can tell obtains the same result is:
INTERSECTION(G(mv_net_demand),SECTOR(transport))
For transport_ship_using_electricity
it is even stranger, because it does not seem to be included in the total either. This is probably because it has no network group assigned to it.
- groups = [application_group, freight_transport]
For now I would propose the following:
Most of this issue is addressed in https://github.com/quintel/etsource/pull/2769
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.
There is now some space between the baseload curves and the sum of all demand curves. We are probably missing a demand series in this chart, we have to find out which one!