Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Occupant Types Data #97

Merged
merged 11 commits into from
Sep 27, 2024
lymereJ marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -294,15 +294,15 @@ def create_openstudio_standards_space_data_json(
space_type_data["ventilation_per_area"] = vent_per_area
# assume unit is cfm/ft2; TODO: unit check
space_type_data["ventilation_air_changes"] = 0.0
space_type_data[
"occupancy_per_area"
] = occ_per_area # assume unit is people / 1000 ft2; TODO: unit check
space_type_data["occupancy_per_area"] = (
occ_per_area # assume unit is people / 1000 ft2; TODO: unit check
)

# Schedules
schedule_set_name = space_type_infos["schedule_set_name"]
space_type_data[
"electric_equipment_schedule"
] = f"{schedule_set_name}_equipment"
space_type_data["electric_equipment_schedule"] = (
f"{schedule_set_name}_equipment"
)
space_type_data["gas_equipment_schedule"] = f"{schedule_set_name}_equipment"
space_type_data["lighting_schedule"] = f"{schedule_set_name}_lighting"
space_type_data["occupancy_schedule"] = f"{schedule_set_name}_occupancy"
Expand Down Expand Up @@ -381,6 +381,9 @@ def create_openstudio_standards_data_json_ashrae_90_1(
"constructions": "support_constructions",
"curves": "support_performance_curves",
"space_type_schedules": "support_schedules",
"occupant_types": "support_occupant_types",
"occupant_energy_behavior": "support_occupant_energy_behavior",
"occupant_physical_characteristics": "support_occupant_physical_characteristics",
}

# Generate and "export" the data to the correct location within the OpenStudio Standards repository
Expand Down
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 works of literature"
},
{
"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 works of literature"
},
{
"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 works of literature"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you have any reference to a publication?

}
]
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
}
]
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"
}
]
Loading
Loading