https://github.com/openclimatefix/uk-nia-drs
NIA DRS project
https://github.com/openclimatefix/uk-nia-drs
Last synced: 6 months ago
JSON representation
NIA DRS project
- Host: GitHub
- URL: https://github.com/openclimatefix/uk-nia-drs
- Owner: openclimatefix
- Created: 2023-07-14T15:08:39.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-25T16:44:33.000Z (about 2 years ago)
- Last Synced: 2025-03-03T08:45:44.477Z (over 1 year ago)
- Language: Python
- Size: 3.07 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# DRS NIA project
The idea of this project is to prove Solar forecast to the DRS (Dynamic Reserve Settings) NIA project.
More info [here](https://www.smithinst.co.uk/insights/national-grid-eso-and-smith-institute-begin-pioneering-drs-project/)
First OCF will provide PVlive data, and secondly we will provide OCF Forecasts
**PVLive** with the following fields:
- start_datetime_utc: datetime - the start datetime of the period
- end_datetime_utc: datetime - the end datetime of the period
- generation_mw: float - the solar generation value
- capacity_mwp: float - The estimated capacity of the system
- installedcapacity_mwp: float - The installed capacity (this changes is time)
**Forecast** with the following fields:
- start_datetime_utc: datetime - the start datetime of the period
- end_datetime_utc: datetime - the end datetime of the period
- forecasting_creation_datetime_utc: datetime, when the forecast is made
- generation_mw: float - the solar generation value
## file format
The file format for single model files is a csv file:
`forecast_v={v_id}__model_name={model_name}__model_version={model_version}__start_date={start_date}__end_date={end_date}.csv`
where
- forecast_v: int, fore forecast version
- model name: string, the ml model used e.e.g national_xg
- model version: string, the ml model version e.g. 0.0.1
- start and end dates of the forecast: YYYY-MM-DD
For files that utilise multiple models, the following format will be used:
`forecast_v={v_id}__model_name_1={model_name_1}__model_version_1={model_version_1}__model_name_2={model_name_2}__model_version_2={model_version_2}__start_date={start_date}__end_date={end_date}.csv.gz`