Skip to main content

Curtailment simulation

Background

Curtailment has a significant impact on asset revenue, as assets that are curtailed cannot sell the electricity produced. It is therefore important to simulate the effect of curtailment. There are two main aspects to consider for simulating curtailment in the future: how much curtailment a plant will have, and when is this curtailment going to happen.

The first point is quite complex and depends on many different factors, such as amount of solar installed in a zone, power interconnection and distribution capacity, availability of storage, etc. To estimate the total amount, we use projections from the grid operators as baselines in our platform. These can be modified as part of the scenario assumptions.

For the second point, determining when the curtailment happen, we use a mix of heuristics and statistical model to select day and hours of curtailment for each plant, given a total for each year.

Calculation logic

Parametrization

We determine the (non-normalized) probability of a day having curtailment as follows:

pday(d)=td1/ytp_{day}(d) = \sum_{t \in d} 1/y_t

where yty_t is the day-ahead price. When a day is curtailed, we determine the start and end hour with a simple statistical model, based on historical data. The probability pstart(m,h)p_{start}(m,h) of hour hh being a start hour at month mm is proportional to the number of curtailment events that started at hour hh during month mm in the past. Similarly, we calculate the pend(m,h)p_{end}(m,h). We use the full historical record of curtailment data up to the present for the parametrization. This is updated weekly to reflect new data.

Calculation

Assuming that total curtailment for the plant is estimated at CtotC_{tot}:

for each year Y:   c(h)=0hYc(h) = 0 \quad \forall h \in Y # initialize curtailment for the plant this year   while hY(c(h)g(h))<Ctot\sum_{h \in Y} (c(h) \cdot g(h)) < C_{tot}:     let X be a random variable with probability p(d)=pday(d)/(pday(d))p(d) = p_{day}(d) / \sum(p_{day}(d)) for each dYd \in Y     extract a day dcd_c from X     extract the start and end hour hs,heh_s,h_e from pstart(m,h)p_{start}(m,h) and pend(m,h)p_{end}(m,h)     c(h)=1hdc,hhs,hhec(h) = 1 \quad \forall h \in d_c, h \geq h_s, h \leq h_e