Battery simulation
Background
Batteries have a huge impact on profitability and trading for solar assets. Our simulator employs a battery dispatch optimization based on heuristics which allows us to quickly simulate battery operation over the lifetime of the plant. This scheduling algorithm is different from the optimization used during operations (see battery optimization), since running an analytical optimization model would be impractical over decades of operation. Because of this, for long-term simulation we use a simplified battery scheduler which is based on heuristics: simplified assumptions which are true almost all the time, and therefore give a good approximation of what the analytical model would find. For example, an approximation would be that the battery is fully charged and discharged once a day. This is not always true, but it's a good enough approximation that it gives almost the same results as the analytical approach.
The following heuristics model is based on DiOrio et al., 2020 (DOI:10.1016/j.apenergy.2019.114465)
Calculation logic
Nomenclature
Note: all measures are referring to a single slot.
Asset characteristics
: meter exchange rating (kWh*)
: maximum solar inverter (kWh)
: maximum battery exchange (kWh)
: maximum battery energy (kWh)
: nominal voltage (V)
: yearly degradation (unitless)
: battery cycle cost (yen/kWh)
: charging and discharging efficiency (unitless)
: minimum, maximum and initial state of charge (kWh)
Input values
: price forecast at time (yen/kWh)
: solar generation forecast at time (kWh)
: forecast of curtailment level () at time (unitless)
: maximum meter exchange at time (kWh)
: horizon (number of slots) (unitless)
Battery status
: maximum charge at time (C)
: charge at time (C)
Decision variables
: energy capacity left in the battery (kWh)
: reserved energy for clipping (kWh)
: effective energy capacity left in the battery, reserving space for clipping (kWh)
: power that would be clipped without battery (kWh)
: power to discharge (kWh)
: power to charge from clipped solar (kWh)
: power to charge from non-clipped solar (kWh)
Binary decision variables
: discharge decision
: high value discharge time
: time to charge clipped solar power
: decision to charge from solar
Set points
: preliminary power target (kWh)
: effective power target after constraints (kWh)
Output values
: meter exchange at time (kWh)
: energy flow solar to grid (kWh)
: energy flow battery to grid (kWh)
: energy flow solar to battery (kWh)
Initial settings
Our battery scheduling optimization is based on a heuristics that allows for extremely fast simulation of assets over decades. This heuristics simulates the battery in a simplified way as a ...
Throughout the page, we use square brackets as Iverson bracket notation** for clarity.
First, we define the maximum charge capacity of the battery as:
We define the initial charge of the battery as:
We find the degradation per 30-minute slot as:
At each time step, the actual meter exchange limits depends on current curtailment:
Determining decision variables
Our scheduling system depends on decision variables based on the scheduling horizon . During the horizon, the maximum price at which electricity can be sold to the grid can be defined as:
We can calculate the relative (approximate) revenue streams for each use of the battery. At time , the revenues that can be obtained by charging from the PV depends on the maximum price at which this energy can be sold minus the missed opportunity of selling the energy right now:
The approximate revenues from charging when the energy would be clipped do not have any oppportunity cost, as the energy would be lost anyway:
The revenue from discharging right now depends on the current price on the market:
We also calculate binary decision variables, which are all either 0 or 1, and are denoted by . If prices are at a minimum at the current time step (compared to the horizon), then this is a good moment to charge the battery:
If on the other hand prices are at a maximum at the current time step (compared to the horizon), then this is a good moment to discharge the battery:
The decision on whether to charge from PV can then depend on whether all the three conditions are true: prices are the lowest, revenues from PV charging is positive, and solar generation is positive:
The decision of whether to charge from clipped power depends only on whether the revenues are positive:
We can then determine whether we should discharge the battery at time :
This depends on whether this is a moment of good prices, if there is enough SoC, if the meter exchange limit is higher than the solar generation, and if the revenues from discharging are positive.
Heuristics optimization
In order to optimize the battery, we need to look at all decision variables and determine battery set points depending on their values.
Reserved energy
For each time step , we can first calculate the amount of reserved energy in the battery for various tasks, which set limits for battery utilization. First, we want to reserve some battery capacity for absorbing energy that would otherwise be clipped (for example by curtailment events). We can calculate the amount of power that would be clipped without battery as:
Ideally, we would want to absorb all this clipped energy, which otherwise would be completely wasted. We can calculate the reserved energy at each point in time that we need to keep in the battery to absorb the clipped energy as:
The energy that we can charge at each moment of time in the battery is defined as:
and therefore the energy that we can charge at time while still reserving capacity for clipped energy later:
Preliminary power set points
Next, we can determine the amount of power (set points) for the battery. Note that this will be preliminary values, that may result in unfeasible solutions. These constraints will be resolved later.
The discharge power is only activated if the is active, and is constrained by the battery power capacity and the remaining meter capacity after solar (constrains related to SoC will be resolved later):
If is not active (=0), we can evaluate charging options. If there is clipped power, use that to charge:
If it is good to charge from solar, use the remaining charge for solar:
We can finally calculate the target power from all contributions:
Based on the target power, we can update battery state. In particular, we can find the hypothetical (before other constraints) current at time as:
and from this we can calculate the new charge levels of the battery, constrained by the SoC limits of the battery:
Based on the new charge levels, we can calculate the effective power exchanged, which would be the actual battery set point at time t:
Power flows
Finally, we can calculate the results as the various flows between battery, solar, and grid:
We can then determine the level of curtailment avoided by the battery as:
with the virtual curtailment that the plant would have incurred without battery.
Based on the battery degradation defined above, we then update the battery capacity as:
* This refers to kWh per slot, i.e., the actual maximum energy that can be exchanged during a 30-minute slot. This is equivalent to the kW rating divided by two. For example, a 1 kW plant can produce 0.5 kWh in a 30-minute interval. We use the same convention for other variables.
** The Iverson bracket notation is defined as:
Validation
We validate our heuristics optimization model with the analytical one, to understand what is the expected error that the simplifying assumptions introduce.