Skip to content

Commit

Permalink
Merge branch 'master' into bug/FE-443
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesdiedrich authored Dec 1, 2023
2 parents 8be7d63 + 6a32169 commit fc2bcc2
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
2 changes: 2 additions & 0 deletions gsy_framework/schema/avro_schemas/simulation_raw_data.json
Original file line number Diff line number Diff line change
Expand Up @@ -438,6 +438,8 @@
{"name": "energy_consumption_kWh", "type": "float"},
{"name": "max_energy_demand_kWh", "type": "float"},
{"name": "min_energy_demand_kWh", "type": "float"},
{"name": "cop", "type": "float"},
{"name": "unmatched_demand_kWh", "type": "float"},
{"name": "market_fee", "type": "float"},
{
"name": "bids",
Expand Down
14 changes: 14 additions & 0 deletions gsy_framework/schema/avro_schemas/simulation_state.json
Original file line number Diff line number Diff line change
Expand Up @@ -338,6 +338,20 @@
"values": "float"
}
},
{
"name": "cop",
"type": {
"type": "map",
"values": "float"
}
},
{
"name": "unmatched_demand_kWh",
"type": {
"type": "map",
"values": "float"
}
},
{
"name": "energy_consumption_kWh",
"type": {
Expand Down
8 changes: 8 additions & 0 deletions tests/schema/test_data/simulation_state_test_data.json
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,14 @@
"2023-05-23T22:00": 0.0,
"2023-05-23T23:00": 0.0
},
"cop": {
"2023-05-23T22:00": 4.0,
"2023-05-23T23:00": 6.0
},
"unmatched_demand_kWh": {
"2023-05-23T22:00": 4.0,
"2023-05-23T23:00": 6.0
},
"temp_increase_K": {},
"max_energy_demand_kWh": {
"2023-05-23T22:00": 4.276815903856106,
Expand Down

0 comments on commit fc2bcc2

Please sign in to comment.