Data Format
+1. Input Data Format
Instances are specified by JSON files containing the following main sections:
- Parameters @@ -159,7 +146,7 @@
- Contingencies
Each section is described in detail below. For a complete example, see case14.json.
-Parameters
+1.1 Parameters
This section describes system-wide parameters, such as power balance penalties, and optimization parameters, such as the length of the planning horizon.
Example
+Example
{
"Parameters": {
"Time (h)": 4,
@@ -194,7 +181,7 @@
}
-Buses
+1.2 Buses
This section describes the characteristics of each bus in the system.
Example
+Example
{
"Buses": {
"b1": {
@@ -232,7 +219,7 @@
}
-Generators
+1.3 Generators
This section describes all generators in the system, including thermal units, renewable units and virtual units.
Production costs and limits
+Production costs and limits
Production costs are represented as piecewise-linear curves. Figure 1 shows an example cost curve with three segments, where it costs 1400, 1600, 2200 and 2400 dollars to generate, respectively, 100, 110, 130 and 135 MW of power. To model this generator, Production cost curve (MW)
should be set to [100, 110, 130, 135]
, and Production cost curve ($)
should be set to [1400, 1600, 2200, 2400]
.
Note that this curve also specifies the production limits. Specifically, the first point identifies the minimum power output when the unit is operational, while the last point identifies the maximum power output.
Additional remarks:
+Additional remarks:
- For time-dependent production limits or time-dependent production costs, the usage of nested arrays is allowed. For example, if
Production cost curve (MW)
is set to[5.0, [10.0, 12.0, 15.0, 20.0]]
, then the unit may generate at most 10, 12, 15 and 20 MW of power during time periods 1, 2, 3 and 4, respectively. The minimum output for all time periods is fixed to at 5 MW. - There is no limit to the number of piecewise-linear segments, and different generators may have a different number of segments.
- If
Production cost curve (MW)
andProduction cost curve ($)
both contain a single element, then the generator must produce exactly that amount of power when operational. To specify that the generator may produce any amount of power up to a certain limitP
, the parameterProduction cost curve (MW)
should be set to[0, P]
. - Production cost curves must be convex.
Example
+Example
{
"Generators": {
"gen1": {
@@ -368,7 +355,7 @@ Note that this curve also specifies the production limits. Specifically, the fir
}
-Price-sensitive loads
+1.4 Price-sensitive loads
This section describes components in the system which may increase or reduce their energy consumption according to the energy prices. Fixed loads (as described in the buses
section) are always served, regardless of the price, unless there is significant congestion in the system or insufficient production capacity. Price-sensitive loads, on the other hand, are only served if it is economical to do so.
Example
+Example
{
"Price-sensitive loads": {
"p1": {
@@ -412,7 +399,7 @@ Note that this curve also specifies the production limits. Specifically, the fir
}
-Transmission Lines
+1.5 Transmission Lines
This section describes the characteristics of transmission system, such as its topology and the susceptance of each transmission line.
Example
+Example
{
"Transmission lines": {
"l1": {
@@ -484,7 +471,7 @@ Note that this curve also specifies the production limits. Specifically, the fir
}
-Reserves
+1.6 Reserves
This section describes the hourly amount of operating reserves required.
Example
+Example
{
"Reserves": {
"Spinning (MW)": [
@@ -517,7 +504,7 @@ Note that this curve also specifies the production limits. Specifically, the fir
}
-Contingencies
+1.7 Contingencies
This section describes credible contingency scenarios in the optimization, such as the loss of a transmission line or generator.
Example
+Example
{
"Contingencies": {
"c1": {
@@ -554,8 +541,8 @@ Note that this curve also specifies the production limits. Specifically, the fir
}
-Additional remarks
-Time series parameters
+1.8 Additional remarks
+Time series parameters
Many numerical properties in the JSON file can be specified either as a single floating point number if they are time-independent, or as an array containing exactly T
elements, where T
is the length of the planning horizon, if they are time-dependent. For example, both formats below are valid when T=3
:
{
"Load (MW)": 800.0,
@@ -563,12 +550,15 @@ Note that this curve also specifies the production limits. Specifically, the fir
}
-Current limitations
+Current limitations
- All reserves are system-wide (no zonal reserves)
- Network topology remains the same for all time periods
- Only N-1 transmission contingencies are supported. Generator contingencies are not supported. -