EridanusQ commited on
Commit
158370a
·
unverified ·
1 Parent(s): 535e10c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +56 -3
README.md CHANGED
@@ -1,3 +1,56 @@
1
- ---
2
- license: bsd-3-clause
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: bsd-3-clause
3
+ task_categories:
4
+ - reinforcement-learning
5
+ tags:
6
+ - power-systems
7
+ - optimization
8
+ - unit-commitment
9
+ - mixed-integer-programming
10
+ ---
11
+
12
+ # Unit Commitment Trajectory Dataset (UCTD)
13
+
14
+ ## 1. Overview
15
+
16
+ This dataset is generated using a customized version of the `UnitCommitment.jl` framework, specifically designed for **Machine Learning for Optimization (ML4Opt)** research. It provides Unit Commitment (SCUC) optimization problems ranging from small IEEE test systems to large-scale national grids.
17
+
18
+ **Core Innovation**: Unlike standard datasets, UCTD incorporates **Power Trajectories** for generator startup and shutdown. This provides a high-fidelity physical representation of power system operations, making it a challenging benchmark for modern optimization solvers and ML models.
19
+
20
+ ## 2. Case Statistics
21
+
22
+ The dataset contains **464** `.mps` files across three grid models:
23
+
24
+ - **Case14**: Basic test system (14-bus, 67 days).
25
+ - **Case30**: Medium-scale system (30-bus, 45 days).
26
+ - **Case2383wp (Challenge Set)**: Large-scale Polish national grid (2383-bus), used for testing scalability.
27
+
28
+ ## 3. Model Variants
29
+
30
+ For each day, 4 modeling variants are provided:
31
+
32
+ 1. `hourly_noline`: 1-hour resolution, unit constraints only.
33
+ 2. `hourly_withline`: 1-hour resolution, including full network constraints (SCUC).
34
+ 3. `subhourly_noline`: 15-minute resolution, unit constraints only.
35
+ 4. `subhourly_withline`: 15-minute resolution, including full network constraints (SCUC).
36
+
37
+ ## 4. File Naming Convention
38
+
39
+ Format: `{case}_{date}_{granularity}_{variant}.mps`
40
+ Example: `case30_2017-01-01_s_withline.mps` (Case30, Sub-hourly, with network constraints).
41
+
42
+ ## 5. Key Features
43
+
44
+ - **High-Fidelity Physics**: Includes power output trajectories during generator startup/shutdown phases.
45
+ - **Multiple Resolutions**: Covers both traditional 1-hour scheduling and modern 15-minute sub-hourly scheduling.
46
+ - **Standardized Format**: Uses the industry-standard `.mps` format, compatible with Gurobi, CPLEX, HiGHS, and more.
47
+
48
+ ## 6. Use Cases
49
+
50
+ - **Supervised Learning**: Predict optimal commitment status or production levels.
51
+ - **End-to-End Optimization**: Train Graph Neural Networks (GNN) to map problem instances directly to solutions.
52
+ - **Solver Benchmarking**: Test the performance and scalability of modern MIP solvers on large-scale power grid problems.
53
+
54
+ ## 7. Citation
55
+
56
+ If you use this dataset in your research, please cite the original `UnitCommitment.jl` paper and acknowledge the source of this trajectory-enhanced version.