This repository contains raw data for the PGLearn Texas7k dataset.
The original Matpower and time series data files are part of the Texas A&M University Electric Grid Datasets, namely the 6716-bus Texas synthetic grid. If you use this dataset in your work, please cite the appropriate papers.
- Make sure you have julia installed
- Instantiate the current environment
julia --project=. -e 'using Pkg; Pkg.instantiate()'
Data processing is not required if you cloned the repository.
This code is included for reproducibility.
- Download raw demand data files from TAMU (see here)
- Copy the following files into the
data/
folderTexas7k_20210804.m
TX7kMW2020.csv
TX7kMvar2020.csv
- Rename matpower file
mv data/Texas7k_20210804.m data/texas7k_TAMU_20210804.m
- Execute the data processing script
julia --project=. process.jl
It is recommended to execute this script with multiple threads
julia --project=. --threads=4 interpolate.jl
By default, the demand data is interpolated down to 5-min granularity.
While the underlying code supports other granularities (see interpolate_demand
function in interpolate.jl
), this functionality is not exposed from the command line.
Please open an issue if you'd like to request this feature.