Update inputs: engineering/mpc_control_building_v1/base
Browse files- tasks/engineering/mpc_control_building_v1/base/input/Denver_current_TMY.epw +0 -0
- tasks/engineering/mpc_control_building_v1/base/input/SFH.idf +0 -0
- tasks/engineering/mpc_control_building_v1/base/input/runtime_env/pyproject.toml +11 -0
- tasks/engineering/mpc_control_building_v1/base/input/task_spec.json +31 -0
tasks/engineering/mpc_control_building_v1/base/input/Denver_current_TMY.epw
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
tasks/engineering/mpc_control_building_v1/base/input/SFH.idf
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
tasks/engineering/mpc_control_building_v1/base/input/runtime_env/pyproject.toml
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "mpc-control-building-runtime"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
requires-python = ">=3.10"
|
| 5 |
+
dependencies = [
|
| 6 |
+
"numpy>=1.24",
|
| 7 |
+
"pandas>=2.0",
|
| 8 |
+
"scipy>=1.10",
|
| 9 |
+
"matplotlib>=3.7",
|
| 10 |
+
"cvxpy>=1.4",
|
| 11 |
+
]
|
tasks/engineering/mpc_control_building_v1/base/input/task_spec.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"task": "MPC Control In Building",
|
| 3 |
+
"time_step_minutes": 15,
|
| 4 |
+
"period": {"start": "July 1", "end": "July 28", "evaluation_day": "July 28"},
|
| 5 |
+
"baseline_controller": {
|
| 6 |
+
"occupied_setpoint_c": 24.0,
|
| 7 |
+
"unoccupied_setback_c": 2.0,
|
| 8 |
+
"deadband_c": 0.5,
|
| 9 |
+
"flow_states_kg_s": {"off": 0.0, "low": 0.1, "high": 0.3},
|
| 10 |
+
"occupancy_random_seed": 142857,
|
| 11 |
+
"departure_window": "07:00-10:00",
|
| 12 |
+
"return_window": "16:00-20:00"
|
| 13 |
+
},
|
| 14 |
+
"plant": {"system": "Ideal Loads Air System", "supply_air_temperature_c": 13.0, "cop": 3.0},
|
| 15 |
+
"tou_prices_usd_per_kwh": {
|
| 16 |
+
"off_peak": {"price": 0.06, "hours": "00:00-11:59 and 20:00-23:59"},
|
| 17 |
+
"mid_peak": {"price": 0.12, "hours": "12:00-16:59"},
|
| 18 |
+
"on_peak": {"price": 0.25, "hours": "17:00-19:59"}
|
| 19 |
+
},
|
| 20 |
+
"required_outputs": [
|
| 21 |
+
"baseline_data.csv",
|
| 22 |
+
"mpc_energy_saving_data.csv",
|
| 23 |
+
"mpc_demand_response_data.csv",
|
| 24 |
+
"mpc_actions_energy_saving.csv",
|
| 25 |
+
"mpc_actions_demand_response.csv",
|
| 26 |
+
"rc_log_energy_saving.json",
|
| 27 |
+
"rc_log_demand_response.json",
|
| 28 |
+
"metrics_comparison.csv",
|
| 29 |
+
"results_summary.json"
|
| 30 |
+
]
|
| 31 |
+
}
|