-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* occupant types initial commit * clean files and make corresponding changes on documents * modify gitignore * Adding description files and update documents * correct a typo in Structure.md * Modify foreign key and update documents * delete temp files after test * reformat python files * downgrade black version and reformat files * address comments about occupant type dataset
- Loading branch information
1 parent
1945185
commit 9417621
Showing
12 changed files
with
811 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
building_energy_standards_data/database_files/support_occupant_energy_behavior.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
[ | ||
{ | ||
"energy_behavior_name": "office_wasteful", | ||
"cooling_setpoint": 21.9, | ||
"cooling_setpoint_units": "Celsius", | ||
"heating_setpoint": 24.9, | ||
"heating_setpoint_units": "Celsius", | ||
"minimum_dimming_level": 0, | ||
"annotation": "Based on previous literature, see the reference table in Occupant Types Dataset section in Structure.md" | ||
}, | ||
{ | ||
"energy_behavior_name": "office_normal", | ||
"cooling_setpoint": 23.7, | ||
"cooling_setpoint_units": "Celsius", | ||
"heating_setpoint": 22.7, | ||
"heating_setpoint_units": "Celsius", | ||
"minimum_dimming_level": 0.2, | ||
"annotation": "Based on previous literature, see the reference table in Occupant Types Dataset section in Structure.md" | ||
}, | ||
{ | ||
"energy_behavior_name": "office_austerity", | ||
"cooling_setpoint": 25.4, | ||
"cooling_setpoint_units": "Celsius", | ||
"heating_setpoint": 20.5, | ||
"heating_setpoint_units": "Celsius", | ||
"minimum_dimming_level": 0.5, | ||
"annotation": "Based on previous literature, see the reference table in Occupant Types Dataset section in Structure.md" | ||
} | ||
] |
12 changes: 12 additions & 0 deletions
12
building_energy_standards_data/database_files/support_occupant_physical_characteristics.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[ | ||
{ | ||
"physical_characteristic_name": "office_worker_physical_characteristics", | ||
"schedule_activity_level": "default_activity_schedule", | ||
"schedule_clothing_insulation": "default_clothing_insulation_schedule", | ||
"schedule_air_velocity": "default_air_velocity_schedule", | ||
"work_efficiency": 0, | ||
"co2_generation": 0.0084, | ||
"co2_generation_units": "cfm/met/person", | ||
"annotation": null | ||
} | ||
] |
74 changes: 74 additions & 0 deletions
74
building_energy_standards_data/database_files/support_occupant_types.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
[ | ||
{ | ||
"name": "office_occupant", | ||
"energy_behavior": "office_wasteful", | ||
"occupant_schedule": "office_occupant_early_bird", | ||
"occupant_physical_characteristics": "office_worker_physical_characteristics" | ||
}, | ||
{ | ||
"name": "office_occupant", | ||
"energy_behavior": "office_wasteful", | ||
"occupant_schedule": "office_occupant_regular_worker", | ||
"occupant_physical_characteristics": "office_worker_physical_characteristics" | ||
}, | ||
{ | ||
"name": "office_occupant", | ||
"energy_behavior": "office_wasteful", | ||
"occupant_schedule": "office_occupant_late_owl", | ||
"occupant_physical_characteristics": "office_worker_physical_characteristics" | ||
}, | ||
{ | ||
"name": "office_occupant", | ||
"energy_behavior": "office_wasteful", | ||
"occupant_schedule": "office_occupant_night_shift", | ||
"occupant_physical_characteristics": "office_worker_physical_characteristics" | ||
}, | ||
{ | ||
"name": "office_occupant", | ||
"energy_behavior": "office_normal", | ||
"occupant_schedule": "office_occupant_early_bird", | ||
"occupant_physical_characteristics": "office_worker_physical_characteristics" | ||
}, | ||
{ | ||
"name": "office_occupant", | ||
"energy_behavior": "office_normal", | ||
"occupant_schedule": "office_occupant_regular_worker", | ||
"occupant_physical_characteristics": "office_worker_physical_characteristics" | ||
}, | ||
{ | ||
"name": "office_occupant", | ||
"energy_behavior": "office_normal", | ||
"occupant_schedule": "office_occupant_late_owl", | ||
"occupant_physical_characteristics": "office_worker_physical_characteristics" | ||
}, | ||
{ | ||
"name": "office_occupant", | ||
"energy_behavior": "office_normal", | ||
"occupant_schedule": "office_occupant_night_shift", | ||
"occupant_physical_characteristics": "office_worker_physical_characteristics" | ||
}, | ||
{ | ||
"name": "office_occupant", | ||
"energy_behavior": "office_austerity", | ||
"occupant_schedule": "office_occupant_early_bird", | ||
"occupant_physical_characteristics": "office_worker_physical_characteristics" | ||
}, | ||
{ | ||
"name": "office_occupant", | ||
"energy_behavior": "office_austerity", | ||
"occupant_schedule": "office_occupant_regular_worker", | ||
"occupant_physical_characteristics": "office_worker_physical_characteristics" | ||
}, | ||
{ | ||
"name": "office_occupant", | ||
"energy_behavior": "office_austerity", | ||
"occupant_schedule": "office_occupant_late_owl", | ||
"occupant_physical_characteristics": "office_worker_physical_characteristics" | ||
}, | ||
{ | ||
"name": "office_occupant", | ||
"energy_behavior": "office_austerity", | ||
"occupant_schedule": "office_occupant_night_shift", | ||
"occupant_physical_characteristics": "office_worker_physical_characteristics" | ||
} | ||
] |
Oops, something went wrong.