Skip to content

Commit

Permalink
Merge pull request #534 from gridsingularity/feature/GSYE-731
Browse files Browse the repository at this point in the history
GSYE-731: Add Finte Power Plant to state avro schema
  • Loading branch information
spyrostz authored Aug 1, 2024
2 parents ccd7e7d + a0c6f28 commit 2022519
Show file tree
Hide file tree
Showing 3 changed files with 239 additions and 155 deletions.
35 changes: 34 additions & 1 deletion gsy_framework/schema/avro_schemas/simulation_state.json
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,36 @@
}
]
},
{
"name": "FinitePowerPlantStats",
"type": "record",
"fields": [
{
"name": "current_tick",
"type": [
"null",
"int"
]
},
{
"name": "energy_rate",
"type": [
"null",
{
"type": "map",
"values": "float"
}
]
},
{
"name": "max_available_power_kW",
"type": {
"type": "map",
"values": "float"
}
}
]
},
{
"name": "InfiniteBusStats",
"type": "record",
Expand Down Expand Up @@ -296,7 +326,10 @@
"name": "offered_history",
"type": {
"type": "map",
"values": ["string", "float"]
"values": [
"string",
"float"
]
}
},
{
Expand Down
Loading

0 comments on commit 2022519

Please sign in to comment.