File size: 4,022 Bytes
2cc45c1 512a024 854c968 512a024 854c968 2cc45c1 512a024 854c968 512a024 854c968 512a024 854c968 512a024 854c968 512a024 854c968 512a024 854c968 512a024 854c968 512a024 854c968 512a024 854c968 512a024 854c968 512a024 854c968 512a024 854c968 512a024 854c968 512a024 854c968 512a024 854c968 512a024 854c968 512a024 854c968 512a024 854c968 512a024 854c968 512a024 854c968 512a024 854c968 512a024 854c968 512a024 854c968 512a024 854c968 512a024 854c968 512a024 854c968 512a024 854c968 512a024 854c968 512a024 854c968 512a024 854c968 512a024 854c968 512a024 854c968 512a024 854c968 512a024 854c968 512a024 854c968 512a024 854c968 512a024 854c968 512a024 854c968 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 | ---
license: bsd-3-clause
task_categories:
- other
language:
- en
- zh
tags:
- mixed-integer-programming
- power-systems
- optimization
- unit-commitment
- mps
- benchmark
size_categories:
- 1K<n<10K
---
# UnitCommitment Trajectory Dataset
This repository stores generated Unit Commitment trajectory benchmark data.
The project is split into two repositories:
- Code repository: `EridanusQ/UnitCommitment_Trajectory`
- generation scripts
- modified UnitCommitment.jl source code
- Matpower instance download and preprocessing workflow
- documentation for reproducing the MPS generation process
- Dataset repository: `EridanusQ/UnitCommitment_Trajectory_Dataset`
- this Hugging Face Dataset repository
- generated `.mps` benchmark files
- one data case per Git branch
- each branch stores the case as a compressed `.tar.gz` archive
## Repository Layout
The `main` branch is the landing page for the dataset repository. Data are stored on separate branches.
| Branch | Archive | Contents |
| --- | --- | --- |
| `case3375wp` | `case3375wp.tar.gz` | Generated MPS files for `case3375wp` |
| `case6515rte` | `case6515rte.tar.gz` | Generated MPS files for `case6515rte` |
| `case9241pegase` | `case9241pegase.tar.gz` | Generated MPS files for `case9241pegase` |
More case branches can be added using the same convention:
```text
branch name: <case_name>
archive name: <case_name>.tar.gz
archive root: <case_name>/
```
## Archive Contents
After extracting a case archive, the directory structure is:
```text
case_name/
├── hourly_noline/
├── hourly_withline/
├── subhourly_noline/
└── subhourly_withline/
```
The four variants represent:
| Directory | Description |
| --- | --- |
| `hourly_noline` | Hourly UC instances without transmission line constraints |
| `hourly_withline` | Hourly SCUC instances with transmission line constraints |
| `subhourly_noline` | Sub-hourly UC instances without transmission line constraints |
| `subhourly_withline` | Sub-hourly SCUC instances with transmission line constraints |
File names follow:
```text
<case>_<date>_<resolution>_<network>.mps
```
For example:
```text
case3375wp_2017-05-01_s_withline.mps
case6515rte_2017-08-01_h_noline.mps
case9241pegase_2017-02-25_h_noline.mps
```
where `h` means hourly and `s` means sub-hourly.
## Download
### Download With Hugging Face CLI
```powershell
huggingface-cli download EridanusQ/UnitCommitment_Trajectory_Dataset `
case3375wp.tar.gz `
--repo-type dataset `
--revision case3375wp `
--local-dir data/case3375wp
```
Replace `case3375wp` with the target branch/case name.
### Download With Git LFS
```powershell
git lfs install
git clone -b case3375wp https://huggingface.co/datasets/EridanusQ/UnitCommitment_Trajectory_Dataset
```
Then extract the archive:
```powershell
tar -xzf case3375wp.tar.gz
```
## Dataset Generation
The generated data come from Matpower Unit Commitment instances and are exported as standard `.mps` files for mixed-integer programming solver benchmarking.
The generation workflow is maintained in the separate code repository, not in this dataset repository. Please use the code repository for:
- environment setup
- downloading source Matpower instances
- modifying or inspecting UnitCommitment.jl model code
- regenerating MPS files
- reproducing the trajectory constraints and preprocessing logic
This dataset repository is intended to be lightweight to browse: each branch contains only the compressed generated output for one case.
## Storage Policy
Do not commit expanded `.mps` directories to this repository. For each case:
1. Generate the case directory locally.
2. Compress it as `<case_name>.tar.gz`.
3. Commit the archive to the matching branch.
4. Track the archive with Git LFS.
This keeps each branch easy to download and avoids thousands of large text files in the Git tree.
## Citation
The original UnitCommitment.jl project is available at:
[10.5281/zenodo.4269874](https://doi.org/10.5281/zenodo.4269874)
|