-
Notifications
You must be signed in to change notification settings - Fork 5
Description
I am doing some work with regards to offshore wind with our model and have a few questions:
-
According to my query, the sum for offshore wind in scenario NEP 2035 is 13,06 GW which is significantly lower than the numbers of the Szenariorahmen which are in the area of 18-19 GW for 2035. Can you explain how the number of 13,06 GW is composed?
Query:
SELECT SUM(electrical_capacity) FROM model_draft.ego_dp_supply_res_powerplant WHERE scenario = 'NEP 2035' AND "generation_subtype" = 'wind_offshore';
-
The grid connection of future offshore windparks is also something not completely clear to me. Did you just use existing connection points for new parks or do you also consider new ones (as named in the comment column)? The otg_id looks like the first option...
-
Is it possible to query for only wind offshore (and not onshore) in the final dataset?
-
Why does the number of items vary for the scenarios? Using this query, I found the following results:
SELECT * FROM model_draft.ego_dp_supply_res_powerplant WHERE scenario = 'NEP 2035' AND "generation_subtype" = 'wind_offshore';
SQ: 1313 items, Total of 5,687 GW
NEP: 13 items, Total of 13,06 GW
eGo: 1326 items, Total of 24,48 GW
I hope one of you can help me with these issues - thank you!!