--- license: bsd-3-clause task_categories: - other language: - en - zh tags: - mixed-integer-programming - power-systems - optimization - unit-commitment - mps - benchmark size_categories: - 1K archive name: .tar.gz archive root: / ``` ## Archive Contents After extracting a case archive, the archive root is always the case directory: ```text case_name/ ├── hourly_noline/ ├── hourly_withline/ ├── subhourly_noline/ └── subhourly_withline/ ``` There are two layouts inside the four variant directories. ### Direct Variant Layout Smaller full-year cases use this layout: ```text case_name/ ├── hourly_noline/*.mps ├── hourly_withline/*.mps ├── subhourly_noline/*.mps └── subhourly_withline/*.mps ``` Current direct-layout branches: ```text case14 case30 case57 case118 ``` ### Horizon Layout Larger sampled cases use an additional horizon layer: ```text case_name/ ├── hourly_noline/{3_days,7_days,14_days}/*.mps ├── hourly_withline/{3_days,7_days,14_days}/*.mps ├── subhourly_noline/{3_days,7_days,14_days}/*.mps └── subhourly_withline/{3_days,7_days,14_days}/*.mps ``` Current horizon-layout branches: ```text case3375wp case6515rte case9241pegase ``` 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 ___.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 `.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)