remote_microgrid_data
收藏魔搭社区2025-12-05 更新2025-12-06 收录
下载链接:
https://modelscope.cn/datasets/chandar-lab/remote_microgrid_data
下载链接
链接失效反馈官方服务:
资源简介:
## Contents
Parquet files included:
- **norm_avail_wind_power_data.parquet** — Realized available wind power
- **norm_avail_wind_power_forecast.parquet** — Forecasts of available wind power (`DateTime`, `DateTimeUpdated`)
- **norm_demand.parquet** — Realized electrical demand
- **norm_demand_forecast.parquet** — Demand forecasts (`DateTime`, `DateTimeUpdated`)
- **data_exploration.ipynb** — Example notebook for loading and visualizing the data
All series are normalized; see the notebook for details.
---
## Usage
```python
import pandas as pd
wind = pd.read_parquet("norm_avail_wind_power_data.parquet")
demand = pd.read_parquet("norm_demand.parquet")
wind_fc = pd.read_parquet("norm_avail_wind_power_forecast.parquet")
demand_fc = pd.read_parquet("norm_demand_forecast.parquet")
````
---
## Citation
```bibtex
@article{nekoei2025shielded,
title = {Shielded Controller Units for RL with Operational Constraints Applied to Remote Microgrids},
author = {Nekoei, Hadi and Blondin Massé, Alexandre and Hassani, Rachid and Chandar, Sarath and Mai, Vincent},
journal = {arXiv preprint arXiv:2512.01046},
year = {2025}
}
```
---
Datasets licensed under the Creative Commons Attribution-NonCommercial 4.0 International License.
## 内容概述
包含的Parquet文件如下:
- **norm_avail_wind_power_data.parquet** — 实际可用风电功率数据
- **norm_avail_wind_power_forecast.parquet** — 可用风电功率预测数据(含`DateTime`、`DateTimeUpdated`字段)
- **norm_demand.parquet** — 实际用电负荷数据
- **norm_demand_forecast.parquet** — 用电负荷预测数据(含`DateTime`、`DateTimeUpdated`字段)
- **data_exploration.ipynb** — 用于数据加载与可视化的示例Jupyter Notebook
所有时序数据均已完成归一化处理,具体细节可参阅该示例Notebook。
---
## 使用方法
python
import pandas as pd
wind = pd.read_parquet("norm_avail_wind_power_data.parquet")
demand = pd.read_parquet("norm_demand.parquet")
wind_fc = pd.read_parquet("norm_avail_wind_power_forecast.parquet")
demand_fc = pd.read_parquet("norm_demand_forecast.parquet")
---
## 引用格式
bibtex
@article{nekoei2025shielded,
title = {Shielded Controller Units for RL with Operational Constraints Applied to Remote Microgrids},
author = {Nekoei, Hadi and Blondin Massé, Alexandre and Hassani, Rachid and Chandar, Sarath and Mai, Vincent},
journal = {arXiv预印本 arXiv:2512.01046},
year = {2025}
}
---
本数据集采用知识共享署名-非商业性使用4.0国际许可协议(Creative Commons Attribution-NonCommercial 4.0 International License)进行授权。
提供机构:
maas
创建时间:
2025-08-24



