Add curtailment data? #3003
Replies: 8 comments
-
How would curtailment impact on CO2 emissions? Most of the times, curtailment happens when the demand is too low and there's an offer surplus. I believe you have I point. I just don't know what we would be measuring or how to measure it's impact. Maybe curtailment should be linked to the ability (or inability) of renewable generators to offer the Primary Frequency Regulation service, which would involve battery banks |
Beta Was this translation helpful? Give feedback.
-
It's a good point. I don't think curtailment affects average CO2 emissions, but it is important for us to understand if wind or solar are on the margin or not, and by proxy what the marginal CO2 emissions are (answering the question - if you added or removed 1 MW demand to the grid, what plant would that come from). Usually wind and solar are not on the margin because they do not respond to demand, but if we know wind is currently curtailed, it is easy to argue if you increased demand at that time, the extra power would probably comes from wind/solar. |
Beta Was this translation helpful? Give feedback.
-
But it seems like there isn't much enthusiasm for this anyways, so I am closing the idea! |
Beta Was this translation helpful? Give feedback.
-
@robertahunt although you have already closed, here is one site for regional congestion in Germany with 24h history: |
Beta Was this translation helpful? Give feedback.
-
@robertahunt and here is one more website for D-1 East German line load: https://www.50hertz.com/de/Transparenz/Kennzahlen/Netzdaten/Netzbelastung/ |
Beta Was this translation helpful? Give feedback.
-
Thanks for these. This is really cool. Do you know if ENTSOE accounts for curtailment in its numbers already (I assume they account for it, but maybe you know for sure)? Or are we actually missing this data? I'd also like to use the data and make it more visible. I'll reopen this and see if there is any more garnered interest. I dont have any more ideas off the top of my head other than making it more visible on electricity map and using it to improve our marginal carbon intensity calculations. You?! |
Beta Was this translation helpful? Give feedback.
-
Curtailment somewhat-directly affects demand for new renewable capacity: if a utility is generating excess supply, shouldn't the price and thus the margin decrease? Broader availability of intraday rates could help consumers buy renewables when there is excess supply (that we're currently unable to store due to insufficient grid-scale energy storage). Demand that can scale up to ensure renewable-specific demand and capitalize upon e.g. intraday rates should further increase the sustainability of the "buy renewables because they're cost-rational (and environment-rational)" pitch. (Edit) (Given that creating demand for renewables offsets wasteful environmental contamination with CO² and other unwanted chemicals) |
Beta Was this translation helpful? Give feedback.
-
For GB it's possible to calculate the curtailed wind by looking at the detailed system prices from the balancing market, the Python code below shows an example for calculating it. Is this something that would be handy to add to the GB parser? stream = 'DETSYSPRICES'
query_args = {
'start_date' : '2019-12-01',
'end_date' : '2019-12-07 23:30',
}
edp_wrapper = create_BMRS_wrapper()
df_detsysprices = edp_wrapper.query_orchestrator(stream, query_args)
wf_ids = get_wf_ids()
s_curt_wind = calc_curt_wind(df_detsysprices, wf_ids)
s_curt_wind.plot() I've created a gist that includes the helper functions here |
Beta Was this translation helpful? Give feedback.
-
As wind and solar curtailment become more prevalent, tracking and understanding how curtailment fits into the energy transition becomes more and more important.
So, is this something we should track?
I am thinking something like changing production parsers to be able to add curtailment:
Although there are not many places where curtailment is reported, I noticed that japan has a time series for it (although as far as I can tell it has always been 0). I wonder if Germany or other countries that use curtailment more often report it somewhere?
Thumbs up if you like the idea :) Comments/Crits welcome
Beta Was this translation helpful? Give feedback.
All reactions