Skip to content

Commit

Permalink
Merge pull request #492 from gridsingularity/feature/GSYE-665
Browse files Browse the repository at this point in the history
GSYE-665: Add SmartMeterAreaStats to simulation_state.json (AVROSCHEMA)
  • Loading branch information
hannesdiedrich authored Dec 19, 2023
2 parents 7d1c3d1 + 8d5eda4 commit ae92142
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions gsy_framework/schema/avro_schemas/simulation_state.json
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,44 @@
}
]
},
{
"name": "SmartMeterAreaStats",
"type": "record",
"fields": [
{
"name": "current_tick",
"type": [
"null",
"int"
]
},
{
"name": "energy_production_forecast_kWh",
"type": {
"type": "map",
"values": "float"
}
},
{
"name": "available_energy_kWh",
"type": {
"type": "map",
"values": "float"
}
},
{
"name": "desired_energy_Wh",
"type": {
"type": "map",
"values": "float"
}
},
{
"name": "total_energy_demanded_Wh",
"type": "float"
}
]
},
{
"name": "StorageAreaStats",
"type": "record",
Expand Down

0 comments on commit ae92142

Please sign in to comment.