diff --git a/PHX/model/building.py b/PHX/model/building.py index 9f1a130..931bce3 100644 --- a/PHX/model/building.py +++ b/PHX/model/building.py @@ -9,15 +9,18 @@ from collections import defaultdict from dataclasses import dataclass, field from functools import reduce -from typing import (Any, ClassVar, Dict, Generator, List, NamedTuple, Optional, - Sequence, Set, Union, ValuesView) +from typing import Any, ClassVar, Dict, Generator, List, NamedTuple, Optional, Sequence, Set, Union, ValuesView from PHX.model import elec_equip, geometry, spaces -from PHX.model.components import (PhxApertureElement, PhxComponentAperture, - PhxComponentOpaque, - PhxComponentThermalBridge) -from PHX.model.enums.building import (AttachedZoneType, SpecificHeatCapacity, - ZoneType) +from PHX.model.components import PhxApertureElement, PhxComponentAperture, PhxComponentOpaque, PhxComponentThermalBridge +from PHX.model.enums.building import ( + AttachedZoneType, + SpecificHeatCapacity, + ZoneType, + WufiVolumeGrossMode, + WufiVolumeNetMode, + WufiWeightedFloorAreaMode, +) from PHX.model.hvac import collection from PHX.model.programs import occupancy @@ -26,8 +29,11 @@ class PhxZone: _count: ClassVar[int] = 0 display_name: str = "" + volume_gross_mode: WufiVolumeGrossMode = WufiVolumeGrossMode.FROM_VISUALIZED_COMPONENTS volume_gross: float = 0.0 + volume_net_mode: WufiVolumeNetMode = WufiVolumeNetMode.USER_DEFINED volume_net: float = 0.0 + weighted_floor_area_mode: WufiWeightedFloorAreaMode = WufiWeightedFloorAreaMode.USER_DEFINED weighted_net_floor_area: float = 0.0 clearance_height: float = 2.5 res_occupant_quantity: float = 0.0 diff --git a/PHX/model/enums/building.py b/PHX/model/enums/building.py index 718b264..2dc2d5c 100644 --- a/PHX/model/enums/building.py +++ b/PHX/model/enums/building.py @@ -69,6 +69,24 @@ class SpecificHeatCapacity(Enum): MASSIVE = 3 +class WufiVolumeGrossMode(Enum): + USER_DEFINED = 6 + FROM_VISUALIZED_COMPONENTS = 7 + + +class WufiVolumeNetMode(Enum): + ESTIMATED_FROM_GROSS = 4 + FROM_GROSS_AND_COMPONETS = 5 + USER_DEFINED = 6 + FROM_VISUALIZED_COMPONENTS = 7 + + +class WufiWeightedFloorAreaMode(Enum): + FROM_VISUALIZED_GEOMETRY = 2 + ESTIMATED_FROM_GROSS_VOLUME = 4 + USER_DEFINED = 6 + + class ZoneType(Enum): SIMULATED = 1 ATTACHED = 2 diff --git a/PHX/to_WUFI_XML/xml_schemas.py b/PHX/to_WUFI_XML/xml_schemas.py index 1777b79..e555b99 100644 --- a/PHX/to_WUFI_XML/xml_schemas.py +++ b/PHX/to_WUFI_XML/xml_schemas.py @@ -239,11 +239,11 @@ def wufi_spaces(_z: building.PhxZone) -> List[spaces.PhxSpace]: for i, sp in enumerate(_z.spaces) ], ), - XML_Node("GrossVolume_Selection", 6), + XML_Node("GrossVolume_Selection", _z.volume_gross_mode.value), XML_Node("GrossVolume", _z.volume_gross), - XML_Node("NetVolume_Selection", 6), + XML_Node("NetVolume_Selection", _z.volume_net_mode.value), XML_Node("NetVolume", _z.volume_net), - XML_Node("FloorArea_Selection", 6), + XML_Node("FloorArea_Selection", _z.weighted_floor_area_mode.value), XML_Node("FloorArea", _z.icfa_override or _z.weighted_net_floor_area), XML_Node("ClearanceHeight_Selection", 1), XML_Node("ClearanceHeight", _z.clearance_height), diff --git a/tests/_regenerated_xml/_la_mora.xml b/tests/_regenerated_xml/_la_mora.xml index b0aadb8..86e3276 100644 --- a/tests/_regenerated_xml/_la_mora.xml +++ b/tests/_regenerated_xml/_la_mora.xml @@ -29590,7 +29590,7 @@ 0 - 6 + 7 18701.049473978037 6 12548.384213274 @@ -29812,7 +29812,7 @@ - 6 + 7 0.0 6 0.0 @@ -29840,7 +29840,7 @@ - 6 + 7 0.0 6 0.0 @@ -60528,7 +60528,7 @@ 0 - 6 + 7 18701.049473978037 6 12548.384213274 @@ -60750,7 +60750,7 @@ - 6 + 7 0.0 6 0.0 @@ -60778,7 +60778,7 @@ - 6 + 7 0.0 6 0.0 diff --git a/tests/_regenerated_xml/_ridgeway.xml b/tests/_regenerated_xml/_ridgeway.xml index 48a0ab0..732fba8 100644 --- a/tests/_regenerated_xml/_ridgeway.xml +++ b/tests/_regenerated_xml/_ridgeway.xml @@ -49912,7 +49912,7 @@ https://airtable.com/shr0OvkasxXJlqLHj 0 - 6 + 7 26616.5842412238 6 18513.25432507126 diff --git a/tests/_source_gh/hbph_test_models.gh b/tests/_source_gh/hbph_test_models.gh index 4323b1f..c9759ad 100644 Binary files a/tests/_source_gh/hbph_test_models.gh and b/tests/_source_gh/hbph_test_models.gh differ diff --git a/tests/_test_reference_files_hbjson/Default_Model_Single_Zone.hbjson b/tests/_test_reference_files_hbjson/Default_Model_Single_Zone.hbjson index 4965c76..329539c 100644 --- a/tests/_test_reference_files_hbjson/Default_Model_Single_Zone.hbjson +++ b/tests/_test_reference_files_hbjson/Default_Model_Single_Zone.hbjson @@ -1,829 +1,564 @@ { - "version": "1.55.0", - "identifier": "unnamed_b403f2d1", - "angle_tolerance": 1.0, "type": "Model", "units": "Meters", - "display_name": "unnamed", - "rooms": [ - { - "identifier": "Room_5_6eedca30", - "type": "Room", - "display_name": "Room_5", - "faces": [ + "properties": { + "type": "ModelProperties", + "ph": { + "type": "ModelPhPropertiesAbridged", + "team": { + "user_data": {}, + "customer": { + "user_data": {}, + "telephone": null, + "city": null, + "name": null, + "street": null, + "post_code": null, + "identifier": "409407dd-344b-46a3-a5f8-b9c276065f7c", + "license_number": null, + "display_name": "409407dd-344b-46a3-a5f8-b9c276065f7c", + "email": null + }, + "owner": { + "user_data": {}, + "telephone": null, + "city": null, + "name": null, + "street": null, + "post_code": null, + "identifier": "b1adbebb-1cee-422c-80b6-0af033c43531", + "license_number": null, + "display_name": "b1adbebb-1cee-422c-80b6-0af033c43531", + "email": null + }, + "designer": { + "user_data": {}, + "telephone": null, + "city": null, + "name": null, + "street": null, + "post_code": null, + "identifier": "80e135ec-bf61-4c7b-b129-bf06f067c8b8", + "license_number": null, + "display_name": "80e135ec-bf61-4c7b-b129-bf06f067c8b8", + "email": null + }, + "building": { + "user_data": {}, + "telephone": null, + "city": null, + "name": null, + "street": null, + "post_code": null, + "identifier": "2650a739-e24d-432e-834a-caf5fe0aead6", + "license_number": null, + "display_name": "2650a739-e24d-432e-834a-caf5fe0aead6", + "email": null + }, + "identifier": "71978319-9ecf-41b1-b96e-0f24bf3e9e28", + "display_name": "71978319-9ecf-41b1-b96e-0f24bf3e9e28" + }, + "id_num": 0, + "bldg_segments": [ { - "boundary_condition": { - "type": "Outdoors", - "sun_exposure": true, - "wind_exposure": true, - "view_factor": { - "type": "Autocalculate" - } - }, - "identifier": "Room_5_6eedca30..Face0", - "type": "Face", - "face_type": "Wall", - "geometry": { - "boundary": [ - [ - 0.0, - 0.0, - 3.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 5.0, - 0.0, - 0.0 - ], - [ - 5.0, - 0.0, - 3.0 - ] - ], - "plane": { - "type": "Plane", - "n": [ - 0.0, - -1.0, - 0.0 - ], - "o": [ - 0.0, - 0.0, - 0.0 - ], - "x": [ - 1.0, - 0.0, - 0.0 - ] + "user_data": {}, + "non_combustible_materials": false, + "num_floor_levels": 1, + "phius_certification": { + "user_data": {}, + "display_name": "97ad1f3f-359e-4485-b6fd-e30b23b1d46a", + "int_gains_dhw_marginal_perf_ratio": null, + "PHIUS2021_cooling_load": 10.0, + "int_gains_flush_heat_loss": true, + "PHIUS2021_heating_demand": 15.0, + "PHIUS2021_heating_load": 10.0, + "localization_selection_type": 2, + "int_gains_toilet_room_util_pat": null, + "building_status": { + "value": "1-IN_PLANNING" }, - "type": "Face3D" - }, - "display_name": "Room_5_6eedca30..Face0", - "properties": { - "radiance": { - "type": "FaceRadiancePropertiesAbridged" + "icfa_override": null, + "building_use_type": { + "value": "1-RESIDENTIAL" }, - "type": "FacePropertiesAbridged", - "energy": { - "type": "FaceEnergyPropertiesAbridged" + "identifier": "97ad1f3f-359e-4485-b6fd-e30b23b1d46a", + "certification_program": { + "value": "7-PHIUS 2021 CORE" }, - "ph": { - "type": "FacePhPropertiesAbridged", - "id_num": 0 + "building_type": { + "value": "1-NEW_CONSTRUCTION" }, - "ph_hvac": { - "type": "FacePhHvacProperties" - } - } - }, - { - "boundary_condition": { - "type": "Outdoors", - "sun_exposure": true, - "wind_exposure": true, - "view_factor": { - "type": "Autocalculate" + "int_gains_num_toilets": 1, + "PHIUS2021_cooling_demand": 15.0, + "int_gains_use_school_defaults": false, + "int_gains_evap_per_person": 15, + "building_category_type": { + "value": "1-RESIDENTIAL BUILDING" } }, - "identifier": "Room_5_6eedca30..Face1", - "type": "Face", - "face_type": "Wall", - "geometry": { - "boundary": [ - [ - 5.0, - 0.0, - 3.0 - ], - [ - 5.0, - 0.0, - 0.0 - ], - [ - 5.0, - 4.0, - 0.0 - ], - [ - 5.0, - 4.0, - 3.0 - ] - ], - "plane": { - "type": "Plane", - "n": [ - 1.0, - 0.0, - -5.5511151231257827e-17 - ], - "o": [ - 5.0, - 0.0, - 0.0 - ], - "x": [ - 0.0, - 1.0, - 0.0 - ] - }, - "type": "Face3D" + "thermal_bridges": {}, + "set_points": { + "user_data": {}, + "summer": 25.0, + "winter": 20.0, + "identifier": "986dc924-5127-4b0c-b654-cd87ff8b1fb5", + "display_name": "986dc924-5127-4b0c-b654-cd87ff8b1fb5" }, - "display_name": "Room_5_6eedca30..Face1", - "properties": { - "radiance": { - "type": "FaceRadiancePropertiesAbridged" - }, - "type": "FacePropertiesAbridged", - "energy": { - "type": "FaceEnergyPropertiesAbridged" - }, - "ph": { - "type": "FacePhPropertiesAbridged", - "id_num": 0 - }, - "ph_hvac": { - "type": "FacePhHvacProperties" - } - } - }, - { - "boundary_condition": { - "type": "Outdoors", - "sun_exposure": true, - "wind_exposure": true, - "view_factor": { - "type": "Autocalculate" - } + "name": "Unnamed_Bldg_Segment", + "co2e_factors": { + "factors": [] }, - "identifier": "Room_5_6eedca30..Face2", - "type": "Face", - "face_type": "Wall", - "geometry": { - "boundary": [ - [ - 5.0, - 4.0, - 3.0 - ], - [ - 5.0, - 4.0, - 0.0 - ], - [ - 0.0, - 4.0, - 0.0 - ], - [ - 0.0, - 4.0, - 3.0 - ] - ], - "plane": { - "type": "Plane", - "n": [ - 0.0, - 1.0, - -0.0 - ], - "o": [ - 5.0, - 4.0, - 0.0 - ], - "x": [ - -1.0, - 0.0, - 0.0 - ] - }, - "type": "Face3D" + "source_energy_factors": { + "factors": [] }, - "display_name": "Room_5_6eedca30..Face2", - "properties": { - "radiance": { - "type": "FaceRadiancePropertiesAbridged" + "mech_room_temp": 20.0, + "identifier": "1937160a-114b-4f5c-8e1b-344b1c876231", + "display_name": "Unnamed_Bldg_Segment", + "site": { + "location": { + "user_data": {}, + "latitude": 40.600000000000001, + "climate_zone": 1, + "site_elevation": null, + "longitude": -73.799999999999997, + "identifier": "429701c7-a2f5-4170-a916-1e0915a105b0", + "display_name": "429701c7-a2f5-4170-a916-1e0915a105b0", + "hours_from_UTC": -4 }, - "type": "FacePropertiesAbridged", - "energy": { - "type": "FaceEnergyPropertiesAbridged" + "user_data": {}, + "climate": { + "user_data": {}, + "station_elevation": 0.0, + "monthly_radiation": { + "user_data": {}, + "west": { + "user_data": {}, + "march": 0.0, + "january": 0.0, + "april": 0.0, + "july": 0.0, + "october": 0.0, + "may": 0.0, + "december": 0.0, + "june": 0.0, + "september": 0.0, + "identifier": "7ddd7cc5-09fe-4c02-9a7e-455bea2788fe", + "display_name": "7ddd7cc5-09fe-4c02-9a7e-455bea2788fe", + "august": 0.0, + "february": 0.0, + "november": 0.0 + }, + "south": { + "user_data": {}, + "march": 0.0, + "january": 0.0, + "april": 0.0, + "july": 0.0, + "october": 0.0, + "may": 0.0, + "december": 0.0, + "june": 0.0, + "september": 0.0, + "identifier": "a144c090-532c-4b99-bfe0-eb64b8b0b7b4", + "display_name": "a144c090-532c-4b99-bfe0-eb64b8b0b7b4", + "august": 0.0, + "february": 0.0, + "november": 0.0 + }, + "glob": { + "user_data": {}, + "march": 0.0, + "january": 0.0, + "april": 0.0, + "july": 0.0, + "october": 0.0, + "may": 0.0, + "december": 0.0, + "june": 0.0, + "september": 0.0, + "identifier": "49e3d16f-6d29-4d46-8b20-7f2ec9187c55", + "display_name": "49e3d16f-6d29-4d46-8b20-7f2ec9187c55", + "august": 0.0, + "february": 0.0, + "november": 0.0 + }, + "north": { + "user_data": {}, + "march": 0.0, + "january": 0.0, + "april": 0.0, + "july": 0.0, + "october": 0.0, + "may": 0.0, + "december": 0.0, + "june": 0.0, + "september": 0.0, + "identifier": "02a55e53-7062-49fd-9998-924c629260f9", + "display_name": "02a55e53-7062-49fd-9998-924c629260f9", + "august": 0.0, + "february": 0.0, + "november": 0.0 + }, + "east": { + "user_data": {}, + "march": 0.0, + "january": 0.0, + "april": 0.0, + "july": 0.0, + "october": 0.0, + "may": 0.0, + "december": 0.0, + "june": 0.0, + "september": 0.0, + "identifier": "cb5edc26-8cd6-4124-89e1-341379db965b", + "display_name": "cb5edc26-8cd6-4124-89e1-341379db965b", + "august": 0.0, + "february": 0.0, + "november": 0.0 + }, + "identifier": "6f2607ca-adbc-43e7-aff4-9c8d88a5937e", + "display_name": "6f2607ca-adbc-43e7-aff4-9c8d88a5937e" + }, + "ground": { + "user_data": {}, + "ground_thermal_conductivity": 2, + "flow_rate_groundwater": 0.050000000000000003, + "identifier": "e44aa9ee-163a-47a8-b140-e8323e4d5f3a", + "display_name": "e44aa9ee-163a-47a8-b140-e8323e4d5f3a", + "ground_density": 2000, + "ground_heat_capacity": 1000, + "depth_groundwater": 3 + }, + "peak_loads": { + "user_data": {}, + "heat_load_1": { + "user_data": {}, + "rad_east": 0.0, + "rad_global": 0.0, + "rad_south": 0.0, + "ground_temp": null, + "temp": 0.0, + "rad_north": 0.0, + "rad_west": 0.0, + "sky_temp": null, + "identifier": "39d44bc5-b494-4a6b-b7a7-a99a34dd0e99", + "display_name": "39d44bc5-b494-4a6b-b7a7-a99a34dd0e99", + "dewpoint": null + }, + "heat_load_2": { + "user_data": {}, + "rad_east": 0.0, + "rad_global": 0.0, + "rad_south": 0.0, + "ground_temp": null, + "temp": 0.0, + "rad_north": 0.0, + "rad_west": 0.0, + "sky_temp": null, + "identifier": "63dcf63a-5567-4d65-a981-3749ab2db422", + "display_name": "63dcf63a-5567-4d65-a981-3749ab2db422", + "dewpoint": null + }, + "cooling_load_2": { + "user_data": {}, + "rad_east": 0.0, + "rad_global": 0.0, + "rad_south": 0.0, + "ground_temp": null, + "temp": 0.0, + "rad_north": 0.0, + "rad_west": 0.0, + "sky_temp": null, + "identifier": "50cb3bb5-61cc-455a-8e3f-5293c3577a5b", + "display_name": "50cb3bb5-61cc-455a-8e3f-5293c3577a5b", + "dewpoint": null + }, + "cooling_load_1": { + "user_data": {}, + "rad_east": 0.0, + "rad_global": 0.0, + "rad_south": 0.0, + "ground_temp": null, + "temp": 0.0, + "rad_north": 0.0, + "rad_west": 0.0, + "sky_temp": null, + "identifier": "45a89e6f-8607-4c14-9a12-608e6d7de1a3", + "display_name": "45a89e6f-8607-4c14-9a12-608e6d7de1a3", + "dewpoint": null + }, + "identifier": "ee98ed04-558c-432f-90ba-508f5b96fe55", + "display_name": "ee98ed04-558c-432f-90ba-508f5b96fe55" + }, + "summer_daily_temperature_swing": 8.0, + "identifier": "3b788752-5576-4f89-b12a-d3f1457b5982", + "display_name": "New York", + "average_wind_speed": 4.0, + "monthly_temps": { + "user_data": {}, + "air_temps": { + "user_data": {}, + "march": 0.0, + "january": 0.0, + "april": 0.0, + "july": 0.0, + "october": 0.0, + "may": 0.0, + "december": 0.0, + "june": 0.0, + "september": 0.0, + "identifier": "e8215e71-cd76-4e48-b3a7-509b5f55654f", + "display_name": "e8215e71-cd76-4e48-b3a7-509b5f55654f", + "august": 0.0, + "february": 0.0, + "november": 0.0 + }, + "dewpoints": { + "user_data": {}, + "march": 0.0, + "january": 0.0, + "april": 0.0, + "july": 0.0, + "october": 0.0, + "may": 0.0, + "december": 0.0, + "june": 0.0, + "september": 0.0, + "identifier": "76906233-0e44-488b-8016-a43287b3f2f9", + "display_name": "76906233-0e44-488b-8016-a43287b3f2f9", + "august": 0.0, + "february": 0.0, + "november": 0.0 + }, + "identifier": "0dff3f75-1dfd-4d7d-be3b-08dc18385b00", + "display_name": "0dff3f75-1dfd-4d7d-be3b-08dc18385b00", + "sky_temps": { + "user_data": {}, + "march": 0.0, + "january": 0.0, + "april": 0.0, + "july": 0.0, + "october": 0.0, + "may": 0.0, + "december": 0.0, + "june": 0.0, + "september": 0.0, + "identifier": "d365d7fb-bcb0-4635-9e41-faac510f3825", + "display_name": "d365d7fb-bcb0-4635-9e41-faac510f3825", + "august": 0.0, + "february": 0.0, + "november": 0.0 + }, + "ground_temps": { + "user_data": {}, + "march": 0.0, + "january": 0.0, + "april": 0.0, + "july": 0.0, + "october": 0.0, + "may": 0.0, + "december": 0.0, + "june": 0.0, + "september": 0.0, + "identifier": "67810876-c2f7-4b8e-867b-3addfb52cf50", + "display_name": "67810876-c2f7-4b8e-867b-3addfb52cf50", + "august": 0.0, + "february": 0.0, + "november": 0.0 + } + } }, - "ph": { - "type": "FacePhPropertiesAbridged", - "id_num": 0 + "phpp_library_codes": { + "user_data": {}, + "dataset_name": "US0055b-New York", + "country_code": "US-United States of America", + "region_code": "New York", + "identifier": "9d370e14-2166-4821-945d-8d9e62f28edc", + "display_name": "US0055b-New York" }, - "ph_hvac": { - "type": "FacePhHvacProperties" - } - } - }, + "identifier": "44ca362d-62d1-48aa-80d9-38c3a8e799a7", + "display_name": "44ca362d-62d1-48aa-80d9-38c3a8e799a7" + }, + "phi_certification": { + "user_data": {}, + "attributes": { + "tfa_override": null, + "certification_type": "1-PASSIVE HOUSE", + "occupancy_type": "1-STANDARD (ONLY FOR RESIDENTIAL BUILDINGS)", + "enerphit_type": "2-ENERGY DEMAND METHOD", + "ihg_type": "2-STANDARD", + "certification_class": "1-CLASSIC", + "retrofit_type": "1-NEW BUILDING", + "building_use_type": "10-DWELLING", + "phpp_version": 9, + "primary_energy_type": "2-PER (RENEWABLE)", + "building_category_type": "1-RESIDENTIAL BUILDING" + }, + "display_name": "f585baf5-7541-4dbf-9a8a-02684a5304d3", + "identifier": "f585baf5-7541-4dbf-9a8a-02684a5304d3", + "phpp_version": 9 + }, + "summer_hrv_bypass_mode": { + "value": "4-ALWAYS" + }, + "wind_exposure_type": { + "value": "1-SEVERAL_SIDES_EXPOSED_NO_SCREENING" + }, + "num_dwelling_units": 1 + } + ] + }, + "energy": { + "type": "ModelEnergyProperties", + "shws": [], + "schedules": [ { - "boundary_condition": { - "type": "Outdoors", - "sun_exposure": true, - "wind_exposure": true, - "view_factor": { - "type": "Autocalculate" + "type": "ScheduleRulesetAbridged", + "schedule_type_limit": "Activity Level", + "default_day_schedule": "Seated Adult Activity_Day Schedule", + "properties": { + "type": "ScheduleRulesetProperties", + "ph": { + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997, + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] + } } }, - "identifier": "Room_5_6eedca30..Face3", - "type": "Face", - "face_type": "Wall", - "geometry": { - "boundary": [ - [ - 0.0, - 4.0, - 3.0 - ], - [ - 0.0, - 4.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 3.0 - ] - ], - "plane": { - "type": "Plane", - "n": [ - -1.0, - 0.0, - 0.0 + "identifier": "Seated Adult Activity", + "day_schedules": [ + { + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ] ], - "o": [ - 0.0, - 4.0, - 0.0 + "values": [ + 120.0 ], - "x": [ - 0.0, - -1.0, - 0.0 - ] - }, - "type": "Face3D" - }, - "display_name": "Room_5_6eedca30..Face3", - "properties": { - "radiance": { - "type": "FaceRadiancePropertiesAbridged" - }, - "type": "FacePropertiesAbridged", - "energy": { - "type": "FaceEnergyPropertiesAbridged" - }, - "ph": { - "type": "FacePhPropertiesAbridged", - "id_num": 0 - }, - "ph_hvac": { - "type": "FacePhHvacProperties" + "interpolate": false, + "identifier": "Seated Adult Activity_Day Schedule" } - } + ] }, { - "boundary_condition": { - "type": "Ground" - }, - "identifier": "Room_5_6eedca30..Face4", - "type": "Face", - "face_type": "Floor", - "geometry": { - "boundary": [ - [ - 5.0, - 4.0, - 0.0 - ], - [ - 5.0, - 0.0, - 0.0 + "type": "ScheduleRulesetAbridged", + "holiday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", + "schedule_type_limit": "Fractional", + "schedule_rules": [ + { + "type": "ScheduleRuleAbridged", + "apply_friday": true, + "apply_sunday": false, + "apply_saturday": false, + "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", + "apply_thursday": true, + "end_date": [ + 12, + 31 ], - [ - 0.0, - 0.0, - 0.0 + "apply_tuesday": true, + "start_date": [ + 1, + 1 ], - [ - 0.0, - 4.0, - 0.0 - ] - ], - "plane": { - "type": "Plane", - "n": [ - 0.0, - 0.0, - -1.0 + "apply_wednesday": true, + "apply_monday": true + }, + { + "type": "ScheduleRuleAbridged", + "apply_friday": false, + "apply_sunday": false, + "apply_saturday": true, + "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", + "apply_thursday": false, + "end_date": [ + 12, + 31 ], - "o": [ - 0.0, - 0.0, - 0.0 + "apply_tuesday": false, + "start_date": [ + 1, + 1 ], - "x": [ - 0.0, - 1.0, - 0.0 - ] - }, - "type": "Face3D" - }, - "display_name": "Room_5_6eedca30..Face4", + "apply_wednesday": false, + "apply_monday": false + } + ], + "summer_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", + "default_day_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", "properties": { - "radiance": { - "type": "FaceRadiancePropertiesAbridged" - }, - "type": "FacePropertiesAbridged", - "energy": { - "type": "FaceEnergyPropertiesAbridged" - }, + "type": "ScheduleRulesetProperties", "ph": { - "type": "FacePhPropertiesAbridged", - "id_num": 0 - }, - "ph_hvac": { - "type": "FacePhHvacProperties" - } - } - }, - { - "boundary_condition": { - "type": "Outdoors", - "sun_exposure": true, - "wind_exposure": true, - "view_factor": { - "type": "Autocalculate" + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997, + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] + } } }, - "identifier": "Room_5_6eedca30..Face5", - "type": "Face", - "face_type": "RoofCeiling", - "geometry": { - "boundary": [ - [ - 0.0, - 4.0, - 3.0 + "identifier": "Generic Office Lighting", + "day_schedules": [ + { + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ], + [ + 6, + 0 + ], + [ + 18, + 0 + ] ], - [ - 0.0, - 0.0, - 3.0 + "values": [ + 0.050000000000000003, + 0.04311628, + 0.050000000000000003 ], - [ - 5.0, - 0.0, - 3.0 + "interpolate": false, + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun" + }, + { + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ] ], - [ - 5.0, - 4.0, - 3.0 - ] - ], - "plane": { - "type": "Plane", - "n": [ - 5.5511151231257827e-17, - -0.0, + "values": [ 1.0 ], - "o": [ - 0.0, - 0.0, - 3.0 - ], - "x": [ - 1.0, - 0.0, - -5.5511151231257827e-17 - ] + "interpolate": false, + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn" }, - "type": "Face3D" - }, - "display_name": "Room_5_6eedca30..Face5", - "properties": { - "radiance": { - "type": "FaceRadiancePropertiesAbridged" - }, - "type": "FacePropertiesAbridged", - "energy": { - "type": "FaceEnergyPropertiesAbridged" - }, - "ph": { - "type": "FacePhPropertiesAbridged", - "id_num": 0 - }, - "ph_hvac": { - "type": "FacePhHvacProperties" - } - } - } - ], - "properties": { - "radiance": { - "type": "RoomRadiancePropertiesAbridged" - }, - "type": "RoomPropertiesAbridged", - "energy": { - "program_type": "Generic Office Program", - "type": "RoomEnergyPropertiesAbridged", - "hvac": "Room_5_6eedca30 Ideal Loads Air System" - }, - "ph": { - "type": "RoomPhPropertiesAbridged", - "ph_bldg_segment_id": "e0764df9-5f36-48aa-92d2-ea66d5dfd80e", - "specific_heat_capacity": "1-LIGHTWEIGHT", - "ph_foundations": [], - "spaces": [] - }, - "ph_hvac": { - "supportive_devices": [], - "type": "RoomPhHvacPropertiesAbridged", - "heat_pump_systems": [], - "heating_systems": [], - "exhaust_vent_devices": [], - "ventilation_system": null, - "renewable_devices": [], - "hot_water_system": null, - "id_num": 0 - } - } - } - ], - "tolerance": 0.001, - "properties": { - "radiance": { - "modifiers": [], - "type": "ModelRadianceProperties", - "modifier_sets": [], - "global_modifier_set": { - "door_set": { - "exterior_modifier": "generic_opaque_door_0.50", - "interior_glass_modifier": "generic_interior_window_vis_0.88", - "interior_modifier": "generic_opaque_door_0.50", - "overhead_modifier": "generic_opaque_door_0.50", - "type": "DoorModifierSetAbridged", - "exterior_glass_modifier": "generic_exterior_window_vis_0.64" - }, - "type": "GlobalModifierSet", - "wall_set": { - "interior_modifier": "generic_wall_0.50", - "type": "WallModifierSetAbridged", - "exterior_modifier": "generic_wall_0.50" - }, - "shade_set": { - "interior_modifier": "generic_interior_shade_0.50", - "type": "ShadeModifierSetAbridged", - "exterior_modifier": "generic_exterior_shade_0.35" - }, - "air_boundary_modifier": "air_boundary", - "aperture_set": { - "skylight_modifier": "generic_exterior_window_vis_0.64", - "type": "ApertureModifierSetAbridged", - "interior_modifier": "generic_interior_window_vis_0.88", - "operable_modifier": "generic_exterior_window_vis_0.64", - "window_modifier": "generic_exterior_window_vis_0.64" - }, - "modifiers": [ - { - "b_reflectance": 1.0, - "r_reflectance": 1.0, - "roughness": 0.0, - "transmitted_diff": 1.0, - "specularity": 0.0, - "dependencies": [], - "modifier": null, - "type": "Trans", - "identifier": "air_boundary", - "g_reflectance": 1.0, - "transmitted_spec": 1.0 - }, - { - "roughness": 0.0, - "dependencies": [], - "modifier": null, - "type": "Plastic", - "identifier": "generic_ceiling_0.80", - "b_reflectance": 0.80000000000000004, - "g_reflectance": 0.80000000000000004, - "specularity": 0.0, - "r_reflectance": 0.80000000000000004 - }, - { - "roughness": 0.0, - "dependencies": [], - "modifier": null, - "type": "Plastic", - "identifier": "generic_exterior_shade_0.35", - "b_reflectance": 0.34999999999999998, - "g_reflectance": 0.34999999999999998, - "specularity": 0.0, - "r_reflectance": 0.34999999999999998 - }, - { - "roughness": 0.0, - "dependencies": [], - "modifier": null, - "type": "Plastic", - "identifier": "generic_opaque_door_0.50", - "b_reflectance": 0.5, - "g_reflectance": 0.5, - "specularity": 0.0, - "r_reflectance": 0.5 - }, - { - "roughness": 0.0, - "dependencies": [], - "modifier": null, - "type": "Plastic", - "identifier": "generic_wall_0.50", - "b_reflectance": 0.5, - "g_reflectance": 0.5, - "specularity": 0.0, - "r_reflectance": 0.5 - }, - { - "roughness": 0.0, - "dependencies": [], - "modifier": null, - "type": "Plastic", - "identifier": "generic_interior_shade_0.50", - "b_reflectance": 0.5, - "g_reflectance": 0.5, - "specularity": 0.0, - "r_reflectance": 0.5 - }, - { - "r_transmissivity": 0.95841543286105957, - "g_transmissivity": 0.95841543286105957, - "b_transmissivity": 0.95841543286105957, - "modifier": null, - "dependencies": [], - "identifier": "generic_interior_window_vis_0.88", - "type": "Glass", - "refraction_index": null - }, - { - "r_transmissivity": 0.69757618153843315, - "g_transmissivity": 0.69757618153843315, - "b_transmissivity": 0.69757618153843315, - "modifier": null, - "dependencies": [], - "identifier": "generic_exterior_window_vis_0.64", - "type": "Glass", - "refraction_index": null - }, - { - "roughness": 0.0, - "dependencies": [], - "modifier": null, - "type": "Plastic", - "identifier": "generic_floor_0.20", - "b_reflectance": 0.20000000000000001, - "g_reflectance": 0.20000000000000001, - "specularity": 0.0, - "r_reflectance": 0.20000000000000001 - }, - { - "roughness": 0.0, - "dependencies": [], - "modifier": null, - "type": "Plastic", - "identifier": "generic_context_0.20", - "b_reflectance": 0.20000000000000001, - "g_reflectance": 0.20000000000000001, - "specularity": 0.0, - "r_reflectance": 0.20000000000000001 - } - ], - "context_modifier": "generic_context_0.20", - "floor_set": { - "interior_modifier": "generic_floor_0.20", - "type": "FloorModifierSetAbridged", - "exterior_modifier": "generic_floor_0.20" - }, - "roof_ceiling_set": { - "interior_modifier": "generic_ceiling_0.80", - "type": "RoofCeilingModifierSetAbridged", - "exterior_modifier": "generic_ceiling_0.80" - } - } - }, - "type": "ModelProperties", - "energy": { - "shws": [], - "program_types": [ - { - "people": { - "identifier": "Generic Office People", - "type": "PeopleAbridged", - "people_per_area": 0.056500000000000002, - "radiant_fraction": 0.29999999999999999, - "occupancy_schedule": "Generic Office Occupancy", - "activity_schedule": "Seated Adult Activity", - "latent_fraction": { - "type": "Autocalculate" - }, - "properties": { - "ph": { - "type": "PeoplePhProperties", - "dwellings": { - "identifier": "86cb443b-bb75-472a-820e-df6ed6dbbba4", - "num_dwellings": 0 - }, - "id_num": 0, - "number_bedrooms": 0, - "number_people": 0.0 - }, - "type": "PeopleProperties" - } - }, - "identifier": "Generic Office Program", - "type": "ProgramTypeAbridged", - "setpoint": { - "heating_schedule": "Generic Office Heating", - "type": "SetpointAbridged", - "cooling_schedule": "Generic Office Cooling", - "identifier": "Generic Office Setpoints" - }, - "lighting": { - "visible_fraction": 0.20000000000000001, - "identifier": "Generic Office Lighting", - "type": "LightingAbridged", - "radiant_fraction": 0.69999999999999996, - "schedule": "Generic Office Lighting", - "return_air_fraction": 0.0, - "watts_per_area": 10.550000000000001, - "properties": { - "ph": { - "target_lux_height": 0.80000000000000004, - "type": "LightingPhProperties", - "id_num": 0, - "target_lux": 300 - }, - "type": "LightingProperties" - } - }, - "ventilation": { - "flow_per_person": 0.0023600000000000001, - "type": "VentilationAbridged", - "identifier": "Generic Office Ventilation", - "flow_per_area": 0.00030499999999999999 - }, - "electric_equipment": { - "identifier": "Generic Office Equipment", - "type": "ElectricEquipmentAbridged", - "radiant_fraction": 0.5, - "schedule": "Generic Office Equipment", - "lost_fraction": 0.0, - "latent_fraction": 0.0, - "watts_per_area": 10.330000000000000, - "properties": { - "ph": { - "equipment_collection": { - "equipment_set": {} - }, - "type": "ElectricEquipmentPhProperties" - }, - "type": "ElectricEquipmentProperties" - } - }, - "infiltration": { - "flow_per_exterior_area": 0.00022660000000000001, - "type": "InfiltrationAbridged", - "schedule": "Generic Office Infiltration", - "identifier": "Generic Office Infiltration" - } - } - ], - "schedules": [ - { - "default_day_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", - "winter_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", - "schedule_type_limit": "Fractional", - "schedule_rules": [ - { - "apply_wednesday": true, - "apply_saturday": false, - "type": "ScheduleRuleAbridged", - "apply_thursday": true, - "start_date": [ - 1, - 1 - ], - "end_date": [ - 12, - 31 - ], - "apply_monday": true, - "apply_tuesday": true, - "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", - "apply_friday": true, - "apply_sunday": false + { + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ] + ], + "values": [ + 0.0 + ], + "interpolate": false, + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn" }, { - "apply_wednesday": false, - "apply_saturday": true, - "type": "ScheduleRuleAbridged", - "apply_thursday": false, - "start_date": [ - 1, - 1 - ], - "end_date": [ - 12, - 31 - ], - "apply_monday": false, - "apply_tuesday": false, - "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", - "apply_friday": false, - "apply_sunday": false - } - ], - "identifier": "Generic Office Equipment", - "type": "ScheduleRulesetAbridged", - "day_schedules": [ - { - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 6, - 0 - ], - [ - 18, - 0 - ] - ], - "values": [ - 0.2307553806, - 0.28810717499999999, - 0.2307553806 - ], - "interpolate": false - }, - { - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ] - ], - "values": [ - 1.0 - ], - "interpolate": false - }, - { - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ] - ], - "values": [ - 0.0 - ], - "interpolate": false - }, - { - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", "type": "ScheduleDay", "times": [ [ @@ -852,17 +587,17 @@ ] ], "values": [ - 0.2307553806, - 0.38123479599999999, - 0.47654349499999998, - 0.33358044650000002, - 0.28592609699999999, - 0.2307553806 + 0.050000000000000003, + 0.08623256, + 0.25869767999999999, + 0.12934883999999999, + 0.04311628, + 0.050000000000000003 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat" }, { - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", "type": "ScheduleDay", "times": [ [ @@ -870,19 +605,19 @@ 0 ], [ - 6, + 5, 0 ], [ - 8, + 6, 0 ], [ - 12, + 7, 0 ], [ - 13, + 8, 0 ], [ @@ -892,84 +627,99 @@ [ 18, 0 + ], + [ + 20, + 0 + ], + [ + 22, + 0 + ], + [ + 23, + 0 ] ], "values": [ - 0.30767384079999999, - 0.38123479599999999, - 0.85777829100000003, - 0.76246959199999997, - 0.85777829100000003, - 0.47654349499999998, - 0.38123479599999999 + 0.050000000000000003, + 0.10000000000000001, + 0.08623256, + 0.25869767999999999, + 0.77609304000000001, + 0.43116280000000001, + 0.25869767999999999, + 0.17246512, + 0.08623256, + 0.04311628 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy" } ], - "summer_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", - "holiday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", - "properties": { - "ph": { - "type": "ScheduleRulesetPhProperties", - "operating_periods": { - "collection": [] - }, - "operating_days_wk": 7.0, - "id_num": 0, - "operating_weeks_year": 52.142899999999997 - }, - "type": "ScheduleRulesetProperties" - } + "winter_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn" }, { - "default_day_schedule": "OfficeMedium BLDG_OCC_SCH_Default", - "winter_designday_schedule": "OfficeMedium BLDG_OCC_SCH_WntrDsn", + "type": "ScheduleRulesetAbridged", + "holiday_schedule": "OfficeMedium BLDG_OCC_SCH_Default", "schedule_type_limit": "Fractional", "schedule_rules": [ { - "apply_wednesday": true, - "apply_saturday": false, "type": "ScheduleRuleAbridged", + "apply_friday": true, + "apply_sunday": false, + "apply_saturday": false, + "schedule_day": "OfficeMedium BLDG_OCC_SCH_Wkdy", "apply_thursday": true, - "start_date": [ - 1, - 1 - ], "end_date": [ 12, 31 ], - "apply_monday": true, "apply_tuesday": true, - "schedule_day": "OfficeMedium BLDG_OCC_SCH_Wkdy", - "apply_friday": true, - "apply_sunday": false - }, - { - "apply_wednesday": false, - "apply_saturday": true, - "type": "ScheduleRuleAbridged", - "apply_thursday": false, "start_date": [ 1, 1 ], + "apply_wednesday": true, + "apply_monday": true + }, + { + "type": "ScheduleRuleAbridged", + "apply_friday": false, + "apply_sunday": false, + "apply_saturday": true, + "schedule_day": "OfficeMedium BLDG_OCC_SCH_Sat", + "apply_thursday": false, "end_date": [ 12, 31 ], - "apply_monday": false, "apply_tuesday": false, - "schedule_day": "OfficeMedium BLDG_OCC_SCH_Sat", - "apply_friday": false, - "apply_sunday": false + "start_date": [ + 1, + 1 + ], + "apply_wednesday": false, + "apply_monday": false } ], + "summer_designday_schedule": "OfficeMedium BLDG_OCC_SCH_SmrDsn", + "default_day_schedule": "OfficeMedium BLDG_OCC_SCH_Default", + "properties": { + "type": "ScheduleRulesetProperties", + "ph": { + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997, + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] + } + } + }, "identifier": "Generic Office Occupancy", - "type": "ScheduleRulesetAbridged", "day_schedules": [ { - "identifier": "OfficeMedium BLDG_OCC_SCH_Default", "type": "ScheduleDay", "times": [ [ @@ -990,10 +740,10 @@ 0.050000000000000003, 0.0 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium BLDG_OCC_SCH_Default" }, { - "identifier": "OfficeMedium BLDG_OCC_SCH_SmrDsn", "type": "ScheduleDay", "times": [ [ @@ -1014,10 +764,10 @@ 1.0, 0.050000000000000003 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium BLDG_OCC_SCH_SmrDsn" }, { - "identifier": "OfficeMedium BLDG_OCC_SCH_WntrDsn", "type": "ScheduleDay", "times": [ [ @@ -1028,10 +778,10 @@ "values": [ 0.0 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium BLDG_OCC_SCH_WntrDsn" }, { - "identifier": "OfficeMedium BLDG_OCC_SCH_Wkdy", "type": "ScheduleDay", "times": [ [ @@ -1082,10 +832,10 @@ 0.10000000000000001, 0.050000000000000003 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium BLDG_OCC_SCH_Wkdy" }, { - "identifier": "OfficeMedium BLDG_OCC_SCH_Sat", "type": "ScheduleDay", "times": [ [ @@ -1121,73 +871,73 @@ 0.050000000000000003, 0.0 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium BLDG_OCC_SCH_Sat" } ], - "summer_designday_schedule": "OfficeMedium BLDG_OCC_SCH_SmrDsn", - "holiday_schedule": "OfficeMedium BLDG_OCC_SCH_Default", - "properties": { - "ph": { - "type": "ScheduleRulesetPhProperties", - "operating_periods": { - "collection": [] - }, - "operating_days_wk": 7.0, - "id_num": 0, - "operating_weeks_year": 52.142899999999997 - }, - "type": "ScheduleRulesetProperties" - } + "winter_designday_schedule": "OfficeMedium BLDG_OCC_SCH_WntrDsn" }, { - "default_day_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", - "winter_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", - "schedule_type_limit": "Fractional", + "type": "ScheduleRulesetAbridged", + "holiday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", + "schedule_type_limit": "Temperature", "schedule_rules": [ { - "apply_wednesday": true, - "apply_saturday": false, "type": "ScheduleRuleAbridged", + "apply_friday": true, + "apply_sunday": false, + "apply_saturday": false, + "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", "apply_thursday": true, - "start_date": [ - 1, - 1 - ], "end_date": [ 12, - 31 - ], - "apply_monday": true, - "apply_tuesday": true, - "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Wkdy", - "apply_friday": true, - "apply_sunday": false - }, - { - "apply_wednesday": false, - "apply_saturday": true, - "type": "ScheduleRuleAbridged", - "apply_thursday": false, + 31 + ], + "apply_tuesday": true, "start_date": [ 1, 1 ], + "apply_wednesday": true, + "apply_monday": true + }, + { + "type": "ScheduleRuleAbridged", + "apply_friday": false, + "apply_sunday": false, + "apply_saturday": true, + "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", + "apply_thursday": false, "end_date": [ 12, 31 ], - "apply_monday": false, "apply_tuesday": false, - "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Sat", - "apply_friday": false, - "apply_sunday": false + "start_date": [ + 1, + 1 + ], + "apply_wednesday": false, + "apply_monday": false } ], - "identifier": "Generic Office Infiltration", - "type": "ScheduleRulesetAbridged", + "summer_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", + "default_day_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", + "properties": { + "type": "ScheduleRulesetProperties", + "ph": { + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997, + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] + } + } + }, + "identifier": "Generic Office Heating", "day_schedules": [ { - "identifier": "OfficeMedium INFIL_SCH_PNNL_Default", "type": "ScheduleDay", "times": [ [ @@ -1196,219 +946,215 @@ ] ], "values": [ - 1.0 + 15.600000000000000 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default" }, { - "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", "type": "ScheduleDay", "times": [ [ 0, 0 - ], - [ - 6, - 0 - ], - [ - 22, - 0 ] ], "values": [ - 1.0, - 0.25, - 1.0 + 15.600000000000000 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn" }, { - "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", "type": "ScheduleDay", "times": [ [ 0, 0 ], + [ + 5, + 0 + ], [ 6, 0 ], [ - 18, + 7, + 0 + ], + [ + 22, 0 ] ], "values": [ - 1.0, - 0.25, - 1.0 + 15.600000000000000, + 17.600000000000001, + 19.600000000000001, + 21.0, + 15.600000000000000 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn" }, { - "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy", "type": "ScheduleDay", "times": [ [ 0, 0 ], + [ + 5, + 0 + ], [ 6, 0 ], + [ + 7, + 0 + ], [ 22, 0 ] ], "values": [ - 1.0, - 0.25, - 1.0 + 15.600000000000000, + 17.800000000000001, + 20.0, + 21.0, + 15.600000000000000 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy" }, { - "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat", "type": "ScheduleDay", "times": [ [ 0, 0 ], + [ + 5, + 0 + ], [ 6, 0 ], [ - 18, + 7, + 0 + ], + [ + 17, 0 ] ], "values": [ - 1.0, - 0.25, - 1.0 + 15.600000000000000, + 17.800000000000001, + 20.0, + 21.0, + 15.600000000000000 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat" } ], - "summer_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", - "holiday_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", - "properties": { - "ph": { - "type": "ScheduleRulesetPhProperties", - "operating_periods": { - "collection": [] - }, - "operating_days_wk": 7.0, - "id_num": 0, - "operating_weeks_year": 52.142899999999997 - }, - "type": "ScheduleRulesetProperties" - } + "winter_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn" }, { - "default_day_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", - "winter_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", - "schedule_type_limit": "Temperature", + "type": "ScheduleRulesetAbridged", + "holiday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", + "schedule_type_limit": "Fractional", "schedule_rules": [ { - "apply_wednesday": true, - "apply_saturday": false, "type": "ScheduleRuleAbridged", + "apply_friday": true, + "apply_sunday": false, + "apply_saturday": false, + "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", "apply_thursday": true, - "start_date": [ - 1, - 1 - ], "end_date": [ 12, 31 ], - "apply_monday": true, "apply_tuesday": true, - "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", - "apply_friday": true, - "apply_sunday": false - }, - { - "apply_wednesday": false, - "apply_saturday": true, - "type": "ScheduleRuleAbridged", - "apply_thursday": false, "start_date": [ 1, 1 ], + "apply_wednesday": true, + "apply_monday": true + }, + { + "type": "ScheduleRuleAbridged", + "apply_friday": false, + "apply_sunday": false, + "apply_saturday": true, + "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", + "apply_thursday": false, "end_date": [ 12, 31 ], - "apply_monday": false, "apply_tuesday": false, - "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", - "apply_friday": false, - "apply_sunday": false + "start_date": [ + 1, + 1 + ], + "apply_wednesday": false, + "apply_monday": false } ], - "identifier": "Generic Office Cooling", - "type": "ScheduleRulesetAbridged", + "summer_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", + "default_day_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", + "properties": { + "type": "ScheduleRulesetProperties", + "ph": { + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997, + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] + } + } + }, + "identifier": "Generic Office Equipment", "day_schedules": [ { - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ] - ], - "values": [ - 26.699999999999999 - ], - "interpolate": false - }, - { - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", "type": "ScheduleDay", "times": [ [ 0, 0 ], - [ - 5, - 0 - ], [ 6, 0 ], [ - 7, - 0 - ], - [ - 22, + 18, 0 ] ], "values": [ - 26.699999999999999, - 25.699999999999999, - 25.0, - 24.0, - 26.699999999999999 + 0.2307553806, + 0.28810717499999999, + 0.2307553806 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun" }, { - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", "type": "ScheduleDay", "times": [ [ @@ -1417,46 +1163,26 @@ ] ], "values": [ - 26.699999999999999 + 1.0 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn" }, { - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", "type": "ScheduleDay", "times": [ [ 0, 0 - ], - [ - 5, - 0 - ], - [ - 6, - 0 - ], - [ - 7, - 0 - ], - [ - 22, - 0 ] ], "values": [ - 26.699999999999999, - 25.600000000000001, - 25.0, - 24.0, - 26.699999999999999 + 0.0 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn" }, { - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", "type": "ScheduleDay", "times": [ [ @@ -1464,144 +1190,145 @@ 0 ], [ - 5, + 6, 0 ], [ - 6, + 8, 0 ], [ - 7, + 12, 0 ], [ 17, 0 + ], + [ + 19, + 0 ] ], "values": [ - 26.699999999999999, - 25.699999999999999, - 25.0, - 24.0, - 26.699999999999999 - ], - "interpolate": false - } - ], - "summer_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", - "holiday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", - "properties": { - "ph": { - "type": "ScheduleRulesetPhProperties", - "operating_periods": { - "collection": [] - }, - "operating_days_wk": 7.0, - "id_num": 0, - "operating_weeks_year": 52.142899999999997 - }, - "type": "ScheduleRulesetProperties" - } - }, - { - "default_day_schedule": "Seated Adult Activity_Day Schedule", - "schedule_type_limit": "Activity Level", - "identifier": "Seated Adult Activity", - "type": "ScheduleRulesetAbridged", - "day_schedules": [ + 0.2307553806, + 0.38123479599999999, + 0.47654349499999998, + 0.33358044650000002, + 0.28592609699999999, + 0.2307553806 + ], + "interpolate": false, + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat" + }, { - "identifier": "Seated Adult Activity_Day Schedule", "type": "ScheduleDay", "times": [ [ 0, 0 + ], + [ + 6, + 0 + ], + [ + 8, + 0 + ], + [ + 12, + 0 + ], + [ + 13, + 0 + ], + [ + 17, + 0 + ], + [ + 18, + 0 ] ], "values": [ - 120.0 + 0.30767384079999999, + 0.38123479599999999, + 0.85777829100000003, + 0.76246959199999997, + 0.85777829100000003, + 0.47654349499999998, + 0.38123479599999999 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy" } ], - "properties": { - "ph": { - "type": "ScheduleRulesetPhProperties", - "operating_periods": { - "collection": [] - }, - "operating_days_wk": 7.0, - "id_num": 0, - "operating_weeks_year": 52.142899999999997 - }, - "type": "ScheduleRulesetProperties" - } + "winter_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn" }, { - "default_day_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", - "winter_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", + "type": "ScheduleRulesetAbridged", + "holiday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", "schedule_type_limit": "Temperature", "schedule_rules": [ { - "apply_wednesday": true, - "apply_saturday": false, "type": "ScheduleRuleAbridged", + "apply_friday": true, + "apply_sunday": false, + "apply_saturday": false, + "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", "apply_thursday": true, - "start_date": [ - 1, - 1 - ], "end_date": [ 12, 31 ], - "apply_monday": true, "apply_tuesday": true, - "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", - "apply_friday": true, - "apply_sunday": false - }, - { - "apply_wednesday": false, - "apply_saturday": true, - "type": "ScheduleRuleAbridged", - "apply_thursday": false, "start_date": [ 1, 1 ], + "apply_wednesday": true, + "apply_monday": true + }, + { + "type": "ScheduleRuleAbridged", + "apply_friday": false, + "apply_sunday": false, + "apply_saturday": true, + "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", + "apply_thursday": false, "end_date": [ 12, 31 ], - "apply_monday": false, "apply_tuesday": false, - "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", - "apply_friday": false, - "apply_sunday": false + "start_date": [ + 1, + 1 + ], + "apply_wednesday": false, + "apply_monday": false } ], - "identifier": "Generic Office Heating", - "type": "ScheduleRulesetAbridged", + "summer_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", + "default_day_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", + "properties": { + "type": "ScheduleRulesetProperties", + "ph": { + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997, + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] + } + } + }, + "identifier": "Generic Office Cooling", "day_schedules": [ { - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ] - ], - "values": [ - 15.600000000000000 - ], - "interpolate": false - }, - { - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", "type": "ScheduleDay", "times": [ [ @@ -1610,12 +1337,12 @@ ] ], "values": [ - 15.600000000000000 + 26.699999999999999 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default" }, { - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", "type": "ScheduleDay", "times": [ [ @@ -1640,16 +1367,30 @@ ] ], "values": [ - 15.600000000000000, - 17.600000000000001, - 19.600000000000001, - 21.0, - 15.600000000000000 + 26.699999999999999, + 25.699999999999999, + 25.0, + 24.0, + 26.699999999999999 + ], + "interpolate": false, + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn" + }, + { + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ] ], - "interpolate": false + "values": [ + 26.699999999999999 + ], + "interpolate": false, + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn" }, { - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", "type": "ScheduleDay", "times": [ [ @@ -1674,16 +1415,16 @@ ] ], "values": [ - 15.600000000000000, - 17.800000000000001, - 20.0, - 21.0, - 15.600000000000000 + 26.699999999999999, + 25.600000000000001, + 25.0, + 24.0, + 26.699999999999999 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy" }, { - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", "type": "ScheduleDay", "times": [ [ @@ -1708,131 +1449,117 @@ ] ], "values": [ - 15.600000000000000, - 17.800000000000001, - 20.0, - 21.0, - 15.600000000000000 + 26.699999999999999, + 25.699999999999999, + 25.0, + 24.0, + 26.699999999999999 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat" } ], - "summer_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", - "holiday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", - "properties": { - "ph": { - "type": "ScheduleRulesetPhProperties", - "operating_periods": { - "collection": [] - }, - "operating_days_wk": 7.0, - "id_num": 0, - "operating_weeks_year": 52.142899999999997 - }, - "type": "ScheduleRulesetProperties" - } + "winter_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn" }, { - "default_day_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", - "winter_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", + "type": "ScheduleRulesetAbridged", + "holiday_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", "schedule_type_limit": "Fractional", "schedule_rules": [ { - "apply_wednesday": true, - "apply_saturday": false, "type": "ScheduleRuleAbridged", + "apply_friday": true, + "apply_sunday": false, + "apply_saturday": false, + "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Wkdy", "apply_thursday": true, - "start_date": [ - 1, - 1 - ], "end_date": [ 12, 31 ], - "apply_monday": true, "apply_tuesday": true, - "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", - "apply_friday": true, - "apply_sunday": false - }, - { - "apply_wednesday": false, - "apply_saturday": true, - "type": "ScheduleRuleAbridged", - "apply_thursday": false, "start_date": [ 1, 1 ], + "apply_wednesday": true, + "apply_monday": true + }, + { + "type": "ScheduleRuleAbridged", + "apply_friday": false, + "apply_sunday": false, + "apply_saturday": true, + "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Sat", + "apply_thursday": false, "end_date": [ 12, 31 ], - "apply_monday": false, "apply_tuesday": false, - "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", - "apply_friday": false, - "apply_sunday": false + "start_date": [ + 1, + 1 + ], + "apply_wednesday": false, + "apply_monday": false } ], - "identifier": "Generic Office Lighting", - "type": "ScheduleRulesetAbridged", + "summer_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", + "default_day_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", + "properties": { + "type": "ScheduleRulesetProperties", + "ph": { + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997, + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] + } + } + }, + "identifier": "Generic Office Infiltration", "day_schedules": [ { - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", "type": "ScheduleDay", "times": [ [ 0, 0 - ], - [ - 6, - 0 - ], - [ - 18, - 0 ] ], "values": [ - 0.050000000000000003, - 0.04311628, - 0.050000000000000003 + 1.0 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium INFIL_SCH_PNNL_Default" }, { - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", "type": "ScheduleDay", "times": [ [ 0, 0 - ] - ], - "values": [ - 1.0 - ], - "interpolate": false - }, - { - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", - "type": "ScheduleDay", - "times": [ + ], [ - 0, + 6, + 0 + ], + [ + 22, 0 ] ], "values": [ - 0.0 + 1.0, + 0.25, + 1.0 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn" }, { - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", "type": "ScheduleDay", "times": [ [ @@ -1840,535 +1567,575 @@ 0 ], [ - 6, - 0 - ], - [ - 8, - 0 - ], - [ - 12, - 0 - ], - [ - 17, + 6, 0 ], [ - 19, + 18, 0 ] ], "values": [ - 0.050000000000000003, - 0.08623256, - 0.25869767999999999, - 0.12934883999999999, - 0.04311628, - 0.050000000000000003 + 1.0, + 0.25, + 1.0 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn" }, { - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", "type": "ScheduleDay", "times": [ [ 0, 0 ], - [ - 5, - 0 - ], [ 6, 0 ], [ - 7, + 22, 0 - ], + ] + ], + "values": [ + 1.0, + 0.25, + 1.0 + ], + "interpolate": false, + "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy" + }, + { + "type": "ScheduleDay", + "times": [ [ - 8, + 0, 0 ], [ - 17, + 6, 0 ], [ 18, 0 - ], - [ - 20, - 0 - ], - [ - 22, - 0 - ], - [ - 23, - 0 ] ], "values": [ - 0.050000000000000003, - 0.10000000000000001, - 0.08623256, - 0.25869767999999999, - 0.77609304000000001, - 0.43116280000000001, - 0.25869767999999999, - 0.17246512, - 0.08623256, - 0.04311628 + 1.0, + 0.25, + 1.0 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat" } ], - "summer_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", - "holiday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", - "properties": { - "ph": { - "type": "ScheduleRulesetPhProperties", - "operating_periods": { - "collection": [] - }, - "operating_days_wk": 7.0, - "id_num": 0, - "operating_weeks_year": 52.142899999999997 + "winter_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn" + } + ], + "program_types": [ + { + "type": "ProgramTypeAbridged", + "infiltration": { + "type": "InfiltrationAbridged", + "flow_per_exterior_area": 0.00022660000000000001, + "schedule": "Generic Office Infiltration", + "identifier": "Generic Office Infiltration" + }, + "people": { + "type": "PeopleAbridged", + "properties": { + "type": "PeopleProperties", + "ph": { + "type": "PeoplePhProperties", + "dwellings": { + "num_dwellings": 0, + "identifier": "14df9d19-1026-41db-b8c4-854b116aecc3" + }, + "number_people": 0.0, + "id_num": 0, + "number_bedrooms": 0 + } }, - "type": "ScheduleRulesetProperties" - } + "people_per_area": 0.056500000000000002, + "occupancy_schedule": "Generic Office Occupancy", + "latent_fraction": { + "type": "Autocalculate" + }, + "radiant_fraction": 0.29999999999999999, + "identifier": "Generic Office People", + "activity_schedule": "Seated Adult Activity" + }, + "lighting": { + "type": "LightingAbridged", + "properties": { + "type": "LightingProperties", + "ph": { + "type": "LightingPhProperties", + "target_lux": 300, + "id_num": 0, + "target_lux_height": 0.80000000000000004 + } + }, + "radiant_fraction": 0.69999999999999996, + "identifier": "Generic Office Lighting", + "watts_per_area": 10.550000000000001, + "visible_fraction": 0.20000000000000001, + "return_air_fraction": 0.0, + "schedule": "Generic Office Lighting" + }, + "setpoint": { + "type": "SetpointAbridged", + "heating_schedule": "Generic Office Heating", + "cooling_schedule": "Generic Office Cooling", + "identifier": "Generic Office Setpoints" + }, + "electric_equipment": { + "type": "ElectricEquipmentAbridged", + "properties": { + "type": "ElectricEquipmentProperties", + "ph": { + "type": "ElectricEquipmentPhProperties", + "equipment_collection": { + "equipment_set": {} + } + } + }, + "lost_fraction": 0.0, + "latent_fraction": 0.0, + "radiant_fraction": 0.5, + "identifier": "Generic Office Equipment", + "watts_per_area": 10.330000000000000, + "schedule": "Generic Office Equipment" + }, + "ventilation": { + "type": "VentilationAbridged", + "flow_per_person": 0.0023600000000000001, + "flow_per_area": 0.00030499999999999999, + "identifier": "Generic Office Ventilation" + }, + "identifier": "Generic Office Program" } ], + "materials": [], "global_construction_set": { - "door_set": { - "exterior_glass_construction": "Generic Double Pane", - "type": "DoorConstructionSetAbridged", - "interior_construction": "Generic Interior Door", - "exterior_construction": "Generic Exterior Door", - "interior_glass_construction": "Generic Single Pane", - "overhead_construction": "Generic Exterior Door" - }, - "context_construction": "Generic Context", - "shade_construction": "Generic Shade", "type": "GlobalConstructionSet", - "wall_set": { - "interior_construction": "Generic Interior Wall", - "type": "WallConstructionSetAbridged", - "exterior_construction": "Generic Exterior Wall", - "ground_construction": "Generic Underground Wall" - }, "aperture_set": { - "skylight_construction": "Generic Double Pane", "type": "ApertureConstructionSetAbridged", "interior_construction": "Generic Single Pane", - "operable_construction": "Generic Double Pane", - "window_construction": "Generic Double Pane" + "skylight_construction": "Generic Double Pane", + "window_construction": "Generic Double Pane", + "operable_construction": "Generic Double Pane" }, - "floor_set": { - "interior_construction": "Generic Interior Floor", - "type": "FloorConstructionSetAbridged", - "exterior_construction": "Generic Exposed Floor", - "ground_construction": "Generic Ground Slab" + "door_set": { + "type": "DoorConstructionSetAbridged", + "interior_construction": "Generic Interior Door", + "exterior_glass_construction": "Generic Double Pane", + "overhead_construction": "Generic Exterior Door", + "exterior_construction": "Generic Exterior Door", + "interior_glass_construction": "Generic Single Pane" }, "air_boundary_construction": "Generic Air Boundary", - "roof_ceiling_set": { - "interior_construction": "Generic Interior Ceiling", - "type": "RoofCeilingConstructionSetAbridged", - "exterior_construction": "Generic Roof", - "ground_construction": "Generic Underground Roof" - }, + "context_construction": "Generic Context", "materials": [ { - "properties": { - "ph": { - "user_data": {}, - "id_num": 0, - "divisions": { - "column_widths": [], - "row_heights": [], - "cells": [] - } - }, - "type": "EnergyMaterialProperties" - }, - "density": 800.0, "type": "EnergyMaterial", - "thickness": 0.012699999999999999, - "identifier": "Generic Gypsum Board", - "roughness": "MediumSmooth", - "conductivity": 0.16, - "specific_heat": 1090.0, + "specific_heat": 840.0, "thermal_absorptance": 0.90000000000000002, - "solar_absorptance": 0.5, - "visible_absorptance": 0.5 - }, - { + "solar_absorptance": 0.80000000000000004, + "visible_absorptance": 0.80000000000000004, + "density": 1280.0, + "identifier": "Generic LW Concrete", "properties": { + "type": "EnergyMaterialProperties", "ph": { - "user_data": {}, - "id_num": 0, "divisions": { - "column_widths": [], "row_heights": [], - "cells": [] - } - }, - "type": "EnergyMaterialProperties" + "cells": [], + "column_widths": [] + }, + "id_num": 0, + "user_data": {} + } }, - "density": 1280.0, - "type": "EnergyMaterial", - "thickness": 0.10000000000000001, - "identifier": "Generic LW Concrete", - "roughness": "MediumRough", "conductivity": 0.53000000000000003, - "specific_heat": 840.0, - "thermal_absorptance": 0.90000000000000002, - "solar_absorptance": 0.80000000000000004, - "visible_absorptance": 0.80000000000000004 + "roughness": "MediumRough", + "thickness": 0.10000000000000001 }, { - "identifier": "Generic Window Air Gap", "type": "EnergyWindowMaterialGas", + "gas_type": "Air", "thickness": 0.012699999999999999, - "gas_type": "Air" + "identifier": "Generic Window Air Gap" }, { - "properties": { - "ph": { - "user_data": {}, - "id_num": 0, - "divisions": { - "column_widths": [], - "row_heights": [], - "cells": [] - } - }, - "type": "EnergyMaterialProperties" - }, - "density": 1920.0, "type": "EnergyMaterial", - "thickness": 0.10000000000000001, - "identifier": "Generic Brick", - "roughness": "MediumRough", - "conductivity": 0.90000000000000002, "specific_heat": 790.0, "thermal_absorptance": 0.90000000000000002, "solar_absorptance": 0.65000000000000002, - "visible_absorptance": 0.65000000000000002 - }, - { + "visible_absorptance": 0.65000000000000002, + "density": 1920.0, + "identifier": "Generic Brick", "properties": { + "type": "EnergyMaterialProperties", "ph": { - "user_data": {}, - "id_num": 0, "divisions": { - "column_widths": [], "row_heights": [], - "cells": [] - } - }, - "type": "EnergyMaterialProperties" + "cells": [], + "column_widths": [] + }, + "id_num": 0, + "user_data": {} + } }, - "density": 1.2800000000000000, - "type": "EnergyMaterial", - "thickness": 0.10000000000000001, - "identifier": "Generic Wall Air Gap", - "roughness": "Smooth", - "conductivity": 0.66700000000000004, - "specific_heat": 1000.0, - "thermal_absorptance": 0.90000000000000002, - "solar_absorptance": 0.69999999999999996, - "visible_absorptance": 0.69999999999999996 + "conductivity": 0.90000000000000002, + "roughness": "MediumRough", + "thickness": 0.10000000000000001 }, { + "type": "EnergyMaterial", + "specific_heat": 1630.0, + "thermal_absorptance": 0.90000000000000002, + "solar_absorptance": 0.5, + "visible_absorptance": 0.5, + "density": 608.0, + "identifier": "Generic 25mm Wood", "properties": { + "type": "EnergyMaterialProperties", "ph": { - "user_data": {}, - "id_num": 0, "divisions": { - "column_widths": [], "row_heights": [], - "cells": [] - } - }, - "type": "EnergyMaterialProperties" + "cells": [], + "column_widths": [] + }, + "id_num": 0, + "user_data": {} + } }, - "density": 43.0, - "type": "EnergyMaterial", - "thickness": 0.025000000000000001, - "identifier": "Generic 25mm Insulation", - "roughness": "MediumRough", - "conductivity": 0.029999999999999999, - "specific_heat": 1210.0, - "thermal_absorptance": 0.90000000000000002, - "solar_absorptance": 0.69999999999999996, - "visible_absorptance": 0.69999999999999996 + "conductivity": 0.14999999999999999, + "roughness": "MediumSmooth", + "thickness": 0.025399999999999999 }, { + "type": "EnergyMaterial", + "specific_heat": 410.0, + "thermal_absorptance": 0.90000000000000002, + "solar_absorptance": 0.5, + "visible_absorptance": 0.5, + "density": 7690.0, + "identifier": "Generic Painted Metal", "properties": { + "type": "EnergyMaterialProperties", "ph": { - "user_data": {}, - "id_num": 0, "divisions": { - "column_widths": [], "row_heights": [], - "cells": [] - } - }, - "type": "EnergyMaterialProperties" + "cells": [], + "column_widths": [] + }, + "id_num": 0, + "user_data": {} + } }, - "density": 1.2800000000000000, - "type": "EnergyMaterial", - "thickness": 0.10000000000000001, - "identifier": "Generic Ceiling Air Gap", + "conductivity": 45.0, "roughness": "Smooth", - "conductivity": 0.55600000000000005, + "thickness": 0.0015 + }, + { + "type": "EnergyMaterial", "specific_heat": 1000.0, "thermal_absorptance": 0.90000000000000002, "solar_absorptance": 0.69999999999999996, - "visible_absorptance": 0.69999999999999996 - }, - { + "visible_absorptance": 0.69999999999999996, + "density": 1.2800000000000000, + "identifier": "Generic Wall Air Gap", "properties": { + "type": "EnergyMaterialProperties", "ph": { - "user_data": {}, - "id_num": 0, "divisions": { - "column_widths": [], "row_heights": [], - "cells": [] - } - }, - "type": "EnergyMaterialProperties" + "cells": [], + "column_widths": [] + }, + "id_num": 0, + "user_data": {} + } }, - "density": 7690.0, - "type": "EnergyMaterial", - "thickness": 0.0015, - "identifier": "Generic Painted Metal", + "conductivity": 0.66700000000000004, "roughness": "Smooth", - "conductivity": 45.0, - "specific_heat": 410.0, - "thermal_absorptance": 0.90000000000000002, - "solar_absorptance": 0.5, - "visible_absorptance": 0.5 + "thickness": 0.10000000000000001 + }, + { + "emissivity": 0.83999999999999997, + "solar_diffusing": false, + "visible_reflectance_back": 0.20999999999999999, + "dirt_correction": 1.0, + "type": "EnergyWindowMaterialGlazing", + "solar_reflectance": 0.35999999999999999, + "visible_reflectance": 0.20999999999999999, + "infrared_transmittance": 0.0, + "identifier": "Generic Low-e Glass", + "thickness": 0.0060000000000000001, + "visible_transmittance": 0.70999999999999996, + "solar_transmittance": 0.45000000000000001, + "emissivity_back": 0.047, + "conductivity": 1.0, + "solar_reflectance_back": 0.35999999999999999 }, { + "type": "EnergyMaterial", + "specific_heat": 1210.0, + "thermal_absorptance": 0.90000000000000002, + "solar_absorptance": 0.69999999999999996, + "visible_absorptance": 0.69999999999999996, + "density": 43.0, + "identifier": "Generic 50mm Insulation", "properties": { + "type": "EnergyMaterialProperties", "ph": { - "user_data": {}, - "id_num": 0, "divisions": { - "column_widths": [], "row_heights": [], - "cells": [] - } - }, - "type": "EnergyMaterialProperties" + "cells": [], + "column_widths": [] + }, + "id_num": 0, + "user_data": {} + } }, - "density": 1120.0, - "type": "EnergyMaterial", - "thickness": 0.01, - "identifier": "Generic Roof Membrane", + "conductivity": 0.029999999999999999, "roughness": "MediumRough", - "conductivity": 0.16, + "thickness": 0.050000000000000003 + }, + { + "type": "EnergyMaterial", "specific_heat": 1460.0, "thermal_absorptance": 0.90000000000000002, "solar_absorptance": 0.65000000000000002, - "visible_absorptance": 0.65000000000000002 + "visible_absorptance": 0.65000000000000002, + "density": 1120.0, + "identifier": "Generic Roof Membrane", + "properties": { + "type": "EnergyMaterialProperties", + "ph": { + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0, + "user_data": {} + } + }, + "conductivity": 0.16, + "roughness": "MediumRough", + "thickness": 0.01 }, { + "type": "EnergyMaterial", + "specific_heat": 900.0, + "thermal_absorptance": 0.90000000000000002, + "solar_absorptance": 0.80000000000000004, + "visible_absorptance": 0.80000000000000004, + "density": 2240.0, + "identifier": "Generic HW Concrete", "properties": { + "type": "EnergyMaterialProperties", "ph": { - "user_data": {}, - "id_num": 0, "divisions": { - "column_widths": [], "row_heights": [], - "cells": [] - } - }, - "type": "EnergyMaterialProperties" + "cells": [], + "column_widths": [] + }, + "id_num": 0, + "user_data": {} + } }, - "density": 608.0, + "conductivity": 1.9500000000000000, + "roughness": "MediumRough", + "thickness": 0.20000000000000001 + }, + { "type": "EnergyMaterial", - "thickness": 0.025399999999999999, - "identifier": "Generic 25mm Wood", - "roughness": "MediumSmooth", - "conductivity": 0.14999999999999999, - "specific_heat": 1630.0, + "specific_heat": 1090.0, "thermal_absorptance": 0.90000000000000002, "solar_absorptance": 0.5, - "visible_absorptance": 0.5 - }, - { + "visible_absorptance": 0.5, + "density": 800.0, + "identifier": "Generic Gypsum Board", "properties": { + "type": "EnergyMaterialProperties", "ph": { - "user_data": {}, - "id_num": 0, "divisions": { - "column_widths": [], "row_heights": [], - "cells": [] - } - }, - "type": "EnergyMaterialProperties" + "cells": [], + "column_widths": [] + }, + "id_num": 0, + "user_data": {} + } }, - "density": 368.0, - "type": "EnergyMaterial", - "thickness": 0.02, - "identifier": "Generic Acoustic Tile", + "conductivity": 0.16, "roughness": "MediumSmooth", - "conductivity": 0.059999999999999998, + "thickness": 0.012699999999999999 + }, + { + "type": "EnergyMaterial", "specific_heat": 590.0, "thermal_absorptance": 0.90000000000000002, "solar_absorptance": 0.20000000000000001, - "visible_absorptance": 0.20000000000000001 - }, - { + "visible_absorptance": 0.20000000000000001, + "density": 368.0, + "identifier": "Generic Acoustic Tile", "properties": { + "type": "EnergyMaterialProperties", "ph": { - "user_data": {}, - "id_num": 0, "divisions": { - "column_widths": [], "row_heights": [], - "cells": [] - } - }, - "type": "EnergyMaterialProperties" + "cells": [], + "column_widths": [] + }, + "id_num": 0, + "user_data": {} + } }, - "density": 2240.0, - "type": "EnergyMaterial", - "thickness": 0.20000000000000001, - "identifier": "Generic HW Concrete", - "roughness": "MediumRough", - "conductivity": 1.9500000000000000, - "specific_heat": 900.0, - "thermal_absorptance": 0.90000000000000002, - "solar_absorptance": 0.80000000000000004, - "visible_absorptance": 0.80000000000000004 + "conductivity": 0.059999999999999998, + "roughness": "MediumSmooth", + "thickness": 0.02 }, { - "dirt_correction": 1.0, - "type": "EnergyWindowMaterialGlazing", - "identifier": "Generic Low-e Glass", "emissivity": 0.83999999999999997, - "solar_reflectance": 0.35999999999999999, - "thickness": 0.0060000000000000001, - "emissivity_back": 0.047, - "visible_reflectance": 0.20999999999999999, - "solar_reflectance_back": 0.35999999999999999, - "visible_reflectance_back": 0.20999999999999999, - "infrared_transmittance": 0.0, - "solar_transmittance": 0.45000000000000001, - "visible_transmittance": 0.70999999999999996, - "conductivity": 1.0, - "solar_diffusing": false - }, - { + "solar_diffusing": false, + "visible_reflectance_back": 0.080000000000000002, "dirt_correction": 1.0, "type": "EnergyWindowMaterialGlazing", - "identifier": "Generic Clear Glass", - "emissivity": 0.83999999999999997, "solar_reflectance": 0.070000000000000007, - "thickness": 0.0060000000000000001, - "emissivity_back": 0.83999999999999997, "visible_reflectance": 0.080000000000000002, - "solar_reflectance_back": 0.070000000000000007, - "visible_reflectance_back": 0.080000000000000002, "infrared_transmittance": 0.0, - "solar_transmittance": 0.77000000000000002, + "identifier": "Generic Clear Glass", + "thickness": 0.0060000000000000001, "visible_transmittance": 0.88, + "solar_transmittance": 0.77000000000000002, + "emissivity_back": 0.83999999999999997, "conductivity": 1.0, - "solar_diffusing": false + "solar_reflectance_back": 0.070000000000000007 }, { + "type": "EnergyMaterial", + "specific_heat": 1210.0, + "thermal_absorptance": 0.90000000000000002, + "solar_absorptance": 0.69999999999999996, + "visible_absorptance": 0.69999999999999996, + "density": 43.0, + "identifier": "Generic 25mm Insulation", "properties": { + "type": "EnergyMaterialProperties", "ph": { - "user_data": {}, - "id_num": 0, "divisions": { - "column_widths": [], "row_heights": [], - "cells": [] - } - }, - "type": "EnergyMaterialProperties" + "cells": [], + "column_widths": [] + }, + "id_num": 0, + "user_data": {} + } }, - "density": 43.0, - "type": "EnergyMaterial", - "thickness": 0.050000000000000003, - "identifier": "Generic 50mm Insulation", - "roughness": "MediumRough", "conductivity": 0.029999999999999999, - "specific_heat": 1210.0, + "roughness": "MediumRough", + "thickness": 0.025000000000000001 + }, + { + "type": "EnergyMaterial", + "specific_heat": 1000.0, "thermal_absorptance": 0.90000000000000002, "solar_absorptance": 0.69999999999999996, - "visible_absorptance": 0.69999999999999996 + "visible_absorptance": 0.69999999999999996, + "density": 1.2800000000000000, + "identifier": "Generic Ceiling Air Gap", + "properties": { + "type": "EnergyMaterialProperties", + "ph": { + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0, + "user_data": {} + } + }, + "conductivity": 0.55600000000000005, + "roughness": "Smooth", + "thickness": 0.10000000000000001 } ], + "wall_set": { + "type": "WallConstructionSetAbridged", + "interior_construction": "Generic Interior Wall", + "ground_construction": "Generic Underground Wall", + "exterior_construction": "Generic Exterior Wall" + }, "constructions": [ { + "type": "ShadeConstruction", "visible_reflectance": 0.20000000000000001, "is_specular": false, "identifier": "Generic Context", - "type": "ShadeConstruction", "solar_reflectance": 0.20000000000000001 }, { - "materials": [ - "Generic Low-e Glass", - "Generic Window Air Gap", - "Generic Clear Glass" - ], + "type": "ShadeConstruction", + "visible_reflectance": 0.34999999999999998, + "is_specular": false, + "identifier": "Generic Shade", + "solar_reflectance": 0.34999999999999998 + }, + { + "type": "AirBoundaryConstructionAbridged", + "air_mixing_per_area": 0.10000000000000001, + "air_mixing_schedule": "Always On", + "identifier": "Generic Air Boundary" + }, + { + "type": "WindowConstructionAbridged", "properties": { + "type": "WindowConstructionProperties", "ph": { "type": "WindowConstructionPhProperties", "id_num": 0 - }, - "type": "WindowConstructionProperties" + } }, - "type": "WindowConstructionAbridged", - "identifier": "Generic Double Pane" + "materials": [ + "Generic Clear Glass" + ], + "identifier": "Generic Single Pane" }, { + "type": "OpaqueConstructionAbridged", "materials": [ "Generic 25mm Wood" ], - "type": "OpaqueConstructionAbridged", "identifier": "Generic Interior Door" }, { + "type": "OpaqueConstructionAbridged", "materials": [ - "Generic Painted Metal", - "Generic 25mm Insulation", - "Generic Painted Metal" + "Generic Gypsum Board", + "Generic Wall Air Gap", + "Generic Gypsum Board" ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Exterior Door" + "identifier": "Generic Interior Wall" }, { + "type": "OpaqueConstructionAbridged", "materials": [ - "Generic Clear Glass" + "Generic 50mm Insulation", + "Generic HW Concrete" ], - "properties": { - "ph": { - "type": "WindowConstructionPhProperties", - "id_num": 0 - }, - "type": "WindowConstructionProperties" - }, - "type": "WindowConstructionAbridged", - "identifier": "Generic Single Pane" + "identifier": "Generic Ground Slab" }, { + "type": "OpaqueConstructionAbridged", "materials": [ "Generic Brick", "Generic LW Concrete", @@ -2376,570 +2143,803 @@ "Generic Wall Air Gap", "Generic Gypsum Board" ], - "type": "OpaqueConstructionAbridged", "identifier": "Generic Exterior Wall" }, { + "type": "OpaqueConstructionAbridged", "materials": [ "Generic 50mm Insulation", "Generic HW Concrete", "Generic Wall Air Gap", "Generic Gypsum Board" ], - "type": "OpaqueConstructionAbridged", "identifier": "Generic Underground Wall" }, { + "type": "OpaqueConstructionAbridged", "materials": [ - "Generic LW Concrete", + "Generic Painted Metal", + "Generic 25mm Insulation", + "Generic Painted Metal" + ], + "identifier": "Generic Exterior Door" + }, + { + "type": "OpaqueConstructionAbridged", + "materials": [ + "Generic 50mm Insulation", + "Generic HW Concrete", "Generic Ceiling Air Gap", "Generic Acoustic Tile" ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Ceiling" + "identifier": "Generic Underground Roof" }, { + "type": "OpaqueConstructionAbridged", "materials": [ - "Generic Painted Metal", + "Generic LW Concrete", "Generic Ceiling Air Gap", - "Generic 50mm Insulation", - "Generic LW Concrete" + "Generic Acoustic Tile" ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Exposed Floor" + "identifier": "Generic Interior Ceiling" }, { + "type": "OpaqueConstructionAbridged", "materials": [ "Generic Acoustic Tile", "Generic Ceiling Air Gap", "Generic LW Concrete" ], - "type": "OpaqueConstructionAbridged", "identifier": "Generic Interior Floor" }, { + "type": "WindowConstructionAbridged", + "properties": { + "type": "WindowConstructionProperties", + "ph": { + "type": "WindowConstructionPhProperties", + "id_num": 0 + } + }, "materials": [ - "Generic Gypsum Board", - "Generic Wall Air Gap", - "Generic Gypsum Board" + "Generic Low-e Glass", + "Generic Window Air Gap", + "Generic Clear Glass" ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Wall" + "identifier": "Generic Double Pane" }, { - "visible_reflectance": 0.34999999999999998, - "is_specular": false, - "identifier": "Generic Shade", - "type": "ShadeConstruction", - "solar_reflectance": 0.34999999999999998 + "type": "OpaqueConstructionAbridged", + "materials": [ + "Generic Painted Metal", + "Generic Ceiling Air Gap", + "Generic 50mm Insulation", + "Generic LW Concrete" + ], + "identifier": "Generic Exposed Floor" }, { + "type": "OpaqueConstructionAbridged", "materials": [ + "Generic Roof Membrane", "Generic 50mm Insulation", - "Generic HW Concrete", + "Generic LW Concrete", "Generic Ceiling Air Gap", "Generic Acoustic Tile" ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Underground Roof" + "identifier": "Generic Roof" + } + ], + "shade_construction": "Generic Shade", + "floor_set": { + "type": "FloorConstructionSetAbridged", + "interior_construction": "Generic Interior Floor", + "ground_construction": "Generic Ground Slab", + "exterior_construction": "Generic Exposed Floor" + }, + "roof_ceiling_set": { + "type": "RoofCeilingConstructionSetAbridged", + "interior_construction": "Generic Interior Ceiling", + "ground_construction": "Generic Underground Roof", + "exterior_construction": "Generic Roof" + } + }, + "construction_sets": [], + "constructions": [], + "ventilation_simulation_control": { + "type": "VentilationSimulationControl", + "reference_pressure": 101325.0, + "reference_temperature": 20.0, + "aspect_ratio": 1.0, + "building_type": "LowRise", + "long_axis_angle": 0.0, + "vent_control_type": "SingleZone", + "reference_humidity_ratio": 0.0 + }, + "hvacs": [ + { + "type": "IdealAirSystemAbridged", + "heating_limit": { + "type": "Autosize" + }, + "sensible_heat_recovery": 0.0, + "latent_heat_recovery": 0.0, + "demand_controlled_ventilation": false, + "cooling_air_temperature": 13.0, + "economizer_type": "DifferentialDryBulb", + "identifier": "Room_1_3e2415a8 Ideal Loads Air System", + "heating_air_temperature": 50.0, + "cooling_limit": { + "type": "Autosize" + } + } + ], + "schedule_type_limits": [ + { + "type": "ScheduleTypeLimit", + "unit_type": "Dimensionless", + "upper_limit": 1.0, + "lower_limit": 0.0, + "numeric_type": "Continuous", + "identifier": "Fractional" + }, + { + "type": "ScheduleTypeLimit", + "unit_type": "ActivityLevel", + "upper_limit": { + "type": "NoLimit" + }, + "lower_limit": 0.0, + "numeric_type": "Continuous", + "identifier": "Activity Level" + }, + { + "type": "ScheduleTypeLimit", + "unit_type": "Temperature", + "upper_limit": { + "type": "NoLimit" }, + "lower_limit": -273.14999999999998, + "numeric_type": "Continuous", + "identifier": "Temperature" + } + ] + }, + "ph_hvac": { + "type": "ModelPhHvacPropertiesAbridged" + }, + "radiance": { + "type": "ModelRadianceProperties", + "modifiers": [], + "global_modifier_set": { + "type": "GlobalModifierSet", + "aperture_set": { + "type": "ApertureModifierSetAbridged", + "window_modifier": "generic_exterior_window_vis_0.64", + "skylight_modifier": "generic_exterior_window_vis_0.64", + "interior_modifier": "generic_interior_window_vis_0.88", + "operable_modifier": "generic_exterior_window_vis_0.64" + }, + "door_set": { + "type": "DoorModifierSetAbridged", + "overhead_modifier": "generic_opaque_door_0.50", + "exterior_modifier": "generic_opaque_door_0.50", + "exterior_glass_modifier": "generic_exterior_window_vis_0.64", + "interior_glass_modifier": "generic_interior_window_vis_0.88", + "interior_modifier": "generic_opaque_door_0.50" + }, + "shade_set": { + "type": "ShadeModifierSetAbridged", + "exterior_modifier": "generic_exterior_shade_0.35", + "interior_modifier": "generic_interior_shade_0.50" + }, + "context_modifier": "generic_context_0.20", + "wall_set": { + "type": "WallModifierSetAbridged", + "exterior_modifier": "generic_wall_0.50", + "interior_modifier": "generic_wall_0.50" + }, + "floor_set": { + "type": "FloorModifierSetAbridged", + "exterior_modifier": "generic_floor_0.20", + "interior_modifier": "generic_floor_0.20" + }, + "air_boundary_modifier": "air_boundary", + "modifiers": [ { - "air_mixing_per_area": 0.10000000000000001, - "air_mixing_schedule": "Always On", - "type": "AirBoundaryConstructionAbridged", - "identifier": "Generic Air Boundary" + "dependencies": [], + "modifier": null, + "identifier": "generic_exterior_window_vis_0.64", + "r_transmissivity": 0.69757618153843315, + "b_transmissivity": 0.69757618153843315, + "type": "Glass", + "g_transmissivity": 0.69757618153843315, + "refraction_index": null }, { - "materials": [ - "Generic 50mm Insulation", - "Generic HW Concrete" - ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Ground Slab" + "type": "Plastic", + "specularity": 0.0, + "dependencies": [], + "modifier": null, + "identifier": "generic_ceiling_0.80", + "r_reflectance": 0.80000000000000004, + "b_reflectance": 0.80000000000000004, + "roughness": 0.0, + "g_reflectance": 0.80000000000000004 + }, + { + "type": "Plastic", + "specularity": 0.0, + "dependencies": [], + "modifier": null, + "identifier": "generic_floor_0.20", + "r_reflectance": 0.20000000000000001, + "b_reflectance": 0.20000000000000001, + "roughness": 0.0, + "g_reflectance": 0.20000000000000001 + }, + { + "type": "Plastic", + "specularity": 0.0, + "dependencies": [], + "modifier": null, + "identifier": "generic_interior_shade_0.50", + "r_reflectance": 0.5, + "b_reflectance": 0.5, + "roughness": 0.0, + "g_reflectance": 0.5 + }, + { + "dependencies": [], + "modifier": null, + "identifier": "generic_interior_window_vis_0.88", + "r_transmissivity": 0.95841543286105957, + "b_transmissivity": 0.95841543286105957, + "type": "Glass", + "g_transmissivity": 0.95841543286105957, + "refraction_index": null + }, + { + "type": "Plastic", + "specularity": 0.0, + "dependencies": [], + "modifier": null, + "identifier": "generic_exterior_shade_0.35", + "r_reflectance": 0.34999999999999998, + "b_reflectance": 0.34999999999999998, + "roughness": 0.0, + "g_reflectance": 0.34999999999999998 + }, + { + "type": "Plastic", + "specularity": 0.0, + "dependencies": [], + "modifier": null, + "identifier": "generic_opaque_door_0.50", + "r_reflectance": 0.5, + "b_reflectance": 0.5, + "roughness": 0.0, + "g_reflectance": 0.5 + }, + { + "specularity": 0.0, + "dependencies": [], + "transmitted_spec": 1.0, + "modifier": null, + "identifier": "air_boundary", + "transmitted_diff": 1.0, + "r_reflectance": 1.0, + "type": "Trans", + "b_reflectance": 1.0, + "g_reflectance": 1.0, + "roughness": 0.0 + }, + { + "type": "Plastic", + "specularity": 0.0, + "dependencies": [], + "modifier": null, + "identifier": "generic_wall_0.50", + "r_reflectance": 0.5, + "b_reflectance": 0.5, + "roughness": 0.0, + "g_reflectance": 0.5 }, { - "materials": [ - "Generic Roof Membrane", - "Generic 50mm Insulation", - "Generic LW Concrete", - "Generic Ceiling Air Gap", - "Generic Acoustic Tile" - ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Roof" + "type": "Plastic", + "specularity": 0.0, + "dependencies": [], + "modifier": null, + "identifier": "generic_context_0.20", + "r_reflectance": 0.20000000000000001, + "b_reflectance": 0.20000000000000001, + "roughness": 0.0, + "g_reflectance": 0.20000000000000001 } - ] - }, - "schedule_type_limits": [ - { - "identifier": "Activity Level", - "type": "ScheduleTypeLimit", - "upper_limit": { - "type": "NoLimit" - }, - "unit_type": "ActivityLevel", - "lower_limit": 0.0, - "numeric_type": "Continuous" - }, - { - "identifier": "Fractional", - "type": "ScheduleTypeLimit", - "upper_limit": 1.0, - "unit_type": "Dimensionless", - "lower_limit": 0.0, - "numeric_type": "Continuous" - }, - { - "identifier": "Temperature", - "type": "ScheduleTypeLimit", - "upper_limit": { - "type": "NoLimit" - }, - "unit_type": "Temperature", - "lower_limit": -273.14999999999998, - "numeric_type": "Continuous" + ], + "roof_ceiling_set": { + "type": "RoofCeilingModifierSetAbridged", + "exterior_modifier": "generic_ceiling_0.80", + "interior_modifier": "generic_ceiling_0.80" } - ], - "type": "ModelEnergyProperties", - "construction_sets": [], - "ventilation_simulation_control": { - "reference_humidity_ratio": 0.0, - "long_axis_angle": 0.0, - "type": "VentilationSimulationControl", - "reference_pressure": 101325.0, - "aspect_ratio": 1.0, - "vent_control_type": "SingleZone", - "reference_temperature": 20.0, - "building_type": "LowRise" }, - "materials": [], - "hvacs": [ + "modifier_sets": [] + } + }, + "version": "1.55.0", + "tolerance": 0.001, + "identifier": "unnamed_82460ed3", + "display_name": "unnamed", + "angle_tolerance": 1.0, + "rooms": [ + { + "type": "Room", + "faces": [ { - "latent_heat_recovery": 0.0, - "demand_controlled_ventilation": false, - "heating_air_temperature": 50.0, - "identifier": "Room_5_6eedca30 Ideal Loads Air System", - "cooling_limit": { - "type": "Autosize" + "type": "Face", + "face_type": "Wall", + "properties": { + "type": "FacePropertiesAbridged", + "ph": { + "type": "FacePhPropertiesAbridged", + "id_num": 0 + }, + "energy": { + "type": "FaceEnergyPropertiesAbridged" + }, + "ph_hvac": { + "type": "FacePhHvacProperties" + }, + "radiance": { + "type": "FaceRadiancePropertiesAbridged" + } }, - "type": "IdealAirSystemAbridged", - "economizer_type": "DifferentialDryBulb", - "sensible_heat_recovery": 0.0, - "cooling_air_temperature": 13.0, - "heating_limit": { - "type": "Autosize" + "geometry": { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + 1.0, + 0.0, + 0.0 + ], + "n": [ + 0.0, + -1.0, + 0.0 + ], + "o": [ + 0.0, + 0.0, + 0.0 + ] + }, + "boundary": [ + [ + 0.0, + 0.0, + 3.0 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 5.0, + 0.0, + 0.0 + ], + [ + 5.0, + 0.0, + 3.0 + ] + ] + }, + "identifier": "Room_1_3e2415a8..Face0", + "display_name": "Room_1_3e2415a8..Face0", + "boundary_condition": { + "type": "Outdoors", + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" + }, + "sun_exposure": true } - } - ], - "constructions": [] - }, - "ph": { - "bldg_segments": [ + }, { - "num_floor_levels": 1, - "phi_certification": { - "identifier": "3329cea5-b6a5-4cf5-bdca-2ab8ddfa46ad", - "attributes": { - "enerphit_type": "2-ENERGY DEMAND METHOD", - "primary_energy_type": "2-PER (RENEWABLE)", - "building_use_type": "10-DWELLING", - "retrofit_type": "1-NEW BUILDING", - "tfa_override": null, - "ihg_type": "2-STANDARD", - "phpp_version": 9, - "building_category_type": "1-RESIDENTIAL BUILDING", - "occupancy_type": "1-STANDARD (ONLY FOR RESIDENTIAL BUILDINGS)", - "certification_type": "1-PASSIVE HOUSE", - "certification_class": "1-CLASSIC" + "type": "Face", + "face_type": "Wall", + "properties": { + "type": "FacePropertiesAbridged", + "ph": { + "type": "FacePhPropertiesAbridged", + "id_num": 0 }, - "phpp_version": 9, - "display_name": "3329cea5-b6a5-4cf5-bdca-2ab8ddfa46ad", - "user_data": {} - }, - "set_points": { - "summer": 25.0, - "identifier": "f243f406-62ad-497a-b67f-96f7bdf0f90a", - "winter": 20.0, - "display_name": "f243f406-62ad-497a-b67f-96f7bdf0f90a", - "user_data": {} - }, - "identifier": "e0764df9-5f36-48aa-92d2-ea66d5dfd80e", - "phius_certification": { - "certification_program": { - "value": "7-PHIUS 2021 CORE" + "energy": { + "type": "FaceEnergyPropertiesAbridged" }, - "int_gains_toilet_room_util_pat": null, - "PHIUS2021_heating_load": 10.0, - "int_gains_use_school_defaults": false, - "building_status": { - "value": "1-IN_PLANNING" + "ph_hvac": { + "type": "FacePhHvacProperties" }, - "int_gains_evap_per_person": 15, - "int_gains_dhw_marginal_perf_ratio": null, - "identifier": "2dd19d82-8c7d-4c0a-a2e4-39ef54cfcd9d", - "building_use_type": { - "value": "1-RESIDENTIAL" + "radiance": { + "type": "FaceRadiancePropertiesAbridged" + } + }, + "geometry": { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + 0.0, + 1.0, + 0.0 + ], + "n": [ + 1.0, + 0.0, + -5.5511151231257827e-17 + ], + "o": [ + 5.0, + 0.0, + 0.0 + ] }, - "PHIUS2021_cooling_load": 10.0, - "PHIUS2021_heating_demand": 15.0, - "icfa_override": null, - "PHIUS2021_cooling_demand": 15.0, - "localization_selection_type": 2, - "building_category_type": { - "value": "1-RESIDENTIAL BUILDING" + "boundary": [ + [ + 5.0, + 0.0, + 3.0 + ], + [ + 5.0, + 0.0, + 0.0 + ], + [ + 5.0, + 4.0, + 0.0 + ], + [ + 5.0, + 4.0, + 3.0 + ] + ] + }, + "identifier": "Room_1_3e2415a8..Face1", + "display_name": "Room_1_3e2415a8..Face1", + "boundary_condition": { + "type": "Outdoors", + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" + }, + "sun_exposure": true + } + }, + { + "type": "Face", + "face_type": "Wall", + "properties": { + "type": "FacePropertiesAbridged", + "ph": { + "type": "FacePhPropertiesAbridged", + "id_num": 0 }, - "int_gains_flush_heat_loss": true, - "int_gains_num_toilets": 1, - "user_data": {}, - "display_name": "2dd19d82-8c7d-4c0a-a2e4-39ef54cfcd9d", - "building_type": { - "value": "1-NEW_CONSTRUCTION" + "energy": { + "type": "FaceEnergyPropertiesAbridged" + }, + "ph_hvac": { + "type": "FacePhHvacProperties" + }, + "radiance": { + "type": "FaceRadiancePropertiesAbridged" } }, - "co2e_factors": { - "factors": [] - }, - "mech_room_temp": 20.0, - "non_combustible_materials": false, - "wind_exposure_type": { - "value": "1-SEVERAL_SIDES_EXPOSED_NO_SCREENING" + "geometry": { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + -1.0, + 0.0, + 0.0 + ], + "n": [ + 0.0, + 1.0, + -0.0 + ], + "o": [ + 5.0, + 4.0, + 0.0 + ] + }, + "boundary": [ + [ + 5.0, + 4.0, + 3.0 + ], + [ + 5.0, + 4.0, + 0.0 + ], + [ + 0.0, + 4.0, + 0.0 + ], + [ + 0.0, + 4.0, + 3.0 + ] + ] }, - "site": { - "identifier": "90e304f6-2d19-4195-9dbb-babd249ccff8", - "climate": { - "peak_loads": { - "cooling_load_1": { - "sky_temp": null, - "rad_south": 0.0, - "rad_north": 0.0, - "identifier": "cd6044fe-1e9d-415f-9d85-bf6d13ad6c9c", - "dewpoint": null, - "ground_temp": null, - "rad_west": 0.0, - "display_name": "cd6044fe-1e9d-415f-9d85-bf6d13ad6c9c", - "user_data": {}, - "temp": 0.0, - "rad_east": 0.0, - "rad_global": 0.0 - }, - "identifier": "34b5f754-f6ee-4bbb-bba5-febb7ff26bd1", - "heat_load_1": { - "sky_temp": null, - "rad_south": 0.0, - "rad_north": 0.0, - "identifier": "1fbb7f55-4c8d-4141-88d3-ccc32b8dae2a", - "dewpoint": null, - "ground_temp": null, - "rad_west": 0.0, - "display_name": "1fbb7f55-4c8d-4141-88d3-ccc32b8dae2a", - "user_data": {}, - "temp": 0.0, - "rad_east": 0.0, - "rad_global": 0.0 - }, - "heat_load_2": { - "sky_temp": null, - "rad_south": 0.0, - "rad_north": 0.0, - "identifier": "b8b7be39-1e5d-46ab-ab0f-81e1f3ec28da", - "dewpoint": null, - "ground_temp": null, - "rad_west": 0.0, - "display_name": "b8b7be39-1e5d-46ab-ab0f-81e1f3ec28da", - "user_data": {}, - "temp": 0.0, - "rad_east": 0.0, - "rad_global": 0.0 - }, - "display_name": "34b5f754-f6ee-4bbb-bba5-febb7ff26bd1", - "user_data": {}, - "cooling_load_2": { - "sky_temp": null, - "rad_south": 0.0, - "rad_north": 0.0, - "identifier": "d70ecd4a-9442-4e8e-bc0c-457feb652213", - "dewpoint": null, - "ground_temp": null, - "rad_west": 0.0, - "display_name": "d70ecd4a-9442-4e8e-bc0c-457feb652213", - "user_data": {}, - "temp": 0.0, - "rad_east": 0.0, - "rad_global": 0.0 - } - }, - "station_elevation": 0.0, - "identifier": "74f9d343-1c44-4e4a-801a-353b88c78426", - "ground": { - "flow_rate_groundwater": 0.050000000000000003, - "identifier": "8f5e2174-f8ae-4535-80ea-a775110119e7", - "ground_heat_capacity": 1000, - "ground_density": 2000, - "depth_groundwater": 3, - "display_name": "8f5e2174-f8ae-4535-80ea-a775110119e7", - "user_data": {}, - "ground_thermal_conductivity": 2 - }, - "summer_daily_temperature_swing": 8.0, - "monthly_radiation": { - "west": { - "december": 0.0, - "identifier": "43d65cca-75b7-444b-8153-ea9f9191ec3e", - "january": 0.0, - "november": 0.0, - "february": 0.0, - "july": 0.0, - "june": 0.0, - "march": 0.0, - "display_name": "43d65cca-75b7-444b-8153-ea9f9191ec3e", - "user_data": {}, - "april": 0.0, - "may": 0.0, - "august": 0.0, - "september": 0.0, - "october": 0.0 - }, - "south": { - "december": 0.0, - "identifier": "ab938745-ff29-4719-a507-3b380e9c52e8", - "january": 0.0, - "november": 0.0, - "february": 0.0, - "july": 0.0, - "june": 0.0, - "march": 0.0, - "display_name": "ab938745-ff29-4719-a507-3b380e9c52e8", - "user_data": {}, - "april": 0.0, - "may": 0.0, - "august": 0.0, - "september": 0.0, - "october": 0.0 - }, - "identifier": "5fc5a126-6844-4bdd-9a29-0a019812029b", - "east": { - "december": 0.0, - "identifier": "369be63f-68f8-44df-bf56-c6397e36f1f3", - "january": 0.0, - "november": 0.0, - "february": 0.0, - "july": 0.0, - "june": 0.0, - "march": 0.0, - "display_name": "369be63f-68f8-44df-bf56-c6397e36f1f3", - "user_data": {}, - "april": 0.0, - "may": 0.0, - "august": 0.0, - "september": 0.0, - "october": 0.0 - }, - "north": { - "december": 0.0, - "identifier": "a68a0805-053b-49b4-8cb1-96685e89d2c3", - "january": 0.0, - "november": 0.0, - "february": 0.0, - "july": 0.0, - "june": 0.0, - "march": 0.0, - "display_name": "a68a0805-053b-49b4-8cb1-96685e89d2c3", - "user_data": {}, - "april": 0.0, - "may": 0.0, - "august": 0.0, - "september": 0.0, - "october": 0.0 - }, - "glob": { - "december": 0.0, - "identifier": "0257032b-f642-4906-8cc5-84781fbcbb80", - "january": 0.0, - "november": 0.0, - "february": 0.0, - "july": 0.0, - "june": 0.0, - "march": 0.0, - "display_name": "0257032b-f642-4906-8cc5-84781fbcbb80", - "user_data": {}, - "april": 0.0, - "may": 0.0, - "august": 0.0, - "september": 0.0, - "october": 0.0 - }, - "display_name": "5fc5a126-6844-4bdd-9a29-0a019812029b", - "user_data": {} - }, - "display_name": "New York", - "user_data": {}, - "monthly_temps": { - "ground_temps": { - "december": 0.0, - "identifier": "48f449ab-0f15-43e4-950c-5b26425482d7", - "january": 0.0, - "november": 0.0, - "february": 0.0, - "july": 0.0, - "june": 0.0, - "march": 0.0, - "display_name": "48f449ab-0f15-43e4-950c-5b26425482d7", - "user_data": {}, - "april": 0.0, - "may": 0.0, - "august": 0.0, - "september": 0.0, - "october": 0.0 - }, - "identifier": "660ab516-a957-4999-b81f-72db5fd47941", - "dewpoints": { - "december": 0.0, - "identifier": "8b68d6d7-5425-4b4c-bfb0-54fdf8e20b9a", - "january": 0.0, - "november": 0.0, - "february": 0.0, - "july": 0.0, - "june": 0.0, - "march": 0.0, - "display_name": "8b68d6d7-5425-4b4c-bfb0-54fdf8e20b9a", - "user_data": {}, - "april": 0.0, - "may": 0.0, - "august": 0.0, - "september": 0.0, - "october": 0.0 - }, - "display_name": "660ab516-a957-4999-b81f-72db5fd47941", - "user_data": {}, - "sky_temps": { - "december": 0.0, - "identifier": "597e7849-c004-4209-a1ba-38da696b0e06", - "january": 0.0, - "november": 0.0, - "february": 0.0, - "july": 0.0, - "june": 0.0, - "march": 0.0, - "display_name": "597e7849-c004-4209-a1ba-38da696b0e06", - "user_data": {}, - "april": 0.0, - "may": 0.0, - "august": 0.0, - "september": 0.0, - "october": 0.0 - }, - "air_temps": { - "december": 0.0, - "identifier": "b68589f7-5b31-421d-8ab1-7ac4ab04bf7e", - "january": 0.0, - "november": 0.0, - "february": 0.0, - "july": 0.0, - "june": 0.0, - "march": 0.0, - "display_name": "b68589f7-5b31-421d-8ab1-7ac4ab04bf7e", - "user_data": {}, - "april": 0.0, - "may": 0.0, - "august": 0.0, - "september": 0.0, - "october": 0.0 - } - }, - "average_wind_speed": 4.0 + "identifier": "Room_1_3e2415a8..Face2", + "display_name": "Room_1_3e2415a8..Face2", + "boundary_condition": { + "type": "Outdoors", + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" + }, + "sun_exposure": true + } + }, + { + "type": "Face", + "face_type": "Wall", + "properties": { + "type": "FacePropertiesAbridged", + "ph": { + "type": "FacePhPropertiesAbridged", + "id_num": 0 + }, + "energy": { + "type": "FaceEnergyPropertiesAbridged" }, - "display_name": "90e304f6-2d19-4195-9dbb-babd249ccff8", - "user_data": {}, - "location": { - "identifier": "0caa66aa-ef22-4871-a548-3a530afdd5fb", - "longitude": -73.799999999999997, - "display_name": "0caa66aa-ef22-4871-a548-3a530afdd5fb", - "user_data": {}, - "climate_zone": 1, - "site_elevation": null, - "hours_from_UTC": -4, - "latitude": 40.600000000000001 + "ph_hvac": { + "type": "FacePhHvacProperties" }, - "phpp_library_codes": { - "region_code": "New York", - "country_code": "US-United States of America", - "identifier": "72038fe9-3618-45aa-a493-cad204850668", - "dataset_name": "US0055b-New York", - "display_name": "US0055b-New York", - "user_data": {} + "radiance": { + "type": "FaceRadiancePropertiesAbridged" } }, - "summer_hrv_bypass_mode": { - "value": "4-ALWAYS" + "geometry": { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + 0.0, + -1.0, + 0.0 + ], + "n": [ + -1.0, + 0.0, + 0.0 + ], + "o": [ + 0.0, + 4.0, + 0.0 + ] + }, + "boundary": [ + [ + 0.0, + 4.0, + 3.0 + ], + [ + 0.0, + 4.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 3.0 + ] + ] }, - "num_dwelling_units": 1, - "display_name": "Unnamed_Bldg_Segment", - "user_data": {}, - "name": "Unnamed_Bldg_Segment", - "source_energy_factors": { - "factors": [] + "identifier": "Room_1_3e2415a8..Face3", + "display_name": "Room_1_3e2415a8..Face3", + "boundary_condition": { + "type": "Outdoors", + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" + }, + "sun_exposure": true + } + }, + { + "type": "Face", + "face_type": "Floor", + "properties": { + "type": "FacePropertiesAbridged", + "ph": { + "type": "FacePhPropertiesAbridged", + "id_num": 0 + }, + "energy": { + "type": "FaceEnergyPropertiesAbridged" + }, + "ph_hvac": { + "type": "FacePhHvacProperties" + }, + "radiance": { + "type": "FaceRadiancePropertiesAbridged" + } + }, + "geometry": { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + 0.0, + 1.0, + 0.0 + ], + "n": [ + 0.0, + 0.0, + -1.0 + ], + "o": [ + 0.0, + 0.0, + 0.0 + ] + }, + "boundary": [ + [ + 5.0, + 4.0, + 0.0 + ], + [ + 5.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 4.0, + 0.0 + ] + ] + }, + "identifier": "Room_1_3e2415a8..Face4", + "display_name": "Room_1_3e2415a8..Face4", + "boundary_condition": { + "type": "Ground" + } + }, + { + "type": "Face", + "face_type": "RoofCeiling", + "properties": { + "type": "FacePropertiesAbridged", + "ph": { + "type": "FacePhPropertiesAbridged", + "id_num": 0 + }, + "energy": { + "type": "FaceEnergyPropertiesAbridged" + }, + "ph_hvac": { + "type": "FacePhHvacProperties" + }, + "radiance": { + "type": "FaceRadiancePropertiesAbridged" + } + }, + "geometry": { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + 1.0, + 0.0, + -5.5511151231257827e-17 + ], + "n": [ + 5.5511151231257827e-17, + -0.0, + 1.0 + ], + "o": [ + 0.0, + 0.0, + 3.0 + ] + }, + "boundary": [ + [ + 0.0, + 4.0, + 3.0 + ], + [ + 0.0, + 0.0, + 3.0 + ], + [ + 5.0, + 0.0, + 3.0 + ], + [ + 5.0, + 4.0, + 3.0 + ] + ] }, - "thermal_bridges": {} + "identifier": "Room_1_3e2415a8..Face5", + "display_name": "Room_1_3e2415a8..Face5", + "boundary_condition": { + "type": "Outdoors", + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" + }, + "sun_exposure": true + } } ], - "type": "ModelPhPropertiesAbridged", - "id_num": 0, - "team": { - "owner": { - "post_code": null, - "email": null, - "identifier": "7cf13e67-cde3-46ff-bbfa-c39cb5d52d0f", - "city": null, - "license_number": null, - "street": null, - "name": null, - "user_data": {}, - "display_name": "7cf13e67-cde3-46ff-bbfa-c39cb5d52d0f", - "telephone": null - }, - "building": { - "post_code": null, - "email": null, - "identifier": "10aa7a37-b53e-4c3e-98b0-9b9f0675a2ea", - "city": null, - "license_number": null, - "street": null, - "name": null, - "user_data": {}, - "display_name": "10aa7a37-b53e-4c3e-98b0-9b9f0675a2ea", - "telephone": null + "properties": { + "type": "RoomPropertiesAbridged", + "ph": { + "type": "RoomPhPropertiesAbridged", + "ph_foundations": [], + "ph_bldg_segment_id": "1937160a-114b-4f5c-8e1b-344b1c876231", + "spaces": [], + "specific_heat_capacity": "1-LIGHTWEIGHT" }, - "identifier": "13ded0b5-acc3-4eb9-88a5-f39f90b9081e", - "designer": { - "post_code": null, - "email": null, - "identifier": "2f8f6b91-8907-4845-9359-e8aa3c1b464c", - "city": null, - "license_number": null, - "street": null, - "name": null, - "user_data": {}, - "display_name": "2f8f6b91-8907-4845-9359-e8aa3c1b464c", - "telephone": null + "energy": { + "type": "RoomEnergyPropertiesAbridged", + "program_type": "Generic Office Program", + "hvac": "Room_1_3e2415a8 Ideal Loads Air System" }, - "customer": { - "post_code": null, - "email": null, - "identifier": "777db4be-cced-42cd-84bc-ff57d4ae4562", - "city": null, - "license_number": null, - "street": null, - "name": null, - "user_data": {}, - "display_name": "777db4be-cced-42cd-84bc-ff57d4ae4562", - "telephone": null + "ph_hvac": { + "type": "RoomPhHvacPropertiesAbridged", + "supportive_devices": [], + "renewable_devices": [], + "heating_systems": [], + "heat_pump_systems": [], + "hot_water_system": null, + "id_num": 0, + "exhaust_vent_devices": [], + "ventilation_system": null }, - "display_name": "13ded0b5-acc3-4eb9-88a5-f39f90b9081e", - "user_data": {} - } - }, - "ph_hvac": { - "type": "ModelPhHvacPropertiesAbridged" + "radiance": { + "type": "RoomRadiancePropertiesAbridged" + } + }, + "identifier": "Room_1_3e2415a8", + "display_name": "Room_1" } - } + ] } \ No newline at end of file diff --git a/tests/_test_reference_files_hbjson/Default_Room_Single_Zone.json b/tests/_test_reference_files_hbjson/Default_Room_Single_Zone.json index e1fbfee..be9e7c9 100644 --- a/tests/_test_reference_files_hbjson/Default_Room_Single_Zone.json +++ b/tests/_test_reference_files_hbjson/Default_Room_Single_Zone.json @@ -1,21 +1,45 @@ { - "identifier": "Room_6_6c965e20", "type": "Room", - "display_name": "Room_6", "faces": [ { - "boundary_condition": { - "type": "Outdoors", - "sun_exposure": true, - "wind_exposure": true, - "view_factor": { - "type": "Autocalculate" - } - }, - "identifier": "Room_6_6c965e20..Face0", "type": "Face", "face_type": "Wall", + "properties": { + "type": "FaceProperties", + "ph": { + "type": "FacePhProperties", + "id_num": 0 + }, + "energy": { + "type": "FaceEnergyProperties" + }, + "ph_hvac": { + "type": "FacePhHvacPropertiesAbridged" + }, + "radiance": { + "type": "FaceRadianceProperties" + } + }, "geometry": { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + 1.0, + 0.0, + 0.0 + ], + "n": [ + 0.0, + -1.0, + 0.0 + ], + "o": [ + 0.0, + 0.0, + 0.0 + ] + }, "boundary": [ [ 0.0, @@ -37,58 +61,58 @@ 0.0, 3.0 ] - ], - "plane": { - "type": "Plane", - "n": [ - 0.0, - -1.0, - 0.0 - ], - "o": [ - 0.0, - 0.0, - 0.0 - ], - "x": [ - 1.0, - 0.0, - 0.0 - ] - }, - "type": "Face3D" + ] }, - "display_name": "Room_6_6c965e20..Face0", - "properties": { - "radiance": { - "type": "FaceRadianceProperties" + "identifier": "Room_2_7ff60448..Face0", + "display_name": "Room_2_7ff60448..Face0", + "boundary_condition": { + "type": "Outdoors", + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" }, + "sun_exposure": true + } + }, + { + "type": "Face", + "face_type": "Wall", + "properties": { "type": "FaceProperties", - "energy": { - "type": "FaceEnergyProperties" - }, "ph": { "type": "FacePhProperties", "id_num": 0 }, + "energy": { + "type": "FaceEnergyProperties" + }, "ph_hvac": { "type": "FacePhHvacPropertiesAbridged" - } - } - }, - { - "boundary_condition": { - "type": "Outdoors", - "sun_exposure": true, - "wind_exposure": true, - "view_factor": { - "type": "Autocalculate" + }, + "radiance": { + "type": "FaceRadianceProperties" } }, - "identifier": "Room_6_6c965e20..Face1", - "type": "Face", - "face_type": "Wall", "geometry": { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + 0.0, + 1.0, + 0.0 + ], + "n": [ + 1.0, + 0.0, + -5.5511151231257827e-17 + ], + "o": [ + 5.0, + 0.0, + 0.0 + ] + }, "boundary": [ [ 5.0, @@ -110,58 +134,58 @@ 4.0, 3.0 ] - ], - "plane": { - "type": "Plane", - "n": [ - 1.0, - 0.0, - -5.5511151231257827e-17 - ], - "o": [ - 5.0, - 0.0, - 0.0 - ], - "x": [ - 0.0, - 1.0, - 0.0 - ] - }, - "type": "Face3D" + ] }, - "display_name": "Room_6_6c965e20..Face1", - "properties": { - "radiance": { - "type": "FaceRadianceProperties" + "identifier": "Room_2_7ff60448..Face1", + "display_name": "Room_2_7ff60448..Face1", + "boundary_condition": { + "type": "Outdoors", + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" }, + "sun_exposure": true + } + }, + { + "type": "Face", + "face_type": "Wall", + "properties": { "type": "FaceProperties", - "energy": { - "type": "FaceEnergyProperties" - }, "ph": { "type": "FacePhProperties", "id_num": 0 }, + "energy": { + "type": "FaceEnergyProperties" + }, "ph_hvac": { "type": "FacePhHvacPropertiesAbridged" - } - } - }, - { - "boundary_condition": { - "type": "Outdoors", - "sun_exposure": true, - "wind_exposure": true, - "view_factor": { - "type": "Autocalculate" + }, + "radiance": { + "type": "FaceRadianceProperties" } }, - "identifier": "Room_6_6c965e20..Face2", - "type": "Face", - "face_type": "Wall", "geometry": { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + -1.0, + 0.0, + 0.0 + ], + "n": [ + 0.0, + 1.0, + -0.0 + ], + "o": [ + 5.0, + 4.0, + 0.0 + ] + }, "boundary": [ [ 5.0, @@ -183,58 +207,58 @@ 4.0, 3.0 ] - ], - "plane": { - "type": "Plane", - "n": [ - 0.0, - 1.0, - -0.0 - ], - "o": [ - 5.0, - 4.0, - 0.0 - ], - "x": [ - -1.0, - 0.0, - 0.0 - ] - }, - "type": "Face3D" + ] }, - "display_name": "Room_6_6c965e20..Face2", - "properties": { - "radiance": { - "type": "FaceRadianceProperties" + "identifier": "Room_2_7ff60448..Face2", + "display_name": "Room_2_7ff60448..Face2", + "boundary_condition": { + "type": "Outdoors", + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" }, + "sun_exposure": true + } + }, + { + "type": "Face", + "face_type": "Wall", + "properties": { "type": "FaceProperties", - "energy": { - "type": "FaceEnergyProperties" - }, "ph": { "type": "FacePhProperties", "id_num": 0 }, + "energy": { + "type": "FaceEnergyProperties" + }, "ph_hvac": { "type": "FacePhHvacPropertiesAbridged" - } - } - }, - { - "boundary_condition": { - "type": "Outdoors", - "sun_exposure": true, - "wind_exposure": true, - "view_factor": { - "type": "Autocalculate" + }, + "radiance": { + "type": "FaceRadianceProperties" } }, - "identifier": "Room_6_6c965e20..Face3", - "type": "Face", - "face_type": "Wall", "geometry": { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + 0.0, + -1.0, + 0.0 + ], + "n": [ + -1.0, + 0.0, + 0.0 + ], + "o": [ + 0.0, + 4.0, + 0.0 + ] + }, "boundary": [ [ 0.0, @@ -256,53 +280,58 @@ 0.0, 3.0 ] - ], - "plane": { - "type": "Plane", - "n": [ - -1.0, - 0.0, - 0.0 - ], - "o": [ - 0.0, - 4.0, - 0.0 - ], - "x": [ - 0.0, - -1.0, - 0.0 - ] - }, - "type": "Face3D" + ] }, - "display_name": "Room_6_6c965e20..Face3", - "properties": { - "radiance": { - "type": "FaceRadianceProperties" + "identifier": "Room_2_7ff60448..Face3", + "display_name": "Room_2_7ff60448..Face3", + "boundary_condition": { + "type": "Outdoors", + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" }, + "sun_exposure": true + } + }, + { + "type": "Face", + "face_type": "Floor", + "properties": { "type": "FaceProperties", - "energy": { - "type": "FaceEnergyProperties" - }, "ph": { "type": "FacePhProperties", "id_num": 0 }, + "energy": { + "type": "FaceEnergyProperties" + }, "ph_hvac": { "type": "FacePhHvacPropertiesAbridged" + }, + "radiance": { + "type": "FaceRadianceProperties" } - } - }, - { - "boundary_condition": { - "type": "Ground" }, - "identifier": "Room_6_6c965e20..Face4", - "type": "Face", - "face_type": "Floor", "geometry": { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + 0.0, + 1.0, + 0.0 + ], + "n": [ + 0.0, + 0.0, + -1.0 + ], + "o": [ + 0.0, + 0.0, + 0.0 + ] + }, "boundary": [ [ 5.0, @@ -324,58 +353,53 @@ 4.0, 0.0 ] - ], - "plane": { - "type": "Plane", - "n": [ - 0.0, - 0.0, - -1.0 - ], - "o": [ - 0.0, - 0.0, - 0.0 - ], - "x": [ - 0.0, - 1.0, - 0.0 - ] - }, - "type": "Face3D" + ] }, - "display_name": "Room_6_6c965e20..Face4", + "identifier": "Room_2_7ff60448..Face4", + "display_name": "Room_2_7ff60448..Face4", + "boundary_condition": { + "type": "Ground" + } + }, + { + "type": "Face", + "face_type": "RoofCeiling", "properties": { - "radiance": { - "type": "FaceRadianceProperties" - }, "type": "FaceProperties", - "energy": { - "type": "FaceEnergyProperties" - }, "ph": { "type": "FacePhProperties", "id_num": 0 }, + "energy": { + "type": "FaceEnergyProperties" + }, "ph_hvac": { "type": "FacePhHvacPropertiesAbridged" - } - } - }, - { - "boundary_condition": { - "type": "Outdoors", - "sun_exposure": true, - "wind_exposure": true, - "view_factor": { - "type": "Autocalculate" + }, + "radiance": { + "type": "FaceRadianceProperties" } }, - "identifier": "Room_6_6c965e20..Face5", - "type": "Face", - "face_type": "RoofCeiling", "geometry": { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + 1.0, + 0.0, + -5.5511151231257827e-17 + ], + "n": [ + 5.5511151231257827e-17, + -0.0, + 1.0 + ], + "o": [ + 0.0, + 0.0, + 3.0 + ] + }, "boundary": [ [ 0.0, @@ -397,404 +421,450 @@ 4.0, 3.0 ] - ], - "plane": { - "type": "Plane", - "n": [ - 5.5511151231257827e-17, - -0.0, - 1.0 - ], - "o": [ - 0.0, - 0.0, - 3.0 - ], - "x": [ - 1.0, - 0.0, - -5.5511151231257827e-17 - ] - }, - "type": "Face3D" + ] }, - "display_name": "Room_6_6c965e20..Face5", - "properties": { - "radiance": { - "type": "FaceRadianceProperties" - }, - "type": "FaceProperties", - "energy": { - "type": "FaceEnergyProperties" - }, - "ph": { - "type": "FacePhProperties", - "id_num": 0 + "identifier": "Room_2_7ff60448..Face5", + "display_name": "Room_2_7ff60448..Face5", + "boundary_condition": { + "type": "Outdoors", + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" }, - "ph_hvac": { - "type": "FacePhHvacPropertiesAbridged" - } + "sun_exposure": true } } ], "properties": { - "radiance": { - "type": "RoomRadianceProperties" - }, "type": "RoomProperties", - "energy": { - "program_type": { - "people": { - "identifier": "Generic Office People", - "type": "People", - "people_per_area": 0.056500000000000002, - "radiant_fraction": 0.29999999999999999, - "occupancy_schedule": { - "default_day_schedule": "OfficeMedium BLDG_OCC_SCH_Default", - "winter_designday_schedule": "OfficeMedium BLDG_OCC_SCH_WntrDsn", - "schedule_type_limit": { - "identifier": "Fractional", - "type": "ScheduleTypeLimit", - "upper_limit": 1.0, - "unit_type": "Dimensionless", - "lower_limit": 0.0, - "numeric_type": "Continuous" - }, - "schedule_rules": [ - { - "apply_wednesday": true, - "apply_saturday": false, - "type": "ScheduleRuleAbridged", - "apply_thursday": true, - "start_date": [ - 1, - 1 - ], - "end_date": [ - 12, - 31 - ], - "apply_monday": true, - "apply_tuesday": true, - "schedule_day": "OfficeMedium BLDG_OCC_SCH_Wkdy", - "apply_friday": true, - "apply_sunday": false - }, - { - "apply_wednesday": false, - "apply_saturday": true, - "type": "ScheduleRuleAbridged", - "apply_thursday": false, - "start_date": [ - 1, - 1 - ], - "end_date": [ - 12, - 31 - ], - "apply_monday": false, - "apply_tuesday": false, - "schedule_day": "OfficeMedium BLDG_OCC_SCH_Sat", - "apply_friday": false, - "apply_sunday": false - } - ], - "identifier": "Generic Office Occupancy", - "type": "ScheduleRuleset", - "day_schedules": [ - { - "identifier": "OfficeMedium BLDG_OCC_SCH_Default", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 6, - 0 - ], - [ - 18, - 0 - ] - ], - "values": [ - 0.0, - 0.050000000000000003, - 0.0 - ], - "interpolate": false - }, - { - "identifier": "OfficeMedium BLDG_OCC_SCH_SmrDsn", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 6, - 0 - ], - [ - 22, - 0 - ] - ], - "values": [ - 0.0, - 1.0, - 0.050000000000000003 - ], - "interpolate": false + "ph": { + "type": "RoomPhProperties", + "ph_foundations": [], + "ph_bldg_segment": { + "user_data": {}, + "non_combustible_materials": false, + "num_floor_levels": 1, + "phius_certification": { + "user_data": {}, + "display_name": "9856e576-aad3-4eba-b579-8dc4d64cc6ea", + "int_gains_dhw_marginal_perf_ratio": null, + "PHIUS2021_cooling_load": 10.0, + "int_gains_flush_heat_loss": true, + "PHIUS2021_heating_demand": 15.0, + "PHIUS2021_heating_load": 10.0, + "localization_selection_type": 2, + "int_gains_toilet_room_util_pat": null, + "building_status": { + "value": "1-IN_PLANNING" + }, + "icfa_override": null, + "building_use_type": { + "value": "1-RESIDENTIAL" + }, + "identifier": "9856e576-aad3-4eba-b579-8dc4d64cc6ea", + "certification_program": { + "value": "7-PHIUS 2021 CORE" + }, + "building_type": { + "value": "1-NEW_CONSTRUCTION" + }, + "int_gains_num_toilets": 1, + "PHIUS2021_cooling_demand": 15.0, + "int_gains_use_school_defaults": false, + "int_gains_evap_per_person": 15, + "building_category_type": { + "value": "1-RESIDENTIAL BUILDING" + } + }, + "thermal_bridges": {}, + "set_points": { + "user_data": {}, + "summer": 25.0, + "winter": 20.0, + "identifier": "644007d8-8702-44c5-9c48-935eb46385e6", + "display_name": "644007d8-8702-44c5-9c48-935eb46385e6" + }, + "name": "Unnamed_Bldg_Segment", + "co2e_factors": { + "factors": [] + }, + "source_energy_factors": { + "factors": [] + }, + "mech_room_temp": 20.0, + "identifier": "783070db-1c51-43b5-a458-2acf46eda65e", + "display_name": "Unnamed_Bldg_Segment", + "site": { + "location": { + "user_data": {}, + "latitude": 40.600000000000001, + "climate_zone": 1, + "site_elevation": null, + "longitude": -73.799999999999997, + "identifier": "429701c7-a2f5-4170-a916-1e0915a105b0", + "display_name": "429701c7-a2f5-4170-a916-1e0915a105b0", + "hours_from_UTC": -4 + }, + "user_data": {}, + "climate": { + "user_data": {}, + "station_elevation": 0.0, + "monthly_radiation": { + "user_data": {}, + "west": { + "user_data": {}, + "march": 0.0, + "january": 0.0, + "april": 0.0, + "july": 0.0, + "october": 0.0, + "may": 0.0, + "december": 0.0, + "june": 0.0, + "september": 0.0, + "identifier": "7ddd7cc5-09fe-4c02-9a7e-455bea2788fe", + "display_name": "7ddd7cc5-09fe-4c02-9a7e-455bea2788fe", + "august": 0.0, + "february": 0.0, + "november": 0.0 }, - { - "identifier": "OfficeMedium BLDG_OCC_SCH_WntrDsn", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ] - ], - "values": [ - 0.0 - ], - "interpolate": false + "south": { + "user_data": {}, + "march": 0.0, + "january": 0.0, + "april": 0.0, + "july": 0.0, + "october": 0.0, + "may": 0.0, + "december": 0.0, + "june": 0.0, + "september": 0.0, + "identifier": "a144c090-532c-4b99-bfe0-eb64b8b0b7b4", + "display_name": "a144c090-532c-4b99-bfe0-eb64b8b0b7b4", + "august": 0.0, + "february": 0.0, + "november": 0.0 }, - { - "identifier": "OfficeMedium BLDG_OCC_SCH_Wkdy", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 6, - 0 - ], - [ - 7, - 0 - ], - [ - 8, - 0 - ], - [ - 12, - 0 - ], - [ - 13, - 0 - ], - [ - 17, - 0 - ], - [ - 18, - 0 - ], - [ - 22, - 0 - ] - ], - "values": [ - 0.0, - 0.10000000000000001, - 0.20000000000000001, - 0.94999999999999996, - 0.5, - 0.94999999999999996, - 0.29999999999999999, - 0.10000000000000001, - 0.050000000000000003 - ], - "interpolate": false + "glob": { + "user_data": {}, + "march": 0.0, + "january": 0.0, + "april": 0.0, + "july": 0.0, + "october": 0.0, + "may": 0.0, + "december": 0.0, + "june": 0.0, + "september": 0.0, + "identifier": "49e3d16f-6d29-4d46-8b20-7f2ec9187c55", + "display_name": "49e3d16f-6d29-4d46-8b20-7f2ec9187c55", + "august": 0.0, + "february": 0.0, + "november": 0.0 }, - { - "identifier": "OfficeMedium BLDG_OCC_SCH_Sat", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 6, - 0 - ], - [ - 8, - 0 - ], - [ - 12, - 0 - ], - [ - 17, - 0 - ], - [ - 19, - 0 - ] - ], - "values": [ - 0.0, - 0.10000000000000001, - 0.29999999999999999, - 0.10000000000000001, - 0.050000000000000003, - 0.0 - ], - "interpolate": false - } - ], - "summer_designday_schedule": "OfficeMedium BLDG_OCC_SCH_SmrDsn", - "holiday_schedule": "OfficeMedium BLDG_OCC_SCH_Default", - "properties": { - "ph": { - "type": "ScheduleRulesetPhProperties", - "operating_periods": { - "collection": [] - }, - "operating_days_wk": 7.0, - "id_num": 0, - "operating_weeks_year": 52.142899999999997 + "north": { + "user_data": {}, + "march": 0.0, + "january": 0.0, + "april": 0.0, + "july": 0.0, + "october": 0.0, + "may": 0.0, + "december": 0.0, + "june": 0.0, + "september": 0.0, + "identifier": "02a55e53-7062-49fd-9998-924c629260f9", + "display_name": "02a55e53-7062-49fd-9998-924c629260f9", + "august": 0.0, + "february": 0.0, + "november": 0.0 }, - "type": "ScheduleRulesetProperties" - } - }, - "activity_schedule": { - "default_day_schedule": "Seated Adult Activity_Day Schedule", - "schedule_type_limit": { - "identifier": "Activity Level", - "type": "ScheduleTypeLimit", - "upper_limit": { - "type": "NoLimit" + "east": { + "user_data": {}, + "march": 0.0, + "january": 0.0, + "april": 0.0, + "july": 0.0, + "october": 0.0, + "may": 0.0, + "december": 0.0, + "june": 0.0, + "september": 0.0, + "identifier": "cb5edc26-8cd6-4124-89e1-341379db965b", + "display_name": "cb5edc26-8cd6-4124-89e1-341379db965b", + "august": 0.0, + "february": 0.0, + "november": 0.0 }, - "unit_type": "ActivityLevel", - "lower_limit": 0.0, - "numeric_type": "Continuous" + "identifier": "6f2607ca-adbc-43e7-aff4-9c8d88a5937e", + "display_name": "6f2607ca-adbc-43e7-aff4-9c8d88a5937e" }, - "identifier": "Seated Adult Activity", - "type": "ScheduleRuleset", - "day_schedules": [ - { - "identifier": "Seated Adult Activity_Day Schedule", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ] - ], - "values": [ - 120.0 - ], - "interpolate": false - } - ], - "properties": { - "ph": { - "type": "ScheduleRulesetPhProperties", - "operating_periods": { - "collection": [] - }, - "operating_days_wk": 7.0, - "id_num": 0, - "operating_weeks_year": 52.142899999999997 + "ground": { + "user_data": {}, + "ground_thermal_conductivity": 2, + "flow_rate_groundwater": 0.050000000000000003, + "identifier": "e44aa9ee-163a-47a8-b140-e8323e4d5f3a", + "display_name": "e44aa9ee-163a-47a8-b140-e8323e4d5f3a", + "ground_density": 2000, + "ground_heat_capacity": 1000, + "depth_groundwater": 3 + }, + "peak_loads": { + "user_data": {}, + "heat_load_1": { + "user_data": {}, + "rad_east": 0.0, + "rad_global": 0.0, + "rad_south": 0.0, + "ground_temp": null, + "temp": 0.0, + "rad_north": 0.0, + "rad_west": 0.0, + "sky_temp": null, + "identifier": "39d44bc5-b494-4a6b-b7a7-a99a34dd0e99", + "display_name": "39d44bc5-b494-4a6b-b7a7-a99a34dd0e99", + "dewpoint": null + }, + "heat_load_2": { + "user_data": {}, + "rad_east": 0.0, + "rad_global": 0.0, + "rad_south": 0.0, + "ground_temp": null, + "temp": 0.0, + "rad_north": 0.0, + "rad_west": 0.0, + "sky_temp": null, + "identifier": "63dcf63a-5567-4d65-a981-3749ab2db422", + "display_name": "63dcf63a-5567-4d65-a981-3749ab2db422", + "dewpoint": null + }, + "cooling_load_2": { + "user_data": {}, + "rad_east": 0.0, + "rad_global": 0.0, + "rad_south": 0.0, + "ground_temp": null, + "temp": 0.0, + "rad_north": 0.0, + "rad_west": 0.0, + "sky_temp": null, + "identifier": "50cb3bb5-61cc-455a-8e3f-5293c3577a5b", + "display_name": "50cb3bb5-61cc-455a-8e3f-5293c3577a5b", + "dewpoint": null + }, + "cooling_load_1": { + "user_data": {}, + "rad_east": 0.0, + "rad_global": 0.0, + "rad_south": 0.0, + "ground_temp": null, + "temp": 0.0, + "rad_north": 0.0, + "rad_west": 0.0, + "sky_temp": null, + "identifier": "45a89e6f-8607-4c14-9a12-608e6d7de1a3", + "display_name": "45a89e6f-8607-4c14-9a12-608e6d7de1a3", + "dewpoint": null + }, + "identifier": "ee98ed04-558c-432f-90ba-508f5b96fe55", + "display_name": "ee98ed04-558c-432f-90ba-508f5b96fe55" + }, + "summer_daily_temperature_swing": 8.0, + "identifier": "3b788752-5576-4f89-b12a-d3f1457b5982", + "display_name": "New York", + "average_wind_speed": 4.0, + "monthly_temps": { + "user_data": {}, + "air_temps": { + "user_data": {}, + "march": 0.0, + "january": 0.0, + "april": 0.0, + "july": 0.0, + "october": 0.0, + "may": 0.0, + "december": 0.0, + "june": 0.0, + "september": 0.0, + "identifier": "e8215e71-cd76-4e48-b3a7-509b5f55654f", + "display_name": "e8215e71-cd76-4e48-b3a7-509b5f55654f", + "august": 0.0, + "february": 0.0, + "november": 0.0 + }, + "dewpoints": { + "user_data": {}, + "march": 0.0, + "january": 0.0, + "april": 0.0, + "july": 0.0, + "october": 0.0, + "may": 0.0, + "december": 0.0, + "june": 0.0, + "september": 0.0, + "identifier": "76906233-0e44-488b-8016-a43287b3f2f9", + "display_name": "76906233-0e44-488b-8016-a43287b3f2f9", + "august": 0.0, + "february": 0.0, + "november": 0.0 }, - "type": "ScheduleRulesetProperties" + "identifier": "0dff3f75-1dfd-4d7d-be3b-08dc18385b00", + "display_name": "0dff3f75-1dfd-4d7d-be3b-08dc18385b00", + "sky_temps": { + "user_data": {}, + "march": 0.0, + "january": 0.0, + "april": 0.0, + "july": 0.0, + "october": 0.0, + "may": 0.0, + "december": 0.0, + "june": 0.0, + "september": 0.0, + "identifier": "d365d7fb-bcb0-4635-9e41-faac510f3825", + "display_name": "d365d7fb-bcb0-4635-9e41-faac510f3825", + "august": 0.0, + "february": 0.0, + "november": 0.0 + }, + "ground_temps": { + "user_data": {}, + "march": 0.0, + "january": 0.0, + "april": 0.0, + "july": 0.0, + "october": 0.0, + "may": 0.0, + "december": 0.0, + "june": 0.0, + "september": 0.0, + "identifier": "67810876-c2f7-4b8e-867b-3addfb52cf50", + "display_name": "67810876-c2f7-4b8e-867b-3addfb52cf50", + "august": 0.0, + "february": 0.0, + "november": 0.0 + } } }, - "latent_fraction": { - "type": "Autocalculate" + "phpp_library_codes": { + "user_data": {}, + "dataset_name": "US0055b-New York", + "country_code": "US-United States of America", + "region_code": "New York", + "identifier": "9d370e14-2166-4821-945d-8d9e62f28edc", + "display_name": "US0055b-New York" }, - "properties": { - "ph": { - "type": "PeoplePhProperties", - "dwellings": { - "identifier": "86cb443b-bb75-472a-820e-df6ed6dbbba4", - "num_dwellings": 0 - }, - "id_num": 0, - "number_bedrooms": 0, - "number_people": 0.0 - }, - "type": "PeopleProperties" - } + "identifier": "6189ddca-aa9c-45a8-ac9c-9b900a0fbb8c", + "display_name": "6189ddca-aa9c-45a8-ac9c-9b900a0fbb8c" + }, + "phi_certification": { + "user_data": {}, + "attributes": { + "tfa_override": null, + "certification_type": "1-PASSIVE HOUSE", + "occupancy_type": "1-STANDARD (ONLY FOR RESIDENTIAL BUILDINGS)", + "enerphit_type": "2-ENERGY DEMAND METHOD", + "ihg_type": "2-STANDARD", + "certification_class": "1-CLASSIC", + "retrofit_type": "1-NEW BUILDING", + "building_use_type": "10-DWELLING", + "phpp_version": 9, + "primary_energy_type": "2-PER (RENEWABLE)", + "building_category_type": "1-RESIDENTIAL BUILDING" + }, + "display_name": "3ec8de3f-e54b-4281-9b77-56bc2d934a5a", + "identifier": "3ec8de3f-e54b-4281-9b77-56bc2d934a5a", + "phpp_version": 9 + }, + "summer_hrv_bypass_mode": { + "value": "4-ALWAYS" + }, + "wind_exposure_type": { + "value": "1-SEVERAL_SIDES_EXPOSED_NO_SCREENING" }, - "identifier": "Generic Office Program", + "num_dwelling_units": 1 + }, + "spaces": [], + "id_num": 0, + "specific_heat_capacity": "1-LIGHTWEIGHT" + }, + "energy": { + "type": "RoomEnergyProperties", + "program_type": { "type": "ProgramType", - "setpoint": { - "heating_schedule": { - "default_day_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", - "winter_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", + "infiltration": { + "type": "Infiltration", + "flow_per_exterior_area": 0.00022660000000000001, + "schedule": { + "type": "ScheduleRuleset", + "holiday_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", "schedule_type_limit": { - "identifier": "Temperature", "type": "ScheduleTypeLimit", - "upper_limit": { - "type": "NoLimit" - }, - "unit_type": "Temperature", - "lower_limit": -273.14999999999998, - "numeric_type": "Continuous" + "unit_type": "Dimensionless", + "upper_limit": 1.0, + "lower_limit": 0.0, + "numeric_type": "Continuous", + "identifier": "Fractional" }, "schedule_rules": [ { - "apply_wednesday": true, - "apply_saturday": false, "type": "ScheduleRuleAbridged", + "apply_friday": true, + "apply_sunday": false, + "apply_saturday": false, + "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Wkdy", "apply_thursday": true, - "start_date": [ - 1, - 1 - ], "end_date": [ 12, 31 ], - "apply_monday": true, "apply_tuesday": true, - "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", - "apply_friday": true, - "apply_sunday": false - }, - { - "apply_wednesday": false, - "apply_saturday": true, - "type": "ScheduleRuleAbridged", - "apply_thursday": false, "start_date": [ 1, 1 ], + "apply_wednesday": true, + "apply_monday": true + }, + { + "type": "ScheduleRuleAbridged", + "apply_friday": false, + "apply_sunday": false, + "apply_saturday": true, + "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Sat", + "apply_thursday": false, "end_date": [ 12, 31 ], - "apply_monday": false, "apply_tuesday": false, - "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", - "apply_friday": false, - "apply_sunday": false + "start_date": [ + 1, + 1 + ], + "apply_wednesday": false, + "apply_monday": false } ], - "identifier": "Generic Office Heating", - "type": "ScheduleRuleset", + "summer_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", + "default_day_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", + "properties": { + "type": "ScheduleRulesetProperties", + "ph": { + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997, + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] + } + } + }, + "identifier": "Generic Office Infiltration", "day_schedules": [ { - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", "type": "ScheduleDay", "times": [ [ @@ -803,249 +873,244 @@ ] ], "values": [ - 15.600000000000000 + 1.0 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium INFIL_SCH_PNNL_Default" }, { - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", "type": "ScheduleDay", "times": [ [ 0, 0 + ], + [ + 6, + 0 + ], + [ + 22, + 0 ] ], "values": [ - 15.600000000000000 + 1.0, + 0.25, + 1.0 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn" }, { - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", "type": "ScheduleDay", "times": [ [ 0, 0 ], - [ - 5, - 0 - ], [ 6, 0 ], [ - 7, - 0 - ], - [ - 22, + 18, 0 ] ], "values": [ - 15.600000000000000, - 17.600000000000001, - 19.600000000000001, - 21.0, - 15.600000000000000 + 1.0, + 0.25, + 1.0 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn" }, { - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", "type": "ScheduleDay", "times": [ [ 0, 0 ], - [ - 5, - 0 - ], [ 6, 0 ], - [ - 7, - 0 - ], [ 22, 0 ] ], "values": [ - 15.600000000000000, - 17.800000000000001, - 20.0, - 21.0, - 15.600000000000000 + 1.0, + 0.25, + 1.0 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy" }, { - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", "type": "ScheduleDay", "times": [ [ 0, 0 ], - [ - 5, - 0 - ], [ 6, 0 ], [ - 7, - 0 - ], - [ - 17, + 18, 0 ] ], "values": [ - 15.600000000000000, - 17.800000000000001, - 20.0, - 21.0, - 15.600000000000000 + 1.0, + 0.25, + 1.0 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat" } ], - "summer_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", - "holiday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", - "properties": { - "ph": { - "type": "ScheduleRulesetPhProperties", - "operating_periods": { - "collection": [] - }, - "operating_days_wk": 7.0, - "id_num": 0, - "operating_weeks_year": 52.142899999999997 + "winter_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn" + }, + "identifier": "Generic Office Infiltration" + }, + "people": { + "type": "People", + "properties": { + "type": "PeopleProperties", + "ph": { + "type": "PeoplePhProperties", + "dwellings": { + "num_dwellings": 0, + "identifier": "14df9d19-1026-41db-b8c4-854b116aecc3" }, - "type": "ScheduleRulesetProperties" + "number_people": 0.0, + "id_num": 0, + "number_bedrooms": 0 } }, - "type": "Setpoint", - "cooling_schedule": { - "default_day_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", - "winter_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", + "people_per_area": 0.056500000000000002, + "occupancy_schedule": { + "type": "ScheduleRuleset", + "holiday_schedule": "OfficeMedium BLDG_OCC_SCH_Default", "schedule_type_limit": { - "identifier": "Temperature", "type": "ScheduleTypeLimit", - "upper_limit": { - "type": "NoLimit" - }, - "unit_type": "Temperature", - "lower_limit": -273.14999999999998, - "numeric_type": "Continuous" + "unit_type": "Dimensionless", + "upper_limit": 1.0, + "lower_limit": 0.0, + "numeric_type": "Continuous", + "identifier": "Fractional" }, "schedule_rules": [ { - "apply_wednesday": true, - "apply_saturday": false, "type": "ScheduleRuleAbridged", + "apply_friday": true, + "apply_sunday": false, + "apply_saturday": false, + "schedule_day": "OfficeMedium BLDG_OCC_SCH_Wkdy", "apply_thursday": true, - "start_date": [ - 1, - 1 - ], "end_date": [ 12, 31 ], - "apply_monday": true, "apply_tuesday": true, - "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", - "apply_friday": true, - "apply_sunday": false - }, - { - "apply_wednesday": false, - "apply_saturday": true, - "type": "ScheduleRuleAbridged", - "apply_thursday": false, "start_date": [ 1, 1 ], + "apply_wednesday": true, + "apply_monday": true + }, + { + "type": "ScheduleRuleAbridged", + "apply_friday": false, + "apply_sunday": false, + "apply_saturday": true, + "schedule_day": "OfficeMedium BLDG_OCC_SCH_Sat", + "apply_thursday": false, "end_date": [ 12, 31 ], - "apply_monday": false, "apply_tuesday": false, - "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", - "apply_friday": false, - "apply_sunday": false + "start_date": [ + 1, + 1 + ], + "apply_wednesday": false, + "apply_monday": false } ], - "identifier": "Generic Office Cooling", - "type": "ScheduleRuleset", + "summer_designday_schedule": "OfficeMedium BLDG_OCC_SCH_SmrDsn", + "default_day_schedule": "OfficeMedium BLDG_OCC_SCH_Default", + "properties": { + "type": "ScheduleRulesetProperties", + "ph": { + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997, + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] + } + } + }, + "identifier": "Generic Office Occupancy", "day_schedules": [ { - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", "type": "ScheduleDay", "times": [ [ 0, 0 + ], + [ + 6, + 0 + ], + [ + 18, + 0 ] ], "values": [ - 26.699999999999999 + 0.0, + 0.050000000000000003, + 0.0 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium BLDG_OCC_SCH_Default" }, { - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", "type": "ScheduleDay", "times": [ [ 0, 0 ], - [ - 5, - 0 - ], [ 6, 0 ], - [ - 7, - 0 - ], [ 22, 0 ] ], "values": [ - 26.699999999999999, - 25.699999999999999, - 25.0, - 24.0, - 26.699999999999999 + 0.0, + 1.0, + 0.050000000000000003 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium BLDG_OCC_SCH_SmrDsn" }, { - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", "type": "ScheduleDay", "times": [ [ @@ -1054,12 +1119,12 @@ ] ], "values": [ - 26.699999999999999 + 0.0 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium BLDG_OCC_SCH_WntrDsn" }, { - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", "type": "ScheduleDay", "times": [ [ @@ -1067,15 +1132,31 @@ 0 ], [ - 5, + 6, 0 ], [ - 6, + 7, 0 ], [ - 7, + 8, + 0 + ], + [ + 12, + 0 + ], + [ + 13, + 0 + ], + [ + 17, + 0 + ], + [ + 18, 0 ], [ @@ -1084,16 +1165,20 @@ ] ], "values": [ - 26.699999999999999, - 25.600000000000001, - 25.0, - 24.0, - 26.699999999999999 + 0.0, + 0.10000000000000001, + 0.20000000000000001, + 0.94999999999999996, + 0.5, + 0.94999999999999996, + 0.29999999999999999, + 0.10000000000000001, + 0.050000000000000003 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium BLDG_OCC_SCH_Wkdy" }, { - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", "type": "ScheduleDay", "times": [ [ @@ -1101,110 +1186,173 @@ 0 ], [ - 5, + 6, 0 ], [ - 6, + 8, 0 ], [ - 7, + 12, 0 ], [ 17, 0 + ], + [ + 19, + 0 ] ], "values": [ - 26.699999999999999, - 25.699999999999999, - 25.0, - 24.0, - 26.699999999999999 + 0.0, + 0.10000000000000001, + 0.29999999999999999, + 0.10000000000000001, + 0.050000000000000003, + 0.0 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium BLDG_OCC_SCH_Sat" } ], - "summer_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", - "holiday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", + "winter_designday_schedule": "OfficeMedium BLDG_OCC_SCH_WntrDsn" + }, + "latent_fraction": { + "type": "Autocalculate" + }, + "radiant_fraction": 0.29999999999999999, + "identifier": "Generic Office People", + "activity_schedule": { + "type": "ScheduleRuleset", + "schedule_type_limit": { + "type": "ScheduleTypeLimit", + "unit_type": "ActivityLevel", + "upper_limit": { + "type": "NoLimit" + }, + "lower_limit": 0.0, + "numeric_type": "Continuous", + "identifier": "Activity Level" + }, + "default_day_schedule": "Seated Adult Activity_Day Schedule", "properties": { + "type": "ScheduleRulesetProperties", "ph": { "type": "ScheduleRulesetPhProperties", - "operating_periods": { - "collection": [] - }, + "operating_weeks_year": 52.142899999999997, "operating_days_wk": 7.0, "id_num": 0, - "operating_weeks_year": 52.142899999999997 - }, - "type": "ScheduleRulesetProperties" - } - }, - "identifier": "Generic Office Setpoints" + "operating_periods": { + "collection": [] + } + } + }, + "identifier": "Seated Adult Activity", + "day_schedules": [ + { + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ] + ], + "values": [ + 120.0 + ], + "interpolate": false, + "identifier": "Seated Adult Activity_Day Schedule" + } + ] + } }, "lighting": { - "visible_fraction": 0.20000000000000001, - "identifier": "Generic Office Lighting", "type": "Lighting", + "properties": { + "type": "LightingProperties", + "ph": { + "type": "LightingPhProperties", + "target_lux": 300, + "id_num": 0, + "target_lux_height": 0.80000000000000004 + } + }, "radiant_fraction": 0.69999999999999996, + "identifier": "Generic Office Lighting", + "watts_per_area": 10.550000000000001, + "visible_fraction": 0.20000000000000001, + "return_air_fraction": 0.0, "schedule": { - "default_day_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", - "winter_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", + "type": "ScheduleRuleset", + "holiday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", "schedule_type_limit": { - "identifier": "Fractional", "type": "ScheduleTypeLimit", - "upper_limit": 1.0, "unit_type": "Dimensionless", + "upper_limit": 1.0, "lower_limit": 0.0, - "numeric_type": "Continuous" + "numeric_type": "Continuous", + "identifier": "Fractional" }, "schedule_rules": [ { - "apply_wednesday": true, - "apply_saturday": false, "type": "ScheduleRuleAbridged", + "apply_friday": true, + "apply_sunday": false, + "apply_saturday": false, + "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", "apply_thursday": true, - "start_date": [ - 1, - 1 - ], "end_date": [ 12, 31 ], - "apply_monday": true, "apply_tuesday": true, - "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", - "apply_friday": true, - "apply_sunday": false - }, - { - "apply_wednesday": false, - "apply_saturday": true, - "type": "ScheduleRuleAbridged", - "apply_thursday": false, "start_date": [ 1, 1 ], + "apply_wednesday": true, + "apply_monday": true + }, + { + "type": "ScheduleRuleAbridged", + "apply_friday": false, + "apply_sunday": false, + "apply_saturday": true, + "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", + "apply_thursday": false, "end_date": [ 12, 31 ], - "apply_monday": false, "apply_tuesday": false, - "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", - "apply_friday": false, - "apply_sunday": false + "start_date": [ + 1, + 1 + ], + "apply_wednesday": false, + "apply_monday": false } ], + "summer_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", + "default_day_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", + "properties": { + "type": "ScheduleRulesetProperties", + "ph": { + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997, + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] + } + } + }, "identifier": "Generic Office Lighting", - "type": "ScheduleRuleset", "day_schedules": [ { - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", "type": "ScheduleDay", "times": [ [ @@ -1225,10 +1373,10 @@ 0.04311628, 0.050000000000000003 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun" }, { - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", "type": "ScheduleDay", "times": [ [ @@ -1239,10 +1387,10 @@ "values": [ 1.0 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn" }, { - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", "type": "ScheduleDay", "times": [ [ @@ -1253,10 +1401,10 @@ "values": [ 0.0 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn" }, { - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", "type": "ScheduleDay", "times": [ [ @@ -1292,10 +1440,10 @@ 0.04311628, 0.050000000000000003 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat" }, { - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", "type": "ScheduleDay", "times": [ [ @@ -1351,126 +1499,99 @@ 0.08623256, 0.04311628 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy" } ], - "summer_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", - "holiday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", - "properties": { - "ph": { - "type": "ScheduleRulesetPhProperties", - "operating_periods": { - "collection": [] - }, - "operating_days_wk": 7.0, - "id_num": 0, - "operating_weeks_year": 52.142899999999997 - }, - "type": "ScheduleRulesetProperties" - } - }, - "return_air_fraction": 0.0, - "watts_per_area": 10.550000000000001, - "properties": { - "ph": { - "target_lux_height": 0.80000000000000004, - "type": "LightingPhProperties", - "id_num": 0, - "target_lux": 300 - }, - "type": "LightingProperties" + "winter_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn" } }, - "ventilation": { - "flow_per_person": 0.0023600000000000001, - "type": "Ventilation", - "identifier": "Generic Office Ventilation", - "flow_per_area": 0.00030499999999999999 - }, - "electric_equipment": { - "identifier": "Generic Office Equipment", - "type": "ElectricEquipment", - "radiant_fraction": 0.5, - "schedule": { - "default_day_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", - "winter_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", + "setpoint": { + "type": "Setpoint", + "heating_schedule": { + "type": "ScheduleRuleset", + "holiday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", "schedule_type_limit": { - "identifier": "Fractional", "type": "ScheduleTypeLimit", - "upper_limit": 1.0, - "unit_type": "Dimensionless", - "lower_limit": 0.0, - "numeric_type": "Continuous" + "unit_type": "Temperature", + "upper_limit": { + "type": "NoLimit" + }, + "lower_limit": -273.14999999999998, + "numeric_type": "Continuous", + "identifier": "Temperature" }, "schedule_rules": [ { - "apply_wednesday": true, - "apply_saturday": false, "type": "ScheduleRuleAbridged", + "apply_friday": true, + "apply_sunday": false, + "apply_saturday": false, + "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", "apply_thursday": true, - "start_date": [ - 1, - 1 - ], "end_date": [ - 12, - 31 - ], - "apply_monday": true, - "apply_tuesday": true, - "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", - "apply_friday": true, - "apply_sunday": false - }, - { - "apply_wednesday": false, - "apply_saturday": true, - "type": "ScheduleRuleAbridged", - "apply_thursday": false, + 12, + 31 + ], + "apply_tuesday": true, "start_date": [ 1, 1 ], + "apply_wednesday": true, + "apply_monday": true + }, + { + "type": "ScheduleRuleAbridged", + "apply_friday": false, + "apply_sunday": false, + "apply_saturday": true, + "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", + "apply_thursday": false, "end_date": [ 12, 31 ], - "apply_monday": false, "apply_tuesday": false, - "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", - "apply_friday": false, - "apply_sunday": false + "start_date": [ + 1, + 1 + ], + "apply_wednesday": false, + "apply_monday": false } ], - "identifier": "Generic Office Equipment", - "type": "ScheduleRuleset", + "summer_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", + "default_day_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", + "properties": { + "type": "ScheduleRulesetProperties", + "ph": { + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997, + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] + } + } + }, + "identifier": "Generic Office Heating", "day_schedules": [ { - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", "type": "ScheduleDay", "times": [ [ 0, 0 - ], - [ - 6, - 0 - ], - [ - 18, - 0 ] ], "values": [ - 0.2307553806, - 0.28810717499999999, - 0.2307553806 + 15.600000000000000 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default" }, { - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", "type": "ScheduleDay", "times": [ [ @@ -1479,26 +1600,46 @@ ] ], "values": [ - 1.0 + 15.600000000000000 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn" }, { - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", "type": "ScheduleDay", "times": [ [ 0, 0 + ], + [ + 5, + 0 + ], + [ + 6, + 0 + ], + [ + 7, + 0 + ], + [ + 22, + 0 ] ], "values": [ - 0.0 + 15.600000000000000, + 17.600000000000001, + 19.600000000000001, + 21.0, + 15.600000000000000 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn" }, { - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", "type": "ScheduleDay", "times": [ [ @@ -1506,38 +1647,33 @@ 0 ], [ - 6, - 0 - ], - [ - 8, + 5, 0 ], [ - 12, + 6, 0 ], [ - 17, + 7, 0 ], [ - 19, + 22, 0 ] ], "values": [ - 0.2307553806, - 0.38123479599999999, - 0.47654349499999998, - 0.33358044650000002, - 0.28592609699999999, - 0.2307553806 + 15.600000000000000, + 17.800000000000001, + 20.0, + 21.0, + 15.600000000000000 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy" }, { - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", "type": "ScheduleDay", "times": [ [ @@ -1545,129 +1681,105 @@ 0 ], [ - 6, - 0 - ], - [ - 8, + 5, 0 ], [ - 12, + 6, 0 ], [ - 13, + 7, 0 ], [ 17, 0 - ], - [ - 18, - 0 ] ], "values": [ - 0.30767384079999999, - 0.38123479599999999, - 0.85777829100000003, - 0.76246959199999997, - 0.85777829100000003, - 0.47654349499999998, - 0.38123479599999999 + 15.600000000000000, + 17.800000000000001, + 20.0, + 21.0, + 15.600000000000000 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat" } ], - "summer_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", - "holiday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", - "properties": { - "ph": { - "type": "ScheduleRulesetPhProperties", - "operating_periods": { - "collection": [] - }, - "operating_days_wk": 7.0, - "id_num": 0, - "operating_weeks_year": 52.142899999999997 - }, - "type": "ScheduleRulesetProperties" - } + "winter_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn" }, - "lost_fraction": 0.0, - "latent_fraction": 0.0, - "watts_per_area": 10.330000000000000, - "properties": { - "ph": { - "equipment_collection": { - "equipment_set": {} - }, - "type": "ElectricEquipmentPhProperties" - }, - "type": "ElectricEquipmentProperties" - } - }, - "infiltration": { - "flow_per_exterior_area": 0.00022660000000000001, - "type": "Infiltration", - "schedule": { - "default_day_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", - "winter_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", + "cooling_schedule": { + "type": "ScheduleRuleset", + "holiday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", "schedule_type_limit": { - "identifier": "Fractional", "type": "ScheduleTypeLimit", - "upper_limit": 1.0, - "unit_type": "Dimensionless", - "lower_limit": 0.0, - "numeric_type": "Continuous" + "unit_type": "Temperature", + "upper_limit": { + "type": "NoLimit" + }, + "lower_limit": -273.14999999999998, + "numeric_type": "Continuous", + "identifier": "Temperature" }, "schedule_rules": [ { - "apply_wednesday": true, - "apply_saturday": false, "type": "ScheduleRuleAbridged", + "apply_friday": true, + "apply_sunday": false, + "apply_saturday": false, + "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", "apply_thursday": true, - "start_date": [ - 1, - 1 - ], "end_date": [ 12, 31 ], - "apply_monday": true, "apply_tuesday": true, - "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Wkdy", - "apply_friday": true, - "apply_sunday": false - }, - { - "apply_wednesday": false, - "apply_saturday": true, - "type": "ScheduleRuleAbridged", - "apply_thursday": false, "start_date": [ 1, 1 ], + "apply_wednesday": true, + "apply_monday": true + }, + { + "type": "ScheduleRuleAbridged", + "apply_friday": false, + "apply_sunday": false, + "apply_saturday": true, + "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", + "apply_thursday": false, "end_date": [ 12, 31 ], - "apply_monday": false, "apply_tuesday": false, - "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Sat", - "apply_friday": false, - "apply_sunday": false + "start_date": [ + 1, + 1 + ], + "apply_wednesday": false, + "apply_monday": false } ], - "identifier": "Generic Office Infiltration", - "type": "ScheduleRuleset", + "summer_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", + "default_day_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", + "properties": { + "type": "ScheduleRulesetProperties", + "ph": { + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997, + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] + } + } + }, + "identifier": "Generic Office Cooling", "day_schedules": [ { - "identifier": "OfficeMedium INFIL_SCH_PNNL_Default", "type": "ScheduleDay", "times": [ [ @@ -1676,84 +1788,94 @@ ] ], "values": [ - 1.0 + 26.699999999999999 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default" }, { - "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", "type": "ScheduleDay", "times": [ [ 0, 0 ], + [ + 5, + 0 + ], [ 6, 0 ], + [ + 7, + 0 + ], [ 22, 0 ] ], "values": [ - 1.0, - 0.25, - 1.0 + 26.699999999999999, + 25.699999999999999, + 25.0, + 24.0, + 26.699999999999999 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn" }, { - "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", "type": "ScheduleDay", "times": [ [ 0, 0 - ], - [ - 6, - 0 - ], - [ - 18, - 0 ] ], "values": [ - 1.0, - 0.25, - 1.0 + 26.699999999999999 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn" }, { - "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy", "type": "ScheduleDay", "times": [ [ 0, 0 ], + [ + 5, + 0 + ], [ 6, 0 ], + [ + 7, + 0 + ], [ 22, 0 ] ], "values": [ - 1.0, - 0.25, - 1.0 + 26.699999999999999, + 25.600000000000001, + 25.0, + 24.0, + 26.699999999999999 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy" }, { - "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat", "type": "ScheduleDay", "times": [ [ @@ -1761,421 +1883,299 @@ 0 ], [ - 6, + 5, + 0 + ], + [ + 6, + 0 + ], + [ + 7, 0 ], [ - 18, + 17, 0 ] ], "values": [ - 1.0, - 0.25, - 1.0 + 26.699999999999999, + 25.699999999999999, + 25.0, + 24.0, + 26.699999999999999 ], - "interpolate": false + "interpolate": false, + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat" } ], - "summer_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", - "holiday_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", - "properties": { - "ph": { - "type": "ScheduleRulesetPhProperties", - "operating_periods": { - "collection": [] - }, - "operating_days_wk": 7.0, - "id_num": 0, - "operating_weeks_year": 52.142899999999997 - }, - "type": "ScheduleRulesetProperties" - } - }, - "identifier": "Generic Office Infiltration" - } - }, - "type": "RoomEnergyProperties", - "hvac": { - "latent_heat_recovery": 0.0, - "demand_controlled_ventilation": false, - "heating_air_temperature": 50.0, - "identifier": "Room_6_6c965e20 Ideal Loads Air System", - "cooling_limit": { - "type": "Autosize" - }, - "type": "IdealAirSystem", - "economizer_type": "DifferentialDryBulb", - "sensible_heat_recovery": 0.0, - "cooling_air_temperature": 13.0, - "heating_limit": { - "type": "Autosize" - } - } - }, - "ph": { - "type": "RoomPhProperties", - "ph_bldg_segment": { - "num_floor_levels": 1, - "phi_certification": { - "identifier": "a92b3501-ab3b-4347-8b3f-dbba461c2b15", - "attributes": { - "enerphit_type": "2-ENERGY DEMAND METHOD", - "primary_energy_type": "2-PER (RENEWABLE)", - "building_use_type": "10-DWELLING", - "retrofit_type": "1-NEW BUILDING", - "tfa_override": null, - "ihg_type": "2-STANDARD", - "phpp_version": 9, - "building_category_type": "1-RESIDENTIAL BUILDING", - "occupancy_type": "1-STANDARD (ONLY FOR RESIDENTIAL BUILDINGS)", - "certification_type": "1-PASSIVE HOUSE", - "certification_class": "1-CLASSIC" - }, - "phpp_version": 9, - "display_name": "a92b3501-ab3b-4347-8b3f-dbba461c2b15", - "user_data": {} - }, - "set_points": { - "summer": 25.0, - "identifier": "f0b0de9e-c50b-418e-8107-80e1c6c92571", - "winter": 20.0, - "display_name": "f0b0de9e-c50b-418e-8107-80e1c6c92571", - "user_data": {} - }, - "identifier": "6b6cfc81-fdca-4755-9fef-c3b8508eb427", - "phius_certification": { - "certification_program": { - "value": "7-PHIUS 2021 CORE" - }, - "int_gains_toilet_room_util_pat": null, - "PHIUS2021_heating_load": 10.0, - "int_gains_use_school_defaults": false, - "building_status": { - "value": "1-IN_PLANNING" - }, - "int_gains_evap_per_person": 15, - "int_gains_dhw_marginal_perf_ratio": null, - "identifier": "f5c32ddc-c5fd-440b-beec-a2a66e80925f", - "building_use_type": { - "value": "1-RESIDENTIAL" - }, - "PHIUS2021_cooling_load": 10.0, - "PHIUS2021_heating_demand": 15.0, - "icfa_override": null, - "PHIUS2021_cooling_demand": 15.0, - "localization_selection_type": 2, - "building_category_type": { - "value": "1-RESIDENTIAL BUILDING" + "winter_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn" }, - "int_gains_flush_heat_loss": true, - "int_gains_num_toilets": 1, - "user_data": {}, - "display_name": "f5c32ddc-c5fd-440b-beec-a2a66e80925f", - "building_type": { - "value": "1-NEW_CONSTRUCTION" - } - }, - "co2e_factors": { - "factors": [] - }, - "mech_room_temp": 20.0, - "non_combustible_materials": false, - "wind_exposure_type": { - "value": "1-SEVERAL_SIDES_EXPOSED_NO_SCREENING" + "identifier": "Generic Office Setpoints" }, - "site": { - "identifier": "1e85734a-06e5-456f-8d77-4d12019bda3b", - "climate": { - "peak_loads": { - "cooling_load_1": { - "sky_temp": null, - "rad_south": 0.0, - "rad_north": 0.0, - "identifier": "cd6044fe-1e9d-415f-9d85-bf6d13ad6c9c", - "dewpoint": null, - "ground_temp": null, - "rad_west": 0.0, - "display_name": "cd6044fe-1e9d-415f-9d85-bf6d13ad6c9c", - "user_data": {}, - "temp": 0.0, - "rad_east": 0.0, - "rad_global": 0.0 - }, - "identifier": "34b5f754-f6ee-4bbb-bba5-febb7ff26bd1", - "heat_load_1": { - "sky_temp": null, - "rad_south": 0.0, - "rad_north": 0.0, - "identifier": "1fbb7f55-4c8d-4141-88d3-ccc32b8dae2a", - "dewpoint": null, - "ground_temp": null, - "rad_west": 0.0, - "display_name": "1fbb7f55-4c8d-4141-88d3-ccc32b8dae2a", - "user_data": {}, - "temp": 0.0, - "rad_east": 0.0, - "rad_global": 0.0 - }, - "heat_load_2": { - "sky_temp": null, - "rad_south": 0.0, - "rad_north": 0.0, - "identifier": "b8b7be39-1e5d-46ab-ab0f-81e1f3ec28da", - "dewpoint": null, - "ground_temp": null, - "rad_west": 0.0, - "display_name": "b8b7be39-1e5d-46ab-ab0f-81e1f3ec28da", - "user_data": {}, - "temp": 0.0, - "rad_east": 0.0, - "rad_global": 0.0 - }, - "display_name": "34b5f754-f6ee-4bbb-bba5-febb7ff26bd1", - "user_data": {}, - "cooling_load_2": { - "sky_temp": null, - "rad_south": 0.0, - "rad_north": 0.0, - "identifier": "d70ecd4a-9442-4e8e-bc0c-457feb652213", - "dewpoint": null, - "ground_temp": null, - "rad_west": 0.0, - "display_name": "d70ecd4a-9442-4e8e-bc0c-457feb652213", - "user_data": {}, - "temp": 0.0, - "rad_east": 0.0, - "rad_global": 0.0 + "electric_equipment": { + "type": "ElectricEquipment", + "properties": { + "type": "ElectricEquipmentProperties", + "ph": { + "type": "ElectricEquipmentPhProperties", + "equipment_collection": { + "equipment_set": {} } + } + }, + "lost_fraction": 0.0, + "latent_fraction": 0.0, + "radiant_fraction": 0.5, + "identifier": "Generic Office Equipment", + "watts_per_area": 10.330000000000000, + "schedule": { + "type": "ScheduleRuleset", + "holiday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", + "schedule_type_limit": { + "type": "ScheduleTypeLimit", + "unit_type": "Dimensionless", + "upper_limit": 1.0, + "lower_limit": 0.0, + "numeric_type": "Continuous", + "identifier": "Fractional" }, - "station_elevation": 0.0, - "identifier": "74f9d343-1c44-4e4a-801a-353b88c78426", - "ground": { - "flow_rate_groundwater": 0.050000000000000003, - "identifier": "8f5e2174-f8ae-4535-80ea-a775110119e7", - "ground_heat_capacity": 1000, - "ground_density": 2000, - "depth_groundwater": 3, - "display_name": "8f5e2174-f8ae-4535-80ea-a775110119e7", - "user_data": {}, - "ground_thermal_conductivity": 2 - }, - "summer_daily_temperature_swing": 8.0, - "monthly_radiation": { - "west": { - "december": 0.0, - "identifier": "43d65cca-75b7-444b-8153-ea9f9191ec3e", - "january": 0.0, - "november": 0.0, - "february": 0.0, - "july": 0.0, - "june": 0.0, - "march": 0.0, - "display_name": "43d65cca-75b7-444b-8153-ea9f9191ec3e", - "user_data": {}, - "april": 0.0, - "may": 0.0, - "august": 0.0, - "september": 0.0, - "october": 0.0 - }, - "south": { - "december": 0.0, - "identifier": "ab938745-ff29-4719-a507-3b380e9c52e8", - "january": 0.0, - "november": 0.0, - "february": 0.0, - "july": 0.0, - "june": 0.0, - "march": 0.0, - "display_name": "ab938745-ff29-4719-a507-3b380e9c52e8", - "user_data": {}, - "april": 0.0, - "may": 0.0, - "august": 0.0, - "september": 0.0, - "october": 0.0 - }, - "identifier": "5fc5a126-6844-4bdd-9a29-0a019812029b", - "east": { - "december": 0.0, - "identifier": "369be63f-68f8-44df-bf56-c6397e36f1f3", - "january": 0.0, - "november": 0.0, - "february": 0.0, - "july": 0.0, - "june": 0.0, - "march": 0.0, - "display_name": "369be63f-68f8-44df-bf56-c6397e36f1f3", - "user_data": {}, - "april": 0.0, - "may": 0.0, - "august": 0.0, - "september": 0.0, - "october": 0.0 - }, - "north": { - "december": 0.0, - "identifier": "a68a0805-053b-49b4-8cb1-96685e89d2c3", - "january": 0.0, - "november": 0.0, - "february": 0.0, - "july": 0.0, - "june": 0.0, - "march": 0.0, - "display_name": "a68a0805-053b-49b4-8cb1-96685e89d2c3", - "user_data": {}, - "april": 0.0, - "may": 0.0, - "august": 0.0, - "september": 0.0, - "october": 0.0 - }, - "glob": { - "december": 0.0, - "identifier": "0257032b-f642-4906-8cc5-84781fbcbb80", - "january": 0.0, - "november": 0.0, - "february": 0.0, - "july": 0.0, - "june": 0.0, - "march": 0.0, - "display_name": "0257032b-f642-4906-8cc5-84781fbcbb80", - "user_data": {}, - "april": 0.0, - "may": 0.0, - "august": 0.0, - "september": 0.0, - "october": 0.0 + "schedule_rules": [ + { + "type": "ScheduleRuleAbridged", + "apply_friday": true, + "apply_sunday": false, + "apply_saturday": false, + "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", + "apply_thursday": true, + "end_date": [ + 12, + 31 + ], + "apply_tuesday": true, + "start_date": [ + 1, + 1 + ], + "apply_wednesday": true, + "apply_monday": true }, - "display_name": "5fc5a126-6844-4bdd-9a29-0a019812029b", - "user_data": {} + { + "type": "ScheduleRuleAbridged", + "apply_friday": false, + "apply_sunday": false, + "apply_saturday": true, + "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", + "apply_thursday": false, + "end_date": [ + 12, + 31 + ], + "apply_tuesday": false, + "start_date": [ + 1, + 1 + ], + "apply_wednesday": false, + "apply_monday": false + } + ], + "summer_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", + "default_day_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", + "properties": { + "type": "ScheduleRulesetProperties", + "ph": { + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997, + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] + } + } }, - "display_name": "New York", - "user_data": {}, - "monthly_temps": { - "ground_temps": { - "december": 0.0, - "identifier": "48f449ab-0f15-43e4-950c-5b26425482d7", - "january": 0.0, - "november": 0.0, - "february": 0.0, - "july": 0.0, - "june": 0.0, - "march": 0.0, - "display_name": "48f449ab-0f15-43e4-950c-5b26425482d7", - "user_data": {}, - "april": 0.0, - "may": 0.0, - "august": 0.0, - "september": 0.0, - "october": 0.0 + "identifier": "Generic Office Equipment", + "day_schedules": [ + { + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ], + [ + 6, + 0 + ], + [ + 18, + 0 + ] + ], + "values": [ + 0.2307553806, + 0.28810717499999999, + 0.2307553806 + ], + "interpolate": false, + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun" }, - "identifier": "660ab516-a957-4999-b81f-72db5fd47941", - "dewpoints": { - "december": 0.0, - "identifier": "8b68d6d7-5425-4b4c-bfb0-54fdf8e20b9a", - "january": 0.0, - "november": 0.0, - "february": 0.0, - "july": 0.0, - "june": 0.0, - "march": 0.0, - "display_name": "8b68d6d7-5425-4b4c-bfb0-54fdf8e20b9a", - "user_data": {}, - "april": 0.0, - "may": 0.0, - "august": 0.0, - "september": 0.0, - "october": 0.0 + { + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ] + ], + "values": [ + 1.0 + ], + "interpolate": false, + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn" }, - "display_name": "660ab516-a957-4999-b81f-72db5fd47941", - "user_data": {}, - "sky_temps": { - "december": 0.0, - "identifier": "597e7849-c004-4209-a1ba-38da696b0e06", - "january": 0.0, - "november": 0.0, - "february": 0.0, - "july": 0.0, - "june": 0.0, - "march": 0.0, - "display_name": "597e7849-c004-4209-a1ba-38da696b0e06", - "user_data": {}, - "april": 0.0, - "may": 0.0, - "august": 0.0, - "september": 0.0, - "october": 0.0 + { + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ] + ], + "values": [ + 0.0 + ], + "interpolate": false, + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn" }, - "air_temps": { - "december": 0.0, - "identifier": "b68589f7-5b31-421d-8ab1-7ac4ab04bf7e", - "january": 0.0, - "november": 0.0, - "february": 0.0, - "july": 0.0, - "june": 0.0, - "march": 0.0, - "display_name": "b68589f7-5b31-421d-8ab1-7ac4ab04bf7e", - "user_data": {}, - "april": 0.0, - "may": 0.0, - "august": 0.0, - "september": 0.0, - "october": 0.0 + { + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ], + [ + 6, + 0 + ], + [ + 8, + 0 + ], + [ + 12, + 0 + ], + [ + 17, + 0 + ], + [ + 19, + 0 + ] + ], + "values": [ + 0.2307553806, + 0.38123479599999999, + 0.47654349499999998, + 0.33358044650000002, + 0.28592609699999999, + 0.2307553806 + ], + "interpolate": false, + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat" + }, + { + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ], + [ + 6, + 0 + ], + [ + 8, + 0 + ], + [ + 12, + 0 + ], + [ + 13, + 0 + ], + [ + 17, + 0 + ], + [ + 18, + 0 + ] + ], + "values": [ + 0.30767384079999999, + 0.38123479599999999, + 0.85777829100000003, + 0.76246959199999997, + 0.85777829100000003, + 0.47654349499999998, + 0.38123479599999999 + ], + "interpolate": false, + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy" } - }, - "average_wind_speed": 4.0 - }, - "display_name": "1e85734a-06e5-456f-8d77-4d12019bda3b", - "user_data": {}, - "location": { - "identifier": "0caa66aa-ef22-4871-a548-3a530afdd5fb", - "longitude": -73.799999999999997, - "display_name": "0caa66aa-ef22-4871-a548-3a530afdd5fb", - "user_data": {}, - "climate_zone": 1, - "site_elevation": null, - "hours_from_UTC": -4, - "latitude": 40.600000000000001 - }, - "phpp_library_codes": { - "region_code": "New York", - "country_code": "US-United States of America", - "identifier": "72038fe9-3618-45aa-a493-cad204850668", - "dataset_name": "US0055b-New York", - "display_name": "US0055b-New York", - "user_data": {} + ], + "winter_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn" } }, - "summer_hrv_bypass_mode": { - "value": "4-ALWAYS" - }, - "num_dwelling_units": 1, - "display_name": "Unnamed_Bldg_Segment", - "user_data": {}, - "name": "Unnamed_Bldg_Segment", - "source_energy_factors": { - "factors": [] + "ventilation": { + "type": "Ventilation", + "flow_per_person": 0.0023600000000000001, + "flow_per_area": 0.00030499999999999999, + "identifier": "Generic Office Ventilation" }, - "thermal_bridges": {} + "identifier": "Generic Office Program" }, - "specific_heat_capacity": "1-LIGHTWEIGHT", - "ph_foundations": [], - "spaces": [], - "id_num": 0 + "hvac": { + "type": "IdealAirSystem", + "heating_limit": { + "type": "Autosize" + }, + "sensible_heat_recovery": 0.0, + "latent_heat_recovery": 0.0, + "demand_controlled_ventilation": false, + "cooling_air_temperature": 13.0, + "economizer_type": "DifferentialDryBulb", + "identifier": "Room_2_7ff60448 Ideal Loads Air System", + "heating_air_temperature": 50.0, + "cooling_limit": { + "type": "Autosize" + } + } }, "ph_hvac": { - "supportive_devices": [], "type": "RoomPhHvacProperties", - "heat_pump_systems": [], - "heating_systems": [], - "exhaust_vent_devices": [], - "ventilation_system": null, + "supportive_devices": [], "renewable_devices": [], + "heating_systems": [], + "heat_pump_systems": [], "hot_water_system": null, - "id_num": 0 + "id_num": 0, + "exhaust_vent_devices": [], + "ventilation_system": null + }, + "radiance": { + "type": "RoomRadianceProperties" } - } + }, + "identifier": "Room_2_7ff60448", + "display_name": "Room_2" } \ No newline at end of file diff --git a/tests/_test_reference_files_hbjson/Multi_Room_Complete.hbjson b/tests/_test_reference_files_hbjson/Multi_Room_Complete.hbjson index c6f384d..de11297 100644 --- a/tests/_test_reference_files_hbjson/Multi_Room_Complete.hbjson +++ b/tests/_test_reference_files_hbjson/Multi_Room_Complete.hbjson @@ -1,7099 +1,7099 @@ { - "version": "1.55.0", - "orphaned_shades": [ - { - "identifier": "Shade_de34f9c1", - "type": "Shade", - "is_detached": true, - "geometry": { - "boundary": [ - [ - 0.19101299543362338, - -4.4167114716865719, - 3.3000000000000003 - ], - [ - 0.0, - -5.5, - 3.3000000000000003 - ], - [ - 5.4164426415671443, - -6.4550649771681172, - 3.3000000000000003 - ], - [ - 5.6074556370007675, - -5.3717764488546882, - 3.3000000000000003 - ] - ], - "plane": { - "type": "Plane", - "n": [ - 0.0, - 0.0, - 1.0 - ], - "o": [ - 5.4164426415671443, - -6.4550649771681172, - 3.3000000000000003 - ], - "x": [ - 1.0, - 0.0, - 0.0 - ] - }, - "type": "Face3D" - }, - "display_name": "Shade_de34f9c1", - "properties": { - "radiance": { - "type": "ShadeRadiancePropertiesAbridged" + "type": "Model", + "units": "Meters", + "properties": { + "type": "ModelProperties", + "ph": { + "type": "ModelPhPropertiesAbridged", + "team": { + "user_data": {}, + "customer": { + "user_data": {}, + "telephone": null, + "city": null, + "name": null, + "street": null, + "post_code": null, + "identifier": "2897881d-a8bd-4b5f-b2c6-c7f0b1f4b1ee", + "license_number": null, + "display_name": "2897881d-a8bd-4b5f-b2c6-c7f0b1f4b1ee", + "email": null }, - "type": "ShadePropertiesAbridged", - "energy": { - "type": "ShadeEnergyPropertiesAbridged" + "owner": { + "user_data": {}, + "telephone": null, + "city": null, + "name": null, + "street": null, + "post_code": null, + "identifier": "0cc227c9-29f0-49aa-b97a-2cc094e76405", + "license_number": null, + "display_name": "0cc227c9-29f0-49aa-b97a-2cc094e76405", + "email": null }, - "ph": { - "type": "ShadePhPropertiesAbridged", - "id_num": 0 + "designer": { + "user_data": {}, + "telephone": null, + "city": null, + "name": null, + "street": null, + "post_code": null, + "identifier": "767f2b85-0865-4bc9-a6eb-341b33e8ccdb", + "license_number": null, + "display_name": "767f2b85-0865-4bc9-a6eb-341b33e8ccdb", + "email": null }, - "ph_hvac": { - "type": "ShadePhHvacProperties" - } - } - }, - { - "identifier": "Shade_c07daf16", - "type": "Shade", - "is_detached": true, - "geometry": { - "boundary": [ - [ - 5.6074556370007675, - -5.3717764488546882, - 3.3000000000000003 - ], - [ - 5.4164426415671443, - -6.4550649771681172, - 3.3000000000000003 - ], - [ - 12.999462339761147, - -7.7921559452034819, - 3.3000000000000003 - ], - [ - 13.190475335194769, - -6.7088674168900519, - 3.3000000000000003 - ] - ], - "plane": { - "type": "Plane", - "n": [ - 0.0, - 0.0, - 1.0 - ], - "o": [ - 12.999462339761147, - -7.7921559452034819, - 3.3000000000000003 - ], - "x": [ - 1.0, - 0.0, - 0.0 - ] + "building": { + "user_data": {}, + "telephone": null, + "city": null, + "name": null, + "street": null, + "post_code": null, + "identifier": "7d692ffc-ffbf-4a2d-ba18-27defee9adc6", + "license_number": null, + "display_name": "7d692ffc-ffbf-4a2d-ba18-27defee9adc6", + "email": null }, - "type": "Face3D" + "identifier": "7060f094-b93e-4e9d-b72c-8b38bf0f6138", + "display_name": "7060f094-b93e-4e9d-b72c-8b38bf0f6138" }, - "display_name": "Shade_c07daf16", - "properties": { - "radiance": { - "type": "ShadeRadiancePropertiesAbridged" - }, - "type": "ShadePropertiesAbridged", - "energy": { - "type": "ShadeEnergyPropertiesAbridged" - }, - "ph": { - "type": "ShadePhPropertiesAbridged", - "id_num": 0 - }, - "ph_hvac": { - "type": "ShadePhHvacProperties" - } - } - } - ], - "identifier": "unnamed_27708637", - "angle_tolerance": 1.0, - "type": "Model", - "units": "Meters", - "display_name": "unnamed", - "rooms": [ - { - "identifier": "Room_7_a5ba7cbb", - "type": "Room", - "display_name": "Room_7", - "story": "1", - "faces": [ + "id_num": 0, + "bldg_segments": [ { - "boundary_condition": { - "type": "Outdoors", - "sun_exposure": true, - "wind_exposure": true, - "view_factor": { - "type": "Autocalculate" - } - }, - "identifier": "Room_7_a5ba7cbb..Face0", - "type": "Face", - "face_type": "Wall", - "geometry": { - "boundary": [ - [ - 5.4164426415671443, - -6.4550649771681172, - 3.3000000000000003 - ], - [ - 5.4164426415671443, - -6.4550649771681172, - 0.0 - ], - [ - 0.0, - -5.5, - 0.0 - ], - [ - 0.0, - -5.5, - 3.3000000000000003 - ] - ], - "plane": { - "type": "Plane", - "n": [ - 0.17364817766693041, - 0.98480775301220813, - 0.0 - ], - "o": [ - 0.0, - -5.5, - 3.3000000000000003 - ], - "x": [ - 0.98480775301220813, - -0.17364817766693041, - 0.0 - ] + "user_data": {}, + "non_combustible_materials": false, + "num_floor_levels": 1, + "phius_certification": { + "user_data": {}, + "display_name": "ca54fa2a-240d-4734-a75f-b074b33cf092", + "int_gains_dhw_marginal_perf_ratio": null, + "PHIUS2021_cooling_load": 10.0, + "int_gains_flush_heat_loss": true, + "PHIUS2021_heating_demand": 15.0, + "PHIUS2021_heating_load": 10.0, + "localization_selection_type": 2, + "int_gains_toilet_room_util_pat": null, + "building_status": { + "value": "1-IN_PLANNING" + }, + "icfa_override": null, + "building_use_type": { + "value": "1-RESIDENTIAL" + }, + "identifier": "ca54fa2a-240d-4734-a75f-b074b33cf092", + "certification_program": { + "value": "7-PHIUS 2021 CORE" }, - "type": "Face3D" + "building_type": { + "value": "1-NEW_CONSTRUCTION" + }, + "int_gains_num_toilets": 1, + "PHIUS2021_cooling_demand": 15.0, + "int_gains_use_school_defaults": false, + "int_gains_evap_per_person": 15, + "building_category_type": { + "value": "1-RESIDENTIAL BUILDING" + } }, - "display_name": "Room_7_a5ba7cbb..Face0", - "apertures": [ - { - "boundary_condition": { - "type": "Outdoors", - "sun_exposure": true, - "wind_exposure": true, - "view_factor": { - "type": "Autocalculate" - } - }, - "identifier": "Room_7_a5ba7cbb..Face0_Glz0", - "type": "Aperture", + "thermal_bridges": { + "b8cc555f-6ee8-4111-ab84-88773e73830c": { + "user_data": {}, + "id_num": 0, "geometry": { - "boundary": [ + "type": "Polyline3D", + "vertices": [ [ - 4.5249514121994716, - -6.2978710203656378, - 2.7568536488623963 + 5.0, + 0.0, + 0.0 ], [ - 4.5249514121994716, - -6.2978710203656378, - 0.54314635113760423 + 12.0, + 0.0, + 0.0 ], [ - 0.89149122936767267, - -5.6571939568024794, - 0.54314635113760423 + 12.0, + 0.0, + 3.0 ], [ - 0.89149122936767267, - -5.6571939568024794, - 2.7568536488623963 - ] - ], - "plane": { - "type": "Plane", - "n": [ - 0.17364817766693039, - 0.98480775301220813, - 0.0 - ], - "o": [ - 0.89149122936767267, - -5.6571939568024794, - 2.7568536488623963 + 5.0, + 0.0, + 3.0 ], - "x": [ - 0.98480775301220813, - -0.17364817766693039, + [ + 5.0, + 0.0, 0.0 ] - }, - "type": "Face3D" + ] }, - "display_name": "Room_7_a5ba7cbb..Face0_Glz0", - "is_operable": false, - "properties": { - "radiance": { - "type": "ApertureRadiancePropertiesAbridged" - }, - "type": "AperturePropertiesAbridged", - "energy": { - "type": "ApertureEnergyPropertiesAbridged" - }, - "ph": { - "winter_shading_factor": 0.75, - "install_depth": 0.1016, - "type": "AperturePhPropertiesAbridged", - "summer_shading_factor": 0.75, - "id_num": 0, - "variant_type": "_unnamed_type_", - "default_monthly_shading_correction_factor": 1.0 - }, - "ph_hvac": { - "type": "AperturePhHvacProperties" - } - } - } - ], - "properties": { - "radiance": { - "type": "FaceRadiancePropertiesAbridged" - }, - "type": "FacePropertiesAbridged", - "energy": { - "type": "FaceEnergyPropertiesAbridged" - }, - "ph": { - "type": "FacePhPropertiesAbridged", - "id_num": 0 - }, - "ph_hvac": { - "type": "FacePhHvacProperties" - } - } - }, - { - "boundary_condition": { - "type": "Surface", - "boundary_condition_objects": [ - "Room_8_b1033aa6..Face3", - "Room_8_b1033aa6" - ] - }, - "identifier": "Room_7_a5ba7cbb..Face1", - "type": "Face", - "face_type": "Wall", - "geometry": { - "boundary": [ - [ - 4.6523906598326512, - -10.788219090421832, - 3.3000000000000003 - ], - [ - 4.6523906598326512, - -10.788219090421832, - 0.0 - ], - [ - 5.4164426415671443, - -6.4550649771681172, - 0.0 - ], - [ - 5.4164426415671443, - -6.4550649771681172, - 3.3000000000000003 - ] - ], - "plane": { - "type": "Plane", - "n": [ - 0.98480775301220813, - -0.1736481776669303, - 0.0 - ], - "o": [ - 5.4164426415671443, - -6.4550649771681172, - 3.3000000000000003 - ], - "x": [ - -0.1736481776669303, - -0.98480775301220813, - 0.0 - ] - }, - "type": "Face3D" - }, - "display_name": "Room_7_a5ba7cbb..Face1", - "properties": { - "radiance": { - "type": "FaceRadiancePropertiesAbridged" - }, - "type": "FacePropertiesAbridged", - "energy": { - "type": "FaceEnergyPropertiesAbridged" - }, - "ph": { - "type": "FacePhPropertiesAbridged", - "id_num": 0 - }, - "ph_hvac": { - "type": "FacePhHvacProperties" - } - } - }, - { - "boundary_condition": { - "type": "Outdoors", - "sun_exposure": true, - "wind_exposure": true, - "view_factor": { - "type": "Autocalculate" - } - }, - "identifier": "Room_7_a5ba7cbb..Face2", - "type": "Face", - "face_type": "Wall", - "geometry": { - "boundary": [ - [ - -0.76405198173449351, - -9.8331541132537161, - 3.3000000000000003 - ], - [ - -0.76405198173449351, - -9.8331541132537161, - 0.0 - ], - [ - 4.6523906598326512, - -10.788219090421832, - 0.0 - ], - [ - 4.6523906598326512, - -10.788219090421832, - 3.3000000000000003 - ] - ], - "plane": { - "type": "Plane", - "n": [ - -0.17364817766693011, - -0.98480775301220813, - 0.0 - ], - "o": [ - 4.6523906598326512, - -10.788219090421832, - 3.3000000000000003 - ], - "x": [ - -0.98480775301220813, - 0.17364817766693011, - 0.0 - ] - }, - "type": "Face3D" - }, - "display_name": "Room_7_a5ba7cbb..Face2", - "apertures": [ - { - "boundary_condition": { - "type": "Outdoors", - "sun_exposure": true, - "wind_exposure": true, - "view_factor": { - "type": "Autocalculate" - } + "quantity": 1.0, + "_group_type": { + "value": "15-AMBIENT" }, - "identifier": "Room_7_a5ba7cbb..Face2_Glz0", - "type": "Aperture", + "identifier": "b8cc555f-6ee8-4111-ab84-88773e73830c", + "display_name": "_unnamed_bldg_segment__d481e047", + "psi_value": 0.01, + "fRsi_value": 0.75 + }, + "48a34c48-bf0a-48d8-b321-23a4c3d5eb12": { + "user_data": {}, + "id_num": 0, "geometry": { - "boundary": [ + "type": "Polyline3D", + "vertices": [ [ - 0.12743924763317918, - -9.9903480700561964, - 2.7568536488623963 + 5.0, + 4.0, + 0.0 ], [ - 0.12743924763317918, - -9.9903480700561964, - 0.54314635113760423 + 5.0, + 0.0, + 0.0 ], [ - 3.7608994304649785, - -10.631025133619353, - 0.54314635113760423 + 5.0, + 0.0, + 3.0 ], [ - 3.7608994304649785, - -10.631025133619353, - 2.7568536488623963 + 5.0, + 4.0, + 3.0 + ], + [ + 5.0, + 4.0, + 0.0 ] - ], - "plane": { - "type": "Plane", - "n": [ - -0.17364817766692994, - -0.98480775301220813, + ] + }, + "quantity": 1.0, + "_group_type": { + "value": "15-AMBIENT" + }, + "identifier": "48a34c48-bf0a-48d8-b321-23a4c3d5eb12", + "display_name": "_unnamed_bldg_segment__0b896a30", + "psi_value": 0.01, + "fRsi_value": 0.75 + }, + "3998c0cd-1a5d-4293-b93c-bcb8fbc1d1e5": { + "user_data": {}, + "id_num": 0, + "geometry": { + "type": "Polyline3D", + "vertices": [ + [ + 0.0, + 0.0, 0.0 ], - "o": [ - 3.7608994304649785, - -10.631025133619353, - 2.7568536488623963 + [ + 5.0, + 0.0, + 0.0 ], - "x": [ - -0.98480775301220813, - 0.17364817766692994, + [ + 5.0, + 0.0, + 3.0 + ], + [ + 0.0, + 0.0, + 3.0 + ], + [ + 0.0, + 0.0, 0.0 ] - }, - "type": "Face3D" + ] }, - "display_name": "Room_7_a5ba7cbb..Face2_Glz0", - "is_operable": false, - "properties": { - "radiance": { - "type": "ApertureRadiancePropertiesAbridged" - }, - "type": "AperturePropertiesAbridged", - "energy": { - "type": "ApertureEnergyPropertiesAbridged" - }, - "ph": { - "winter_shading_factor": 0.75, - "install_depth": 0.1016, - "type": "AperturePhPropertiesAbridged", - "summer_shading_factor": 0.75, - "id_num": 0, - "variant_type": "_unnamed_type_", - "default_monthly_shading_correction_factor": 1.0 - }, - "ph_hvac": { - "type": "AperturePhHvacProperties" - } - } - } - ], - "properties": { - "radiance": { - "type": "FaceRadiancePropertiesAbridged" - }, - "type": "FacePropertiesAbridged", - "energy": { - "type": "FaceEnergyPropertiesAbridged" - }, - "ph": { - "type": "FacePhPropertiesAbridged", - "id_num": 0 - }, - "ph_hvac": { - "type": "FacePhHvacProperties" - } - } - }, - { - "boundary_condition": { - "type": "Outdoors", - "sun_exposure": true, - "wind_exposure": true, - "view_factor": { - "type": "Autocalculate" - } - }, - "identifier": "Room_7_a5ba7cbb..Face3", - "type": "Face", - "face_type": "Wall", - "geometry": { - "boundary": [ - [ - 0.0, - -5.5, - 3.3000000000000003 - ], - [ - 0.0, - -5.5, - 0.0 - ], - [ - -0.76405198173449351, - -9.8331541132537161, - 0.0 - ], - [ - -0.76405198173449351, - -9.8331541132537161, - 3.3000000000000003 - ] - ], - "plane": { - "type": "Plane", - "n": [ - -0.98480775301220813, - 0.17364817766693036, - 0.0 - ], - "o": [ - -0.76405198173449351, - -9.8331541132537161, - 3.3000000000000003 - ], - "x": [ - 0.17364817766693036, - 0.98480775301220813, - 0.0 - ] - }, - "type": "Face3D" - }, - "display_name": "Room_7_a5ba7cbb..Face3", - "apertures": [ - { - "boundary_condition": { - "type": "Outdoors", - "sun_exposure": true, - "wind_exposure": true, - "view_factor": { - "type": "Autocalculate" - } + "quantity": 1.0, + "_group_type": { + "value": "15-AMBIENT" }, - "identifier": "Room_7_a5ba7cbb..Face3_Glz0", - "type": "Aperture", + "identifier": "3998c0cd-1a5d-4293-b93c-bcb8fbc1d1e5", + "display_name": "_unnamed_bldg_segment__b5fb3642", + "psi_value": 0.01, + "fRsi_value": 0.75 + }, + "375dca78-0ac1-40da-ba2e-fcb972463242": { + "user_data": {}, + "id_num": 0, "geometry": { - "boundary": [ + "type": "Polyline3D", + "vertices": [ [ - -0.12575516544198348, - -6.2131929834941388, - 2.7568536488623963 + 0.0, + 4.0, + 0.0 ], [ - -0.12575516544198348, - -6.2131929834941388, - 0.54314635113760423 + 0.0, + 0.0, + 0.0 ], [ - -0.63829681629251001, - -9.1199611297595773, - 0.54314635113760423 + 0.0, + 0.0, + 3.0 ], [ - -0.63829681629251001, - -9.1199611297595773, - 2.7568536488623963 - ] - ], - "plane": { - "type": "Plane", - "n": [ - -0.98480775301220813, - 0.17364817766693039, - 0.0 - ], - "o": [ - -0.63829681629251001, - -9.1199611297595773, - 2.7568536488623963 + 0.0, + 4.0, + 3.0 ], - "x": [ - 0.17364817766693039, - 0.98480775301220813, + [ + 0.0, + 4.0, 0.0 ] - }, - "type": "Face3D" + ] }, - "display_name": "Room_7_a5ba7cbb..Face3_Glz0", - "is_operable": false, - "properties": { - "radiance": { - "type": "ApertureRadiancePropertiesAbridged" - }, - "type": "AperturePropertiesAbridged", - "energy": { - "type": "ApertureEnergyPropertiesAbridged" - }, - "ph": { - "winter_shading_factor": 0.75, - "install_depth": 0.1016, - "type": "AperturePhPropertiesAbridged", - "summer_shading_factor": 0.75, - "id_num": 0, - "variant_type": "_unnamed_type_", - "default_monthly_shading_correction_factor": 1.0 - }, - "ph_hvac": { - "type": "AperturePhHvacProperties" - } - } - } - ], - "properties": { - "radiance": { - "type": "FaceRadiancePropertiesAbridged" - }, - "type": "FacePropertiesAbridged", - "energy": { - "type": "FaceEnergyPropertiesAbridged" - }, - "ph": { - "type": "FacePhPropertiesAbridged", - "id_num": 0 + "quantity": 1.0, + "_group_type": { + "value": "15-AMBIENT" + }, + "identifier": "375dca78-0ac1-40da-ba2e-fcb972463242", + "display_name": "_unnamed_bldg_segment__510c027f", + "psi_value": 0.01, + "fRsi_value": 0.75 }, - "ph_hvac": { - "type": "FacePhHvacProperties" - } - } - }, - { - "boundary_condition": { - "type": "Ground" - }, - "identifier": "Room_7_a5ba7cbb..Face4", - "type": "Face", - "face_type": "Floor", - "geometry": { - "boundary": [ - [ - 5.4164426415671443, - -6.4550649771681172, - 0.0 - ], - [ - 4.6523906598326512, - -10.788219090421832, - 0.0 - ], - [ - -0.76405198173449351, - -9.8331541132537161, - 0.0 - ], - [ - 0.0, - -5.5, - 0.0 - ] - ], - "plane": { - "type": "Plane", - "n": [ - 0.0, - 0.0, - -1.0 - ], - "o": [ - 5.4164426415671443, - -6.4550649771681172, - 0.0 - ], - "x": [ - 1.0, - 0.0, - 0.0 - ] - }, - "type": "Face3D" - }, - "display_name": "Room_7_a5ba7cbb..Face4", - "properties": { - "radiance": { - "type": "FaceRadiancePropertiesAbridged" - }, - "type": "FacePropertiesAbridged", - "energy": { - "type": "FaceEnergyPropertiesAbridged" - }, - "ph": { - "type": "FacePhPropertiesAbridged", - "id_num": 0 - }, - "ph_hvac": { - "type": "FacePhHvacProperties" - } - } - }, - { - "boundary_condition": { - "type": "Outdoors", - "sun_exposure": true, - "wind_exposure": true, - "view_factor": { - "type": "Autocalculate" - } - }, - "identifier": "Room_7_a5ba7cbb..Face5", - "type": "Face", - "face_type": "RoofCeiling", - "geometry": { - "boundary": [ - [ - 0.0, - -5.5, - 3.3000000000000003 - ], - [ - -0.76405198173449351, - -9.8331541132537161, - 3.3000000000000003 - ], - [ - 4.6523906598326512, - -10.788219090421832, - 3.3000000000000003 - ], - [ - 5.4164426415671443, - -6.4550649771681172, - 3.3000000000000003 - ] - ], - "plane": { - "type": "Plane", - "n": [ - 0.0, - 0.0, - 1.0 - ], - "o": [ - -0.76405198173449351, - -9.8331541132537161, - 3.3000000000000003 - ], - "x": [ - 1.0, - 0.0, - 0.0 - ] - }, - "type": "Face3D" - }, - "display_name": "Room_7_a5ba7cbb..Face5", - "apertures": [ - { - "boundary_condition": { - "type": "Outdoors", - "sun_exposure": true, - "wind_exposure": true, - "view_factor": { - "type": "Autocalculate" - } - }, - "identifier": "Room_7_a5ba7cbb..Face5_Glz0", - "type": "Aperture", + "716a468d-ed2d-4744-bbcf-965ed399583e": { + "user_data": {}, + "id_num": 0, "geometry": { - "boundary": [ + "type": "Polyline3D", + "vertices": [ [ - 0.6813268377680135, - -6.2744417555921990, - 3.3000000000000003 + 6.1521286236252202, + 0.0, + 0.49376941012509468 ], [ - 0.14106050030453293, - -9.3384444130002837, - 3.3000000000000003 + 10.847871376374780, + 0.0, + 0.49376941012509468 ], [ - 3.9710638220646373, - -10.013777334829634, - 3.3000000000000003 + 10.847871376374780, + 0.0, + 2.5062305898749053 ], [ - 4.5113301595281179, - -6.9497746774215505, - 3.3000000000000003 + 6.1521286236252202, + 0.0, + 2.5062305898749053 + ], + [ + 6.1521286236252202, + 0.0, + 0.49376941012509468 ] - ], - "plane": { - "type": "Plane", - "n": [ + ] + }, + "quantity": 1.0, + "_group_type": { + "value": "15-AMBIENT" + }, + "identifier": "716a468d-ed2d-4744-bbcf-965ed399583e", + "display_name": "_unnamed_bldg_segment__9533e047", + "psi_value": 0.01, + "fRsi_value": 0.75 + }, + "bdb641e7-2e13-4edf-9c12-052ba83e8a05": { + "user_data": {}, + "id_num": 0, + "geometry": { + "type": "Polyline3D", + "vertices": [ + [ + 0.82294901687515765, 0.0, + 0.49376941012509468 + ], + [ + 4.1770509831248424, 0.0, - 1.0 + 0.49376941012509468 ], - "o": [ - 3.9710638220646373, - -10.013777334829634, - 3.3000000000000003 + [ + 4.1770509831248424, + 0.0, + 2.5062305898749053 ], - "x": [ - 1.0, + [ + 0.82294901687515765, 0.0, - 0.0 + 2.5062305898749053 + ], + [ + 0.82294901687515765, + 0.0, + 0.49376941012509468 ] - }, - "type": "Face3D" + ] }, - "display_name": "Room_7_a5ba7cbb..Face5_Glz0", - "is_operable": false, - "properties": { - "radiance": { - "type": "ApertureRadiancePropertiesAbridged" - }, - "type": "AperturePropertiesAbridged", - "energy": { - "type": "ApertureEnergyPropertiesAbridged" - }, - "ph": { - "winter_shading_factor": 0.75, - "install_depth": 0.1016, - "type": "AperturePhPropertiesAbridged", - "summer_shading_factor": 0.75, - "id_num": 0, - "variant_type": "_unnamed_type_", - "default_monthly_shading_correction_factor": 1.0 - }, - "ph_hvac": { - "type": "AperturePhHvacProperties" - } - } - } - ], - "properties": { - "radiance": { - "type": "FaceRadiancePropertiesAbridged" - }, - "type": "FacePropertiesAbridged", - "energy": { - "type": "FaceEnergyPropertiesAbridged" - }, - "ph": { - "type": "FacePhPropertiesAbridged", - "id_num": 0 - }, - "ph_hvac": { - "type": "FacePhHvacProperties" - } - } - } - ], - "properties": { - "radiance": { - "type": "RoomRadiancePropertiesAbridged" - }, - "type": "RoomPropertiesAbridged", - "energy": { - "people": { - "identifier": "Generic Office People", - "type": "PeopleAbridged", - "people_per_area": 0.050000000000000003, - "radiant_fraction": 0.29999999999999999, - "occupancy_schedule": "Generic Office Occupancy", - "activity_schedule": "Seated Adult Activity", - "latent_fraction": { - "type": "Autocalculate" + "quantity": 1.0, + "_group_type": { + "value": "15-AMBIENT" + }, + "identifier": "bdb641e7-2e13-4edf-9c12-052ba83e8a05", + "display_name": "_unnamed_bldg_segment__05b819b1", + "psi_value": 0.01, + "fRsi_value": 0.75 }, - "properties": { - "ph": { - "type": "PeoplePhProperties", - "dwellings": { - "identifier": "08942a5e-c167-4d09-8009-afbedd8af4d3", - "num_dwellings": 1 - }, - "id_num": 0, - "number_bedrooms": 1, - "number_people": 1 + "8a48a582-0320-4ecf-8b14-465c30ac8211": { + "user_data": {}, + "id_num": 0, + "geometry": { + "type": "Polyline3D", + "vertices": [ + [ + 0.0, + 0.0, + 3.0 + ], + [ + 5.0, + 0.0, + 3.0 + ], + [ + 5.0, + 4.0, + 3.0 + ], + [ + 0.0, + 4.0, + 3.0 + ], + [ + 0.0, + 0.0, + 3.0 + ] + ] + }, + "quantity": 1.0, + "_group_type": { + "value": "15-AMBIENT" + }, + "identifier": "8a48a582-0320-4ecf-8b14-465c30ac8211", + "display_name": "_unnamed_bldg_segment__21c73d25", + "psi_value": 0.01, + "fRsi_value": 0.75 + }, + "bc70a9d2-0f5a-49a6-8e95-51d0077ecd4e": { + "user_data": {}, + "id_num": 0, + "geometry": { + "type": "Polyline3D", + "vertices": [ + [ + 12.0, + 0.0, + 0.0 + ], + [ + 12.0, + 4.0, + 0.0 + ], + [ + 12.0, + 4.0, + 3.0 + ], + [ + 12.0, + 0.0, + 3.0 + ], + [ + 12.0, + 0.0, + 0.0 + ] + ] + }, + "quantity": 1.0, + "_group_type": { + "value": "15-AMBIENT" + }, + "identifier": "bc70a9d2-0f5a-49a6-8e95-51d0077ecd4e", + "display_name": "_unnamed_bldg_segment__c1c6cf59", + "psi_value": 0.01, + "fRsi_value": 0.75 + }, + "cc9fabb4-41f8-4296-aa87-637eb5afc2c3": { + "user_data": {}, + "id_num": 0, + "geometry": { + "type": "Polyline3D", + "vertices": [ + [ + 5.0, + 0.0, + 0.0 + ], + [ + 5.0, + 4.0, + 0.0 + ], + [ + 5.0, + 4.0, + 3.0 + ], + [ + 5.0, + 0.0, + 3.0 + ], + [ + 5.0, + 0.0, + 0.0 + ] + ] + }, + "quantity": 1.0, + "_group_type": { + "value": "15-AMBIENT" + }, + "identifier": "cc9fabb4-41f8-4296-aa87-637eb5afc2c3", + "display_name": "_unnamed_bldg_segment__5473df73", + "psi_value": 0.01, + "fRsi_value": 0.75 + }, + "e63dc114-db72-4930-8b76-adfd870f4ca5": { + "user_data": {}, + "id_num": 0, + "geometry": { + "type": "Polyline3D", + "vertices": [ + [ + 0.0, + 3.3416407864998741, + 0.49376941012509468 + ], + [ + 0.0, + 0.65835921350012616, + 0.49376941012509468 + ], + [ + 0.0, + 0.65835921350012616, + 2.5062305898749053 + ], + [ + 0.0, + 3.3416407864998741, + 2.5062305898749053 + ], + [ + 0.0, + 3.3416407864998741, + 0.49376941012509468 + ] + ] + }, + "quantity": 1.0, + "_group_type": { + "value": "15-AMBIENT" }, - "type": "PeopleProperties" + "identifier": "e63dc114-db72-4930-8b76-adfd870f4ca5", + "display_name": "_unnamed_bldg_segment__bebb668a", + "psi_value": 0.01, + "fRsi_value": 0.75 } }, - "hvac": "Room_7_a5ba7cbb Ideal Loads Air System", - "program_type": "Generic Office Program", - "type": "RoomEnergyPropertiesAbridged", - "service_hot_water": { - "identifier": "Room_7_a5ba7cbb_service_hot_water", - "type": "ServiceHotWaterAbridged", - "target_temperature": 60.0, - "schedule": "Always On", - "flow_per_area": 5.0000000000000002e-05, - "latent_fraction": 0.050000000000000003, - "sensible_fraction": 0.20000000000000001 + "set_points": { + "user_data": {}, + "summer": 24.0, + "winter": 21.0, + "identifier": "938c8cb4-78cb-417d-9387-c5dd21c31210", + "display_name": "938c8cb4-78cb-417d-9387-c5dd21c31210" }, - "construction_set": "ConstructionSet_6a96113d", - "electric_equipment": { - "identifier": "Generic Office Equipment_58e246b3", - "type": "ElectricEquipmentAbridged", - "radiant_fraction": 0.5, - "schedule": "Generic Office Equipment", - "lost_fraction": 0.0, - "latent_fraction": 0.0, - "watts_per_area": 10.330000000000000, - "properties": { - "ph": { - "equipment_collection": { - "equipment_set": { - "05dc66cd-589b-49d7-ac3d-d6073f870140": { - "quantity": 1, - "combined_energy_factor": 0, - "comment": "default", - "reference_energy_norm": 2, - "identifier": "05dc66cd-589b-49d7-ac3d-d6073f870140", - "_water_connection": { - "value": "2-COLD WATER CONNECTION" - }, - "energy_demand": 269, - "capacity_type": 1, - "reference_quantity": 1, - "in_conditioned_space": true, - "equipment_type": "PhDishwasher", - "display_name": "Kitchen dishwasher", - "user_data": {}, - "energy_demand_per_use": 0, - "capacity": 12 - }, - "97719cd4-8186-4b44-8b4a-c42eaa5419c7": { - "quantity": 1, - "combined_energy_factor": 0, - "comment": "default", - "utilization_factor": 1.0, - "reference_energy_norm": 2, - "identifier": "97719cd4-8186-4b44-8b4a-c42eaa5419c7", - "_water_connection": { - "value": "2-COLD WATER CONNECTION" - }, - "energy_demand": 120, - "reference_quantity": 1, - "modified_energy_factor": 2.7000000000000002, - "in_conditioned_space": true, - "equipment_type": "PhClothesWasher", - "display_name": "Laundry - washer", - "user_data": {}, - "energy_demand_per_use": 0, - "capacity": 0.12740000000000001 - }, - "f8b29881-a805-4f13-a0d2-2bcc1649b513": { - "quantity": 1, - "combined_energy_factor": 0, - "comment": "default", - "reference_energy_norm": 1, - "identifier": "f8b29881-a805-4f13-a0d2-2bcc1649b513", - "energy_demand": 0, - "reference_quantity": 6, - "in_conditioned_space": true, - "equipment_type": "PhPhiusLightingInterior", - "display_name": "PHIUS+ Interior Lighting", - "user_data": {}, - "energy_demand_per_use": 0, - "frac_high_efficiency": 1.0 - }, - "7cbc0312-31f6-47c6-817d-165f5289f2f3": { - "quantity": 1, - "combined_energy_factor": 0, - "comment": "default", - "reference_energy_norm": 1, - "identifier": "7cbc0312-31f6-47c6-817d-165f5289f2f3", - "energy_demand": 0, - "reference_quantity": 6, - "in_conditioned_space": false, - "equipment_type": "PhPhiusLightingExterior", - "display_name": "PHIUS+ Exterior Lighting", - "user_data": {}, - "energy_demand_per_use": 0, - "frac_high_efficiency": 1.0 - }, - "fc4a002b-06da-4716-8e8f-8c4656ac6335": { - "quantity": 1, - "combined_energy_factor": 0, - "comment": "default", - "reference_energy_norm": 1, - "identifier": "fc4a002b-06da-4716-8e8f-8c4656ac6335", - "energy_demand": 1.2200000000000000, - "reference_quantity": 4, - "in_conditioned_space": true, - "equipment_type": "PhFridgeFreezer", - "display_name": "Kitchen fridge/freeze combo", - "user_data": {}, - "energy_demand_per_use": 0 - }, - "d7270e46-db94-40bc-96b5-1cc79eab191d": { - "quantity": 1, - "combined_energy_factor": 0, - "comment": "default", - "reference_energy_norm": 1, - "identifier": "d7270e46-db94-40bc-96b5-1cc79eab191d", - "energy_demand": 0, - "reference_quantity": 3, - "in_conditioned_space": true, - "equipment_type": "PhPhiusMEL", - "display_name": "PHIUS+ MELS", - "user_data": {}, - "energy_demand_per_use": 0 - }, - "4dd8c48f-16ac-4c7a-aae7-c6b5e0378e3a": { - "quantity": 1, - "combined_energy_factor": 3.9300000000000002, - "comment": "default", - "gas_efficiency_factor": 2.6699999999999999, - "field_utilization_factor_type": 1, - "reference_energy_norm": 2, - "identifier": "4dd8c48f-16ac-4c7a-aae7-c6b5e0378e3a", - "energy_demand": 0, - "reference_quantity": 1, - "in_conditioned_space": true, - "_dryer_type": { - "value": "5-ELECTRIC EXHAUST AIR DRYER" - }, - "equipment_type": "PhClothesDryer", - "display_name": "Laundry - dryer", - "user_data": {}, - "energy_demand_per_use": 0, - "gas_consumption": 0, - "field_utilization_factor": 1.1799999999999999 - }, - "9fee98c6-77e8-4e1d-a2bc-326c5a5a855c": { - "quantity": 1, - "combined_energy_factor": 0, - "comment": "default", - "reference_energy_norm": 1, - "identifier": "9fee98c6-77e8-4e1d-a2bc-326c5a5a855c", - "energy_demand": 0.20000000000000001, - "reference_quantity": 1, - "in_conditioned_space": true, - "equipment_type": "PhCooktop", - "display_name": "Kitchen cooking", - "user_data": {}, - "energy_demand_per_use": 0, - "_cooktop_type": { - "value": "1-ELECTRICITY" - } - } - } + "name": "_unnamed_bldg_segment_", + "co2e_factors": { + "factors": [ + { + "units": "g/kWh", + "fuel_name": "HARD_COAL", + "value": 439.98640000000000 + }, + { + "units": "g/kWh", + "fuel_name": "GAS_CGS_70_CHP", + "value": -70.010199999999998 + }, + { + "units": "g/kWh", + "fuel_name": "OIL_CGS_70_CHP", + "value": 100.0 + }, + { + "units": "g/kWh", + "fuel_name": "LPG", + "value": 270.01020000000000 + }, + { + "units": "g/kWh", + "fuel_name": "OIL_CGS_0_CHP", + "value": 409.99660000000000 + }, + { + "units": "g/kWh", + "fuel_name": "GAS_CGS_0_CHP", + "value": 319.99320000000000 + }, + { + "units": "g/kWh", + "fuel_name": "OIL", + "value": 309.99660000000000 + }, + { + "units": "g/kWh", + "fuel_name": "HARD_COAL_CGS_70_CHP", + "value": 239.98640000000000 + }, + { + "units": "g/kWh", + "fuel_name": "OIL_CGS_35_CHP", + "value": 250.01710000000000 + }, + { + "units": "g/kWh", + "fuel_name": "ELECTRICITY_MIX", + "value": 680.00680000000000 + }, + { + "units": "g/kWh", + "fuel_name": "ELECTRICITY_PV", + "value": 250.01710000000000 + }, + { + "units": "g/kWh", + "fuel_name": "NATURAL_GAS", + "value": 250.01710000000000 + }, + { + "units": "g/kWh", + "fuel_name": "HARD_COAL_CGS_35_CHP", + "value": 319.99320000000000 + }, + { + "units": "g/kWh", + "fuel_name": "HARD_COAL_CGS_0_CHP", + "value": 409.99660000000000 + }, + { + "units": "g/kWh", + "fuel_name": "WOOD", + "value": 53.428899999999999 + }, + { + "units": "g/kWh", + "fuel_name": "GAS_CGS_35_CHP", + "value": 129.98980000000000 + } + ] + }, + "source_energy_factors": { + "factors": [ + { + "units": "kWh/kWh", + "fuel_name": "HARD_COAL", + "value": 1.1000000000000001 + }, + { + "units": "kWh/kWh", + "fuel_name": "GAS_CGS_70_CHP", + "value": 0.69999999999999996 + }, + { + "units": "kWh/kWh", + "fuel_name": "OIL_CGS_70_CHP", + "value": 0.80000000000000004 + }, + { + "units": "kWh/kWh", + "fuel_name": "LPG", + "value": 1.1000000000000001 + }, + { + "units": "kWh/kWh", + "fuel_name": "OIL_CGS_0_CHP", + "value": 1.5 + }, + { + "units": "kWh/kWh", + "fuel_name": "GAS_CGS_0_CHP", + "value": 1.5 + }, + { + "units": "kWh/kWh", + "fuel_name": "OIL", + "value": 1.1000000000000001 + }, + { + "units": "kWh/kWh", + "fuel_name": "HARD_COAL_CGS_70_CHP", + "value": 0.80000000000000004 + }, + { + "units": "kWh/kWh", + "fuel_name": "OIL_CGS_35_CHP", + "value": 1.1000000000000001 + }, + { + "units": "kWh/kWh", + "fuel_name": "ELECTRICITY_MIX", + "value": 1.8000000000000000 + }, + { + "units": "kWh/kWh", + "fuel_name": "ELECTRICITY_PV", + "value": 1.7000000000000000 + }, + { + "units": "kWh/kWh", + "fuel_name": "NATURAL_GAS", + "value": 1.1000000000000001 + }, + { + "units": "kWh/kWh", + "fuel_name": "HARD_COAL_CGS_35_CHP", + "value": 1.1000000000000001 + }, + { + "units": "kWh/kWh", + "fuel_name": "HARD_COAL_CGS_0_CHP", + "value": 1.5 + }, + { + "units": "kWh/kWh", + "fuel_name": "WOOD", + "value": 0.20000000000000001 + }, + { + "units": "kWh/kWh", + "fuel_name": "GAS_CGS_35_CHP", + "value": 1.1000000000000001 + } + ] + }, + "mech_room_temp": 20.0, + "identifier": "d2163927-f397-4b3f-9b0e-86123854ae83", + "display_name": "_unnamed_bldg_segment_", + "site": { + "location": { + "user_data": {}, + "latitude": 40.600000000000001, + "climate_zone": 1, + "site_elevation": 0.0, + "longitude": -73.799999999999997, + "identifier": "a41b3584-e718-4dbb-9f0b-0dc3a62e533c", + "display_name": "New_York", + "hours_from_UTC": -4 + }, + "user_data": {}, + "climate": { + "user_data": {}, + "station_elevation": 0.0, + "monthly_radiation": { + "user_data": {}, + "west": { + "user_data": {}, + "march": 66.659999999999997, + "january": 0.0, + "april": 131.66000000000000, + "july": 200.0, + "october": 74.319999999999993, + "may": 149.97000000000000, + "december": 0.0, + "june": 165.0, + "september": 104.03000000000000, + "identifier": "af02cbdf-7ab5-40ea-9e59-22452e2a949a", + "display_name": "af02cbdf-7ab5-40ea-9e59-22452e2a949a", + "august": 145.61000000000001, + "february": 26.660000000000000, + "november": 42.049999999999997 + }, + "south": { + "user_data": {}, + "march": 0.0, + "january": 0.0, + "april": 0.0, + "july": 0.0, + "october": 0.0, + "may": 0.0, + "december": 0.0, + "june": 0.0, + "september": 0.0, + "identifier": "4acdc522-7818-4d8b-816f-52f883a0080f", + "display_name": "4acdc522-7818-4d8b-816f-52f883a0080f", + "august": 0.0, + "february": 0.0, + "november": 0.0 + }, + "glob": { + "user_data": {}, + "march": 66.659999999999997, + "january": 0.0, + "april": 131.66000000000000, + "july": 200.0, + "october": 74.319999999999993, + "may": 149.97000000000000, + "december": 0.0, + "june": 165.0, + "september": 104.03000000000000, + "identifier": "b9f956b4-e631-41e2-99e8-39b36945dda5", + "display_name": "b9f956b4-e631-41e2-99e8-39b36945dda5", + "august": 145.61000000000001, + "february": 26.660000000000000, + "november": 42.049999999999997 + }, + "north": { + "user_data": {}, + "march": 66.659999999999997, + "january": 0.0, + "april": 131.66000000000000, + "july": 200.0, + "october": 74.319999999999993, + "may": 149.97000000000000, + "december": 0.0, + "june": 165.0, + "september": 104.03000000000000, + "identifier": "9ca5485d-a997-49a9-8fcb-90db9ad3721e", + "display_name": "9ca5485d-a997-49a9-8fcb-90db9ad3721e", + "august": 145.61000000000001, + "february": 26.660000000000000, + "november": 42.049999999999997 + }, + "east": { + "user_data": {}, + "march": 66.659999999999997, + "january": 0.0, + "april": 131.66000000000000, + "july": 200.0, + "october": 74.319999999999993, + "may": 149.97000000000000, + "december": 0.0, + "june": 165.0, + "september": 104.03000000000000, + "identifier": "faab6b1c-8add-466c-a3b7-03a28a2990c8", + "display_name": "faab6b1c-8add-466c-a3b7-03a28a2990c8", + "august": 145.61000000000001, + "february": 26.660000000000000, + "november": 42.049999999999997 }, - "type": "ElectricEquipmentPhProperties" + "identifier": "4b31a25b-d967-4be5-a86f-c8b17837f6ec", + "display_name": "4b31a25b-d967-4be5-a86f-c8b17837f6ec" }, - "type": "ElectricEquipmentProperties" - } - } - }, - "ph": { - "type": "RoomPhPropertiesAbridged", - "ph_bldg_segment_id": "19f7b0a4-8d2d-4aac-8958-34d179c217ba", - "specific_heat_capacity": "1-LIGHTWEIGHT", - "ph_foundations": [], - "spaces": [ - { - "quantity": 1, - "number": "101", - "identifier": "453c4b0f-ceb7-49e5-a974-73e905d51ca6", - "wufi_type": 99, - "volumes": [ - { - "identifier": "bf0bd915-3a4c-40db-a86e-1294337cbac9", - "avg_ceiling_height": 2.75, - "geometry": [ - { - "boundary": [ - [ - -0.12690121986096739, - -9.3870163468138124, - 2.75 - ], - [ - 0.44613776643990277, - -6.1371507618735270, - 2.75 - ], - [ - 0.44613776643990277, - -6.1371507618735270, - 0.0 - ], - [ - -0.12690121986096739, - -9.3870163468138124, - 0.0 - ] - ], - "plane": { - "type": "Plane", - "n": [ - -0.98480775301220813, - 0.17364817766693041, - 0.0 - ], - "o": [ - -0.12690121986096739, - -9.3870163468138124, - 2.75 - ], - "x": [ - 0.17364817766693041, - 0.98480775301220813, - 0.0 - ] - }, - "type": "Face3D" - }, - { - "boundary": [ - [ - 0.44613776643990277, - -6.1371507618735270, - 2.75 - ], - [ - 3.6960033513801895, - -6.7101897481743960, - 2.75 - ], - [ - 3.6960033513801895, - -6.7101897481743960, - 0.0 - ], - [ - 0.44613776643990277, - -6.1371507618735270, - 0.0 - ] - ], - "plane": { - "type": "Plane", - "n": [ - 0.17364817766692997, - 0.98480775301220813, - 0.0 - ], - "o": [ - 0.44613776643990277, - -6.1371507618735270, - 2.75 - ], - "x": [ - 0.98480775301220813, - -0.17364817766692997, - 0.0 - ] - }, - "type": "Face3D" - }, - { - "boundary": [ - [ - 3.6960033513801895, - -6.7101897481743960, - 2.75 - ], - [ - 3.1229643650793193, - -9.9600553331146831, - 2.75 - ], - [ - 3.1229643650793193, - -9.9600553331146831, - 0.0 - ], - [ - 3.6960033513801895, - -6.7101897481743960, - 0.0 - ] - ], - "plane": { - "type": "Plane", - "n": [ - 0.98480775301220813, - -0.17364817766693033, - 0.0 - ], - "o": [ - 3.6960033513801895, - -6.7101897481743960, - 2.75 - ], - "x": [ - -0.17364817766693033, - -0.98480775301220813, - 0.0 - ] - }, - "type": "Face3D" - }, - { - "boundary": [ - [ - 3.1229643650793193, - -9.9600553331146831, - 2.75 - ], - [ - -0.12690121986096739, - -9.3870163468138124, - 2.75 - ], - [ - -0.12690121986096739, - -9.3870163468138124, - 0.0 - ], - [ - 3.1229643650793193, - -9.9600553331146831, - 0.0 - ] - ], - "plane": { - "type": "Plane", - "n": [ - -0.1736481776669305, - -0.98480775301220802, - 0.0 - ], - "o": [ - 3.1229643650793193, - -9.9600553331146831, - 2.75 - ], - "x": [ - -0.98480775301220802, - 0.1736481776669305, - 0.0 - ] - }, - "type": "Face3D" - }, - { - "boundary": [ - [ - 0.44613776643990277, - -6.1371507618735270, - 0.0 - ], - [ - 3.6960033513801895, - -6.7101897481743960, - 0.0 - ], - [ - 3.1229643650793193, - -9.9600553331146831, - 0.0 - ], - [ - -0.12690121986096739, - -9.3870163468138124, - 0.0 - ] - ], - "plane": { - "type": "Plane", - "n": [ - 0.0, - 0.0, - -1.0 - ], - "o": [ - 0.44613776643990277, - -6.1371507618735270, - 0.0 - ], - "x": [ - 1.0, - 0.0, - 0.0 - ] - }, - "type": "Face3D" - }, - { - "boundary": [ - [ - 3.1229643650793193, - -9.9600553331146831, - 2.75 - ], - [ - 3.6960033513801895, - -6.7101897481743960, - 2.75 - ], - [ - 0.44613776643990277, - -6.1371507618735270, - 2.75 - ], - [ - -0.12690121986096739, - -9.3870163468138124, - 2.75 - ] - ], - "plane": { - "type": "Plane", - "n": [ - 0.0, - 0.0, - 1.0 - ], - "o": [ - 3.1229643650793193, - -9.9600553331146831, - 2.75 - ], - "x": [ - 1.0, - 0.0, - 0.0 - ] - }, - "type": "Face3D" - } - ], - "display_name": "bf0bd915-3a4c-40db-a86e-1294337cbac9", + "ground": { + "user_data": {}, + "ground_thermal_conductivity": 2, + "flow_rate_groundwater": 0.050000000000000003, + "identifier": "1a9da042-394c-41e1-99b6-26fb2dac56ad", + "display_name": "1a9da042-394c-41e1-99b6-26fb2dac56ad", + "ground_density": 2000, + "ground_heat_capacity": 1000, + "depth_groundwater": 3 + }, + "peak_loads": { + "user_data": {}, + "heat_load_1": { "user_data": {}, - "floor": { - "identifier": "607bd093-c511-4177-b731-2c3f505c0ce3", - "floor_segments": [ - { - "identifier": "41e2e1f7-2bce-471e-a9b1-fe3c8df934d4", - "weighting_factor": 1.0, - "geometry": { - "boundary": [ - [ - -0.12690121986096739, - -9.3870163468138124, - 0.0 - ], - [ - 3.1229643650793193, - -9.9600553331146831, - 0.0 - ], - [ - 3.6960033513801895, - -6.7101897481743960, - 0.0 - ], - [ - 0.44613776643990277, - -6.1371507618735270, - 0.0 - ] - ], - "plane": { - "type": "Plane", - "n": [ - 0.0, - 0.0, - 1.0 - ], - "o": [ - -0.12690121986096739, - -9.3870163468138124, - 0.0 - ], - "x": [ - 1.0, - 0.0, - 0.0 - ] - }, - "type": "Face3D" - }, - "display_name": "41e2e1f7-2bce-471e-a9b1-fe3c8df934d4", - "user_data": {}, - "floor_area": 10.890000000000001, - "weighted_floor_area": 10.890000000000001, - "reference_point": { - "type": "Point3D", - "y": -8.0486030474941046, - "x": 1.7845510657596111, - "z": 0.11000000000000001 - } - } - ], - "geometry": { - "boundary": [ - [ - -0.12690121986096739, - -9.3870163468138124, - 0.0 - ], - [ - 3.1229643650793193, - -9.9600553331146831, - 0.0 - ], - [ - 3.6960033513801895, - -6.7101897481743960, - 0.0 - ], - [ - 0.44613776643990277, - -6.1371507618735270, - 0.0 - ] - ], - "plane": { - "type": "Plane", - "n": [ - 0.0, - 0.0, - 1.0 - ], - "o": [ - -0.12690121986096739, - -9.3870163468138124, - 0.0 - ], - "x": [ - 1.0, - 0.0, - 0.0 - ] - }, - "type": "Face3D" - }, - "display_name": "607bd093-c511-4177-b731-2c3f505c0ce3", - "user_data": {} - } - } - ], - "name": "Room_7", - "user_data": {}, - "properties": { - "type": "SpaceProperties", - "energy": { - "type": "SpaceEnergyProperties", - "id_num": 0 - }, - "ph": { - "_v_eta": null, - "type": "SpacePhProperties", - "_v_tran": null, - "_v_sup": null, - "id_num": 0 - } - } - } - ] - }, - "ph_hvac": { - "supportive_devices": [ - { - "quantity": 3, - "identifier": "50507183-4a8b-4b08-a6e8-0ccc514e13ae", - "norm_energy_demand_W": 123.0, - "device_type": 10, - "device_class_name": "PhSupportiveDevice", - "in_conditioned_space": false, - "annual_period_operation_khrs": 6.5, - "display_name": "Example Device", - "user_data": {} - } - ], - "type": "RoomPhHvacPropertiesAbridged", - "heat_pump_systems": [ - { - "COP_2": 4.1200000000000001, - "ambient_temp_2": 12.0, - "COP_1": 3.3999999999999999, - "identifier": "42ecdb1e-f82f-4b6a-b4ac-492a33d94015", - "heat_pump_class_name": "PhHeatPumpRatedMonthly", - "ambient_temp_1": -3.3300000000000001, - "percent_coverage": 1.0, - "cooling_params": { - "dehumidification": { - "useful_heat_loss": false, - "identifier": "1ecc8a2c-eeba-47cf-9028-907e31e353f7", - "annual_COP": 2.0, - "used": true, - "display_name": "_unnamed_dehumidification_cooling__fab60b04", - "user_data": {} + "rad_east": 0.0, + "rad_global": 0.0, + "rad_south": 0.0, + "ground_temp": null, + "temp": 0.0, + "rad_north": 0.0, + "rad_west": 0.0, + "sky_temp": null, + "identifier": "780e33d4-33c9-4810-8af6-1e781b443f14", + "display_name": "test_peak_heat_1", + "dewpoint": null }, - "percent_coverage": 1.0, - "ventilation": { - "identifier": "21364d73-507c-44fd-8432-55b872dbe6ad", - "annual_COP": 4.0, - "min_coil_temp": 12.0, - "used": false, - "display_name": "21364d73-507c-44fd-8432-55b872dbe6ad", + "heat_load_2": { "user_data": {}, - "capacity": 10.0, - "single_speed": false + "rad_east": 0.0, + "rad_global": 0.0, + "rad_south": 0.0, + "ground_temp": null, + "temp": 0.0, + "rad_north": 0.0, + "rad_west": 0.0, + "sky_temp": null, + "identifier": "adfc6a47-eb9e-41a2-b707-328a30b0b39c", + "display_name": "test_peak_heat_2", + "dewpoint": null }, - "panel": { - "identifier": "643be117-1afd-49ca-b9ec-3ec55d0b33e9", - "annual_COP": 4.0, - "used": false, - "display_name": "643be117-1afd-49ca-b9ec-3ec55d0b33e9", - "user_data": {} + "cooling_load_2": { + "user_data": {}, + "rad_east": 0.0, + "rad_global": 0.0, + "rad_south": 0.0, + "ground_temp": null, + "temp": 0.0, + "rad_north": 0.0, + "rad_west": 0.0, + "sky_temp": null, + "identifier": "f64b8ea1-cdf5-4ccb-a297-bcf228bad902", + "display_name": "test_peak_cooling_2", + "dewpoint": null }, - "recirculation": { - "identifier": "75d70b72-3ce9-48ac-af28-0d35b1a366b1", - "annual_COP": 2.0, - "min_coil_temp": 12.0, - "flow_rate_m3_hr": 100.08000000000000, - "used": true, - "display_name": "_unnamed_recirculation_cooling__083a780a", + "cooling_load_1": { "user_data": {}, - "capacity": 10.0, - "flow_rate_variable": true, - "single_speed": false - } + "rad_east": 0.0, + "rad_global": 0.0, + "rad_south": 0.0, + "ground_temp": null, + "temp": 0.0, + "rad_north": 0.0, + "rad_west": 0.0, + "sky_temp": null, + "identifier": "5d34bd3f-28a9-42df-9880-9f084ccfc565", + "display_name": "test_peak_cooling_1", + "dewpoint": null + }, + "identifier": "82d4c6c0-74d5-4338-8f05-f452b0afdc1e", + "display_name": "82d4c6c0-74d5-4338-8f05-f452b0afdc1e" }, - "display_name": "Example_Heat_Pump", - "user_data": {} - }, - { - "COP_2": 2.5, - "ambient_temp_2": 8.3330000000000002, - "COP_1": 2.5, - "identifier": "62f2268c-300a-48e7-b3d3-ecf35cc4f788", - "heat_pump_class_name": "PhHeatPumpRatedMonthly", - "ambient_temp_1": -8.3330000000000002, - "percent_coverage": 1.0, - "cooling_params": { - "dehumidification": { - "useful_heat_loss": false, - "identifier": "52d7e7f6-c5d1-417a-8078-1d32eb76805e", - "annual_COP": 4.0, - "used": false, - "display_name": "52d7e7f6-c5d1-417a-8078-1d32eb76805e", - "user_data": {} + "summer_daily_temperature_swing": 10.0, + "identifier": "249eac58-29ea-4b2b-9e33-91c8ac8d784e", + "display_name": "My_Test_Climate", + "average_wind_speed": 4.0, + "monthly_temps": { + "user_data": {}, + "air_temps": { + "user_data": {}, + "march": 10.0, + "january": 0.0, + "april": 19.75, + "july": 21.230000000000000, + "october": 7.7800000000000002, + "may": 21.5, + "december": 4.3399999999999999, + "june": 24.75, + "september": 11.740000000000000, + "identifier": "00c1319e-ca96-49a1-a6e9-06cd48469cb0", + "display_name": "00c1319e-ca96-49a1-a6e9-06cd48469cb0", + "august": 15.850000000000000, + "february": 4.0, + "november": 6.0700000000000003 }, - "percent_coverage": 1.0, - "ventilation": { - "identifier": "dcb1e93c-7a1f-42f1-9932-5da5883fd728", - "annual_COP": 4.0, - "min_coil_temp": 12.0, - "used": false, - "display_name": "dcb1e93c-7a1f-42f1-9932-5da5883fd728", + "dewpoints": { "user_data": {}, - "capacity": 10.0, - "single_speed": false + "march": 6.6699999999999999, + "january": 0.0, + "april": 7.9600000000000000, + "july": 4.9500000000000002, + "october": 1.5400000000000000, + "may": 5.1299999999999999, + "december": 4.2800000000000002, + "june": 6.9500000000000002, + "september": 1.0500000000000000, + "identifier": "1b62e4dd-5bad-49a2-bd67-0a64b3eafd42", + "display_name": "1b62e4dd-5bad-49a2-bd67-0a64b3eafd42", + "august": 4.1399999999999997, + "february": 2.6699999999999999, + "november": 1.6200000000000001 }, - "panel": { - "identifier": "97782c4d-79a4-4bed-b12d-f6df89a03579", - "annual_COP": 4.0, - "used": false, - "display_name": "97782c4d-79a4-4bed-b12d-f6df89a03579", - "user_data": {} + "identifier": "4c0ae547-efc9-4431-b45d-f2cbf332b9a1", + "display_name": "4c0ae547-efc9-4431-b45d-f2cbf332b9a1", + "sky_temps": { + "user_data": {}, + "march": 8.3300000000000001, + "january": 0.0, + "april": 16.460000000000001, + "july": 17.699999999999999, + "october": 6.4800000000000004, + "may": 17.920000000000002, + "december": 3.6200000000000001, + "june": 20.620000000000001, + "september": 9.7799999999999994, + "identifier": "75507846-f9c3-4418-bc9a-9524643ff025", + "display_name": "75507846-f9c3-4418-bc9a-9524643ff025", + "august": 13.210000000000001, + "february": 3.3300000000000001, + "november": 5.0599999999999996 }, - "recirculation": { - "identifier": "342afc9a-17c9-40d6-b323-64ceed941a3c", - "annual_COP": 4.0, - "min_coil_temp": 12.0, - "flow_rate_m3_hr": 100.0, - "used": false, - "display_name": "342afc9a-17c9-40d6-b323-64ceed941a3c", + "ground_temps": { "user_data": {}, - "capacity": 10.0, - "flow_rate_variable": true, - "single_speed": false + "march": 0.0, + "january": 0.0, + "april": 0.0, + "july": 0.0, + "october": 0.0, + "may": 0.0, + "december": 0.0, + "june": 0.0, + "september": 0.0, + "identifier": "45988555-a7ce-493b-a1ee-1141545b01b8", + "display_name": "45988555-a7ce-493b-a1ee-1141545b01b8", + "august": 0.0, + "february": 0.0, + "november": 0.0 } - }, - "display_name": "None", - "user_data": {} - } - ], - "heating_systems": [], - "exhaust_vent_devices": [ - { - "quantity": 1, - "annual_runtime_minutes": 7.625, - "identifier": "9f76467c-2325-46a6-9ad7-4d7088197c44", - "device_class_name": "ExhaustVentDryer", - "display_name": "example_dryer_vent", + } + }, + "phpp_library_codes": { "user_data": {}, - "exhaust_flow_rate_m3s": 123.0 - } - ], - "ventilation_system": { - "sys_type": 1, - "identifier": "d2f7d12d-d4a2-4dc3-a6e3-15b3767201e0", - "supply_ducting": [ - { - "identifier": "de19ed8e-9e6e-4ef8-b598-cf50244b5a19", - "display_name": "__unnamed_vent_duct__", - "user_data": {}, - "segments": { - "6347b2fe-5b4d-4be6-a77f-3bc07bf92672": { - "identifier": "6347b2fe-5b4d-4be6-a77f-3bc07bf92672", - "insulation_conductivity": 0.040000000000000001, - "diameter": 0.17600000000000002, - "geometry": { - "type": "LineSegment3D", - "p": [ - 0.0, - -5.5, - 0.0 - ], - "v": [ - 0.0, - 0.0, - 1.1000000000000001 - ] - }, - "display_name": "6347b2fe-5b4d-4be6-a77f-3bc07bf92672", - "user_data": {}, - "insulation_reflective": true, - "height": null, - "insulation_thickness": 0.02794, - "width": null - } - }, - "duct_type": 1 - } - ], - "exhaust_ducting": [ - { - "identifier": "2d3324ad-7a35-42d6-90a2-7d799551bdd7", - "display_name": "Test_Vent_System_exhaust", - "user_data": {}, - "segments": { - "0908a6fd-d377-4cc5-a114-761b1857bae0": { - "identifier": "0908a6fd-d377-4cc5-a114-761b1857bae0", - "insulation_conductivity": 0.040000000000000001, - "diameter": 0.17600000000000002, - "geometry": { - "type": "LineSegment3D", - "p": [ - 0.0, - -5.5, - 0.0 - ], - "v": [ - 1.0832885283134288, - -0.19101299543362338, - 0.0 - ] - }, - "display_name": "0908a6fd-d377-4cc5-a114-761b1857bae0", - "user_data": {}, - "insulation_reflective": true, - "height": null, - "insulation_thickness": 0.02794, - "width": null - } - }, - "duct_type": 2 - } - ], - "ventilation_unit": { - "quantity": 1, - "latent_heat_recovery": 0.0, - "frost_protection_reqd": true, - "identifier": "beed6a32-71ca-4855-84ee-98ed7312a83f", - "sensible_heat_recovery": 0.82999999999999996, - "electric_efficiency": 0.33300000000000002, - "in_conditioned_space": true, - "temperature_below_defrost_used": -5.0, - "display_name": "Test_Unit", - "user_data": {} + "dataset_name": "US0055b-New York", + "country_code": "US-United States of America", + "region_code": "New York", + "identifier": "a7f9a8ae-7aa3-44c4-9e99-95230a224f7b", + "display_name": "US0055b-New York" }, - "display_name": "Test_Vent_System", - "user_data": {}, - "id_num": 0 + "identifier": "cd0ded35-535f-4cf8-9f43-50884ec86c4b", + "display_name": "_unnamed_" }, - "renewable_devices": [ - { - "utilization_factor": 1.0, - "identifier": "4108c5ab-61ca-455f-bb33-3bdde72945c4", - "device_typename": "PhPhotovoltaicDevice", - "photovoltaic_renewable_energy": 1000.0, - "percent_coverage": 1.0, - "array_size": 0.0, - "display_name": "my_PV_system", - "user_data": {} - } - ], - "hot_water_system": { - "tank_solar": { - "quantity": 1, - "identifier": "0a5084de-b18b-40a8-9049-ba31e15af4b4", - "_tank_type": { - "value": "2-DHW ONLY" - }, - "storage_loss_rate": 0.0, - "room_temp": 20, - "standby_losses": 4.0, - "solar_losses": 0.0, - "in_conditioned_space": true, - "solar_connection": false, - "storage_capacity": 300, - "water_temp": 60, - "display_name": "_unnamed_hw_tank_", - "user_data": {}, - "standby_fraction": 0.29999999999999999 - }, - "distribution_piping": { - "52da9111-c954-42b0-ae14-f6dbb9200dc2": { - "pipe_element": { - "segments": { - "c09cb591-948b-427a-98dc-b4a82ff4c4b9": { - "water_temp_c": 60.0, - "insulation_thickness_mm": 0.0, - "insulation_quality": null, - "identifier": "c09cb591-948b-427a-98dc-b4a82ff4c4b9", - "daily_period": 24, - "insulation_conductivity": 0.040000000000000001, - "diameter_mm": 38.099999999999994, - "material_value": "6-PEX", - "geometry": { - "type": "LineSegment3D", - "p": [ - 0.0, - -5.5, - 0.0 - ], - "v": [ - 0.0, - 0.0, - 5.5 - ] - }, - "display_name": "c09cb591-948b-427a-98dc-b4a82ff4c4b9", - "user_data": {}, - "insulation_reflective": false - } - }, - "display_name": "656084b1-6699-4039-9c70-4259b9ee9aaa", - "user_data": {}, - "identifier": "656084b1-6699-4039-9c70-4259b9ee9aaa" - }, - "identifier": "52da9111-c954-42b0-ae14-f6dbb9200dc2", - "branches": { - "34c0656a-8c43-4f3b-b40d-dececebb8ba9": { - "pipe_element": { - "segments": { - "03ca1a3f-9acd-42ae-977c-64275f41c079": { - "water_temp_c": 60.0, - "insulation_thickness_mm": 0.0, - "insulation_quality": null, - "identifier": "03ca1a3f-9acd-42ae-977c-64275f41c079", - "daily_period": 24, - "insulation_conductivity": 0.040000000000000001, - "diameter_mm": 19.049999999999997, - "material_value": "3-COPPER_K", - "geometry": { - "type": "LineSegment3D", - "p": [ - 0.0, - -5.5, - 0.0 - ], - "v": [ - 0.0, - 0.0, - 5.5 - ] - }, - "display_name": "03ca1a3f-9acd-42ae-977c-64275f41c079", - "user_data": {}, - "insulation_reflective": false - } - }, - "display_name": "499b3dc8-7ea9-4723-b5d4-661e52e8a115", - "user_data": {}, - "identifier": "499b3dc8-7ea9-4723-b5d4-661e52e8a115" - }, - "fixtures": { - "681f4d66-4e1e-47bd-8991-fbe0d7331670": { - "segments": { - "cfb54179-b9db-4d18-a4f9-955956f26f5d": { - "water_temp_c": 55.0, - "insulation_thickness_mm": 0.0, - "insulation_quality": null, - "identifier": "cfb54179-b9db-4d18-a4f9-955956f26f5d", - "daily_period": 24, - "insulation_conductivity": 0.040000000000000001, - "diameter_mm": 9.5249999999999986, - "material_value": "1-COPPER_M", - "geometry": { - "type": "LineSegment3D", - "p": [ - 0.0, - -5.5, - 0.0 - ], - "v": [ - 0.0, - 0.0, - 5.5 - ] - }, - "display_name": "cfb54179-b9db-4d18-a4f9-955956f26f5d", - "user_data": {}, - "insulation_reflective": false - } - }, - "display_name": "Test_Fixture", - "user_data": {}, - "identifier": "681f4d66-4e1e-47bd-8991-fbe0d7331670" - } - }, - "identifier": "34c0656a-8c43-4f3b-b40d-dececebb8ba9", - "display_name": "Test_Branch", - "user_data": {} - } - }, - "multiplier": 1, - "display_name": "Test_Trunk", - "user_data": {} - } - }, - "identifier": "43d66e54-1272-4d7e-97e9-9b1334ec0cc0", - "type": "PhHvacHotWaterSystemPh", - "number_tap_points": 1, - "heaters": { - "9435601e-67e4-413f-9696-2a65e338c5d5": { - "total_system_perf_ratio": null, - "identifier": "9435601e-67e4-413f-9696-2a65e338c5d5", - "annual_COP": null, - "in_conditioned_space": true, - "percent_coverage": 1.0, - "heater_type": "PhHvacHotWaterHeaterHeatPump_Annual", - "display_name": "9435601e-67e4-413f-9696-2a65e338c5d5", - "user_data": {} - } - }, - "recirc_piping": { - "00c40aa7-3e15-46d9-9066-2f8bdbfa4f2d": { - "segments": { - "2ad4dc5c-21ab-415c-96ee-8f0cb0480660": { - "water_temp_c": 48.0, - "insulation_thickness_mm": 25.399999999999999, - "insulation_quality": null, - "identifier": "2ad4dc5c-21ab-415c-96ee-8f0cb0480660", - "daily_period": 23.0, - "insulation_conductivity": 0.040000000000000001, - "diameter_mm": 25.399999999999999, - "material_value": "2-COPPER_L", - "geometry": { - "type": "LineSegment3D", - "p": [ - 0.0, - -5.5, - 0.0 - ], - "v": [ - 0.0, - 0.0, - 1.1000000000000001 - ] - }, - "display_name": "2ad4dc5c-21ab-415c-96ee-8f0cb0480660", - "user_data": {}, - "insulation_reflective": true - } - }, - "display_name": "_unnamed_", - "user_data": {}, - "identifier": "00c40aa7-3e15-46d9-9066-2f8bdbfa4f2d" - } + "phi_certification": { + "user_data": {}, + "attributes": { + "tfa_override": null, + "certification_type": "1-PASSIVE HOUSE", + "occupancy_type": "1-STANDARD (ONLY FOR RESIDENTIAL BUILDINGS)", + "enerphit_type": "2-ENERGY DEMAND METHOD", + "ihg_type": "2-STANDARD", + "certification_class": "1-CLASSIC", + "retrofit_type": "1-NEW BUILDING", + "building_use_type": "10-DWELLING", + "phpp_version": 9, + "primary_energy_type": "1-PE (NON-RENEWABLE)", + "building_category_type": "1-RESIDENTIAL BUILDING" }, - "recirc_temp": 48.0, - "recirc_hours": 23, - "display_name": "SHW System_5a40001e", - "id_num": 0 + "display_name": "4f40f6f3-441e-4d5b-bdc1-6af4d9ce7b40", + "identifier": "4f40f6f3-441e-4d5b-bdc1-6af4d9ce7b40", + "phpp_version": 9 }, - "id_num": 0 + "summer_hrv_bypass_mode": { + "value": "2-TEMPERATURE CONTROLLED" + }, + "wind_exposure_type": { + "value": "1-SEVERAL_SIDES_EXPOSED_NO_SCREENING" + }, + "num_dwelling_units": 1 } - } + ] }, - { - "identifier": "Room_8_b1033aa6", - "type": "Room", - "display_name": "Room_8", - "story": "2", - "faces": [ + "energy": { + "type": "ModelEnergyProperties", + "shws": [], + "schedules": [ { - "boundary_condition": { - "type": "Outdoors", - "sun_exposure": true, - "wind_exposure": true, - "view_factor": { - "type": "Autocalculate" - } - }, - "identifier": "Room_8_b1033aa6..Face0", - "type": "Face", - "face_type": "Wall", - "geometry": { - "boundary": [ - [ - 12.999462339761147, - -7.7921559452034819, - 3.3000000000000003 + "type": "ScheduleRulesetAbridged", + "schedule_type_limit": "Activity Level", + "default_day_schedule": "Seated Adult Activity_Day Schedule", + "properties": { + "type": "ScheduleRulesetProperties", + "ph": { + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997, + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] + } + } + }, + "identifier": "Seated Adult Activity", + "day_schedules": [ + { + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ] ], - [ - 12.999462339761147, - -7.7921559452034819, - 0.0 + "values": [ + 120.0 ], - [ - 5.4164426415671443, - -6.4550649771681172, - 0.0 + "interpolate": false, + "identifier": "Seated Adult Activity_Day Schedule" + } + ] + }, + { + "type": "ScheduleRulesetAbridged", + "schedule_type_limit": "Fractional", + "default_day_schedule": "Always On_Day Schedule", + "properties": { + "type": "ScheduleRulesetProperties", + "ph": { + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997, + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] + } + } + }, + "identifier": "Always On", + "day_schedules": [ + { + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ] ], - [ - 5.4164426415671443, - -6.4550649771681172, - 3.3000000000000003 - ] - ], - "plane": { - "type": "Plane", - "n": [ - 0.17364817766693047, - 0.98480775301220802, - 0.0 + "values": [ + 1.0 ], - "o": [ - 5.4164426415671443, - -6.4550649771681172, - 3.3000000000000003 + "interpolate": false, + "identifier": "Always On_Day Schedule" + } + ] + }, + { + "type": "ScheduleRulesetAbridged", + "holiday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", + "schedule_type_limit": "Fractional", + "schedule_rules": [ + { + "type": "ScheduleRuleAbridged", + "apply_friday": true, + "apply_sunday": false, + "apply_saturday": false, + "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", + "apply_thursday": true, + "end_date": [ + 12, + 31 ], - "x": [ - 0.98480775301220802, - -0.17364817766693047, - 0.0 - ] + "apply_tuesday": true, + "start_date": [ + 1, + 1 + ], + "apply_wednesday": true, + "apply_monday": true }, - "type": "Face3D" - }, - "display_name": "Room_8_b1033aa6..Face0", - "apertures": [ { - "boundary_condition": { - "type": "Outdoors", - "sun_exposure": true, - "wind_exposure": true, - "view_factor": { - "type": "Autocalculate" - } - }, - "identifier": "Room_8_b1033aa6..Face0_Glz0", - "type": "Aperture", - "geometry": { - "boundary": [ - [ - 11.751374618646405, - -7.5720844056800098, - 2.7568536488623963 - ], - [ - 11.751374618646405, - -7.5720844056800098, - 0.54314635113760423 - ], - [ - 6.6645303626818855, - -6.6751365166915884, - 0.54314635113760423 - ], - [ - 6.6645303626818855, - -6.6751365166915884, - 2.7568536488623963 - ] - ], - "plane": { - "type": "Plane", - "n": [ - 0.17364817766693033, - 0.98480775301220813, - 0.0 - ], - "o": [ - 6.6645303626818855, - -6.6751365166915884, - 2.7568536488623963 - ], - "x": [ - 0.98480775301220813, - -0.17364817766693033, - 0.0 - ] - }, - "type": "Face3D" - }, - "display_name": "Room_8_b1033aa6..Face0_Glz0", - "is_operable": false, - "properties": { - "radiance": { - "type": "ApertureRadiancePropertiesAbridged" - }, - "type": "AperturePropertiesAbridged", - "energy": { - "type": "ApertureEnergyPropertiesAbridged" - }, - "ph": { - "winter_shading_factor": 0.75, - "install_depth": 0.1016, - "type": "AperturePhPropertiesAbridged", - "summer_shading_factor": 0.75, - "id_num": 0, - "variant_type": "_unnamed_type_", - "default_monthly_shading_correction_factor": 1.0 - }, - "ph_hvac": { - "type": "AperturePhHvacProperties" - } - } + "type": "ScheduleRuleAbridged", + "apply_friday": false, + "apply_sunday": false, + "apply_saturday": true, + "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", + "apply_thursday": false, + "end_date": [ + 12, + 31 + ], + "apply_tuesday": false, + "start_date": [ + 1, + 1 + ], + "apply_wednesday": false, + "apply_monday": false } ], + "summer_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", + "default_day_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", "properties": { - "radiance": { - "type": "FaceRadiancePropertiesAbridged" - }, - "type": "FacePropertiesAbridged", - "energy": { - "type": "FaceEnergyPropertiesAbridged" - }, + "type": "ScheduleRulesetProperties", "ph": { - "type": "FacePhPropertiesAbridged", - "id_num": 0 - }, - "ph_hvac": { - "type": "FacePhHvacProperties" - } - } - }, - { - "boundary_condition": { - "type": "Outdoors", - "sun_exposure": true, - "wind_exposure": true, - "view_factor": { - "type": "Autocalculate" + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997, + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] + } } }, - "identifier": "Room_8_b1033aa6..Face1", - "type": "Face", - "face_type": "Wall", - "geometry": { - "boundary": [ - [ - 12.235410358026652, - -12.125310058457197, - 3.3000000000000003 - ], - [ - 12.235410358026652, - -12.125310058457197, - 0.0 + "identifier": "Generic Office Lighting", + "day_schedules": [ + { + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ], + [ + 6, + 0 + ], + [ + 18, + 0 + ] ], - [ - 12.999462339761147, - -7.7921559452034819, - 0.0 + "values": [ + 0.050000000000000003, + 0.04311628, + 0.050000000000000003 ], - [ - 12.999462339761147, - -7.7921559452034819, - 3.3000000000000003 - ] - ], - "plane": { - "type": "Plane", - "n": [ - 0.98480775301220802, - -0.17364817766693064, - 0.0 + "interpolate": false, + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun" + }, + { + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ] ], - "o": [ - 12.999462339761147, - -7.7921559452034819, - 3.3000000000000003 + "values": [ + 1.0 ], - "x": [ - -0.17364817766693064, - -0.98480775301220802, - 0.0 - ] + "interpolate": false, + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn" }, - "type": "Face3D" - }, - "display_name": "Room_8_b1033aa6..Face1", - "apertures": [ { - "boundary_condition": { - "type": "Outdoors", - "sun_exposure": true, - "wind_exposure": true, - "view_factor": { - "type": "Autocalculate" - } - }, - "identifier": "Room_8_b1033aa6..Face1_Glz0", - "type": "Aperture", - "geometry": { - "boundary": [ - [ - 12.361165523468637, - -11.412117074963060, - 2.7568536488623963 - ], - [ - 12.361165523468637, - -11.412117074963060, - 0.54314635113760423 - ], - [ - 12.873707174319163, - -8.5053489286976198, - 0.54314635113760423 - ], - [ - 12.873707174319163, - -8.5053489286976198, - 2.7568536488623963 - ] - ], - "plane": { - "type": "Plane", - "n": [ - 0.98480775301220813, - -0.17364817766693014, - 0.0 - ], - "o": [ - 12.873707174319163, - -8.5053489286976198, - 2.7568536488623963 - ], - "x": [ - -0.17364817766693014, - -0.98480775301220813, - 0.0 - ] - }, - "type": "Face3D" - }, - "display_name": "Room_8_b1033aa6..Face1_Glz0", - "is_operable": false, - "properties": { - "radiance": { - "type": "ApertureRadiancePropertiesAbridged" - }, - "type": "AperturePropertiesAbridged", - "energy": { - "type": "ApertureEnergyPropertiesAbridged" - }, - "ph": { - "winter_shading_factor": 0.75, - "install_depth": 0.1016, - "type": "AperturePhPropertiesAbridged", - "summer_shading_factor": 0.75, - "id_num": 0, - "variant_type": "_unnamed_type_", - "default_monthly_shading_correction_factor": 1.0 - }, - "ph_hvac": { - "type": "AperturePhHvacProperties" - } - } - } - ], - "properties": { - "radiance": { - "type": "FaceRadiancePropertiesAbridged" - }, - "type": "FacePropertiesAbridged", - "energy": { - "type": "FaceEnergyPropertiesAbridged" - }, - "ph": { - "type": "FacePhPropertiesAbridged", - "id_num": 0 - }, - "ph_hvac": { - "type": "FacePhHvacProperties" - } - } - }, - { - "boundary_condition": { - "type": "Outdoors", - "sun_exposure": true, - "wind_exposure": true, - "view_factor": { - "type": "Autocalculate" - } - }, - "identifier": "Room_8_b1033aa6..Face2", - "type": "Face", - "face_type": "Wall", - "geometry": { - "boundary": [ - [ - 4.6523906598326512, - -10.788219090421832, - 3.3000000000000003 - ], - [ - 4.6523906598326512, - -10.788219090421832, - 0.0 + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ] ], - [ - 12.235410358026652, - -12.125310058457197, + "values": [ 0.0 ], - [ - 12.235410358026652, - -12.125310058457197, - 3.3000000000000003 - ] - ], - "plane": { - "type": "Plane", - "n": [ - -0.17364817766693064, - -0.98480775301220802, - 0.0 + "interpolate": false, + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn" + }, + { + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ], + [ + 6, + 0 + ], + [ + 8, + 0 + ], + [ + 12, + 0 + ], + [ + 17, + 0 + ], + [ + 19, + 0 + ] ], - "o": [ - 12.235410358026652, - -12.125310058457197, - 3.3000000000000003 + "values": [ + 0.050000000000000003, + 0.08623256, + 0.25869767999999999, + 0.12934883999999999, + 0.04311628, + 0.050000000000000003 ], - "x": [ - -0.98480775301220802, - 0.17364817766693064, - 0.0 - ] + "interpolate": false, + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat" }, - "type": "Face3D" - }, - "display_name": "Room_8_b1033aa6..Face2", - "apertures": [ { - "boundary_condition": { - "type": "Outdoors", - "sun_exposure": true, - "wind_exposure": true, - "view_factor": { - "type": "Autocalculate" - } - }, - "identifier": "Room_8_b1033aa6..Face2_Glz0", - "type": "Aperture", - "geometry": { - "boundary": [ - [ - 5.9004783809473924, - -11.008290629945304, - 2.7568536488623963 - ], - [ - 5.9004783809473924, - -11.008290629945304, - 0.54314635113760423 - ], - [ - 10.987322636911911, - -11.905238518933727, - 0.54314635113760423 - ], - [ - 10.987322636911911, - -11.905238518933727, - 2.7568536488623963 - ] + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 ], - "plane": { - "type": "Plane", - "n": [ - -0.17364817766693069, - -0.98480775301220802, - 0.0 - ], - "o": [ - 10.987322636911911, - -11.905238518933727, - 2.7568536488623963 - ], - "x": [ - -0.98480775301220802, - 0.17364817766693069, - 0.0 - ] - }, - "type": "Face3D" - }, - "display_name": "Room_8_b1033aa6..Face2_Glz0", - "is_operable": false, - "properties": { - "radiance": { - "type": "ApertureRadiancePropertiesAbridged" - }, - "type": "AperturePropertiesAbridged", - "energy": { - "type": "ApertureEnergyPropertiesAbridged" - }, - "ph": { - "winter_shading_factor": 0.75, - "install_depth": 0.1016, - "type": "AperturePhPropertiesAbridged", - "summer_shading_factor": 0.75, - "id_num": 0, - "variant_type": "_unnamed_type_", - "default_monthly_shading_correction_factor": 1.0 - }, - "ph_hvac": { - "type": "AperturePhHvacProperties" - } - } + [ + 5, + 0 + ], + [ + 6, + 0 + ], + [ + 7, + 0 + ], + [ + 8, + 0 + ], + [ + 17, + 0 + ], + [ + 18, + 0 + ], + [ + 20, + 0 + ], + [ + 22, + 0 + ], + [ + 23, + 0 + ] + ], + "values": [ + 0.050000000000000003, + 0.10000000000000001, + 0.08623256, + 0.25869767999999999, + 0.77609304000000001, + 0.43116280000000001, + 0.25869767999999999, + 0.17246512, + 0.08623256, + 0.04311628 + ], + "interpolate": false, + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy" } ], - "properties": { - "radiance": { - "type": "FaceRadiancePropertiesAbridged" - }, - "type": "FacePropertiesAbridged", - "energy": { - "type": "FaceEnergyPropertiesAbridged" - }, - "ph": { - "type": "FacePhPropertiesAbridged", - "id_num": 0 - }, - "ph_hvac": { - "type": "FacePhHvacProperties" - } - } + "winter_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn" }, { - "boundary_condition": { - "type": "Surface", - "boundary_condition_objects": [ - "Room_7_a5ba7cbb..Face1", - "Room_7_a5ba7cbb" - ] - }, - "identifier": "Room_8_b1033aa6..Face3", - "type": "Face", - "face_type": "Wall", - "geometry": { - "boundary": [ - [ - 5.4164426415671443, - -6.4550649771681172, - 3.3000000000000003 - ], - [ - 5.4164426415671443, - -6.4550649771681172, - 0.0 + "type": "ScheduleRulesetAbridged", + "holiday_schedule": "OfficeMedium BLDG_OCC_SCH_Default", + "schedule_type_limit": "Fractional", + "schedule_rules": [ + { + "type": "ScheduleRuleAbridged", + "apply_friday": true, + "apply_sunday": false, + "apply_saturday": false, + "schedule_day": "OfficeMedium BLDG_OCC_SCH_Wkdy", + "apply_thursday": true, + "end_date": [ + 12, + 31 ], - [ - 4.6523906598326512, - -10.788219090421832, - 0.0 + "apply_tuesday": true, + "start_date": [ + 1, + 1 ], - [ - 4.6523906598326512, - -10.788219090421832, - 3.3000000000000003 - ] - ], - "plane": { - "type": "Plane", - "n": [ - -0.98480775301220813, - 0.1736481776669303, - 0.0 + "apply_wednesday": true, + "apply_monday": true + }, + { + "type": "ScheduleRuleAbridged", + "apply_friday": false, + "apply_sunday": false, + "apply_saturday": true, + "schedule_day": "OfficeMedium BLDG_OCC_SCH_Sat", + "apply_thursday": false, + "end_date": [ + 12, + 31 ], - "o": [ - 4.6523906598326512, - -10.788219090421832, - 3.3000000000000003 + "apply_tuesday": false, + "start_date": [ + 1, + 1 ], - "x": [ - 0.1736481776669303, - 0.98480775301220813, - 0.0 - ] - }, - "type": "Face3D" - }, - "display_name": "Room_8_b1033aa6..Face3", + "apply_wednesday": false, + "apply_monday": false + } + ], + "summer_designday_schedule": "OfficeMedium BLDG_OCC_SCH_SmrDsn", + "default_day_schedule": "OfficeMedium BLDG_OCC_SCH_Default", "properties": { - "radiance": { - "type": "FaceRadiancePropertiesAbridged" - }, - "type": "FacePropertiesAbridged", - "energy": { - "type": "FaceEnergyPropertiesAbridged" - }, + "type": "ScheduleRulesetProperties", "ph": { - "type": "FacePhPropertiesAbridged", - "id_num": 0 - }, - "ph_hvac": { - "type": "FacePhHvacProperties" + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997, + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] + } } - } - }, - { - "boundary_condition": { - "type": "Ground" }, - "identifier": "Room_8_b1033aa6..Face4", - "type": "Face", - "face_type": "Floor", - "geometry": { - "boundary": [ - [ - 12.999462339761147, - -7.7921559452034819, - 0.0 - ], - [ - 12.235410358026652, - -12.125310058457197, - 0.0 - ], - [ - 4.6523906598326512, - -10.788219090421832, - 0.0 + "identifier": "Generic Office Occupancy", + "day_schedules": [ + { + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ], + [ + 6, + 0 + ], + [ + 18, + 0 + ] ], - [ - 5.4164426415671443, - -6.4550649771681172, - 0.0 - ] - ], - "plane": { - "type": "Plane", - "n": [ - 0.0, + "values": [ 0.0, - -1.0 + 0.050000000000000003, + 0.0 ], - "o": [ - 12.999462339761147, - -7.7921559452034819, - 0.0 + "interpolate": false, + "identifier": "OfficeMedium BLDG_OCC_SCH_Default" + }, + { + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ], + [ + 6, + 0 + ], + [ + 22, + 0 + ] ], - "x": [ - 1.0, + "values": [ 0.0, - 0.0 - ] - }, - "type": "Face3D" - }, - "display_name": "Room_8_b1033aa6..Face4", - "properties": { - "radiance": { - "type": "FaceRadiancePropertiesAbridged" + 1.0, + 0.050000000000000003 + ], + "interpolate": false, + "identifier": "OfficeMedium BLDG_OCC_SCH_SmrDsn" }, - "type": "FacePropertiesAbridged", - "energy": { - "type": "FaceEnergyPropertiesAbridged" + { + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ] + ], + "values": [ + 0.0 + ], + "interpolate": false, + "identifier": "OfficeMedium BLDG_OCC_SCH_WntrDsn" }, - "ph": { - "type": "FacePhPropertiesAbridged", - "id_num": 0 + { + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ], + [ + 6, + 0 + ], + [ + 7, + 0 + ], + [ + 8, + 0 + ], + [ + 12, + 0 + ], + [ + 13, + 0 + ], + [ + 17, + 0 + ], + [ + 18, + 0 + ], + [ + 22, + 0 + ] + ], + "values": [ + 0.0, + 0.10000000000000001, + 0.20000000000000001, + 0.94999999999999996, + 0.5, + 0.94999999999999996, + 0.29999999999999999, + 0.10000000000000001, + 0.050000000000000003 + ], + "interpolate": false, + "identifier": "OfficeMedium BLDG_OCC_SCH_Wkdy" }, - "ph_hvac": { - "type": "FacePhHvacProperties" + { + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ], + [ + 6, + 0 + ], + [ + 8, + 0 + ], + [ + 12, + 0 + ], + [ + 17, + 0 + ], + [ + 19, + 0 + ] + ], + "values": [ + 0.0, + 0.10000000000000001, + 0.29999999999999999, + 0.10000000000000001, + 0.050000000000000003, + 0.0 + ], + "interpolate": false, + "identifier": "OfficeMedium BLDG_OCC_SCH_Sat" } - } + ], + "winter_designday_schedule": "OfficeMedium BLDG_OCC_SCH_WntrDsn" }, { - "boundary_condition": { - "type": "Outdoors", - "sun_exposure": true, - "wind_exposure": true, - "view_factor": { - "type": "Autocalculate" + "type": "ScheduleRulesetAbridged", + "holiday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", + "schedule_type_limit": "Temperature", + "schedule_rules": [ + { + "type": "ScheduleRuleAbridged", + "apply_friday": true, + "apply_sunday": false, + "apply_saturday": false, + "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", + "apply_thursday": true, + "end_date": [ + 12, + 31 + ], + "apply_tuesday": true, + "start_date": [ + 1, + 1 + ], + "apply_wednesday": true, + "apply_monday": true + }, + { + "type": "ScheduleRuleAbridged", + "apply_friday": false, + "apply_sunday": false, + "apply_saturday": true, + "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", + "apply_thursday": false, + "end_date": [ + 12, + 31 + ], + "apply_tuesday": false, + "start_date": [ + 1, + 1 + ], + "apply_wednesday": false, + "apply_monday": false + } + ], + "summer_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", + "default_day_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", + "properties": { + "type": "ScheduleRulesetProperties", + "ph": { + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997, + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] + } } }, - "identifier": "Room_8_b1033aa6..Face5", - "type": "Face", - "face_type": "RoofCeiling", - "geometry": { - "boundary": [ - [ - 5.4164426415671443, - -6.4550649771681172, - 3.3000000000000003 - ], - [ - 4.6523906598326512, - -10.788219090421832, - 3.3000000000000003 + "identifier": "Generic Office Heating", + "day_schedules": [ + { + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ] ], - [ - 12.235410358026652, - -12.125310058457197, - 3.3000000000000003 + "values": [ + 15.600000000000000 ], - [ - 12.999462339761147, - -7.7921559452034819, - 3.3000000000000003 - ] - ], - "plane": { - "type": "Plane", - "n": [ - 0.0, - 0.0, - 1.0 + "interpolate": false, + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default" + }, + { + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ] ], - "o": [ - 4.6523906598326512, - -10.788219090421832, - 3.3000000000000003 + "values": [ + 15.600000000000000 ], - "x": [ - 1.0, - 0.0, - 0.0 - ] + "interpolate": false, + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn" }, - "type": "Face3D" - }, - "display_name": "Room_8_b1033aa6..Face5", - "apertures": [ { - "boundary_condition": { - "type": "Outdoors", - "sun_exposure": true, - "wind_exposure": true, - "view_factor": { - "type": "Autocalculate" - } - }, - "identifier": "Room_8_b1033aa6..Face5_Glz0", - "type": "Aperture", - "geometry": { - "boundary": [ - [ - 6.4150573432965654, - -7.2854531438280699, - 3.3000000000000003 - ], - [ - 5.8747910058330852, - -10.349455801236152, - 3.3000000000000003 - ], - [ - 11.236795656297232, - -11.294921891797244, - 3.3000000000000003 - ], - [ - 11.777061993760713, - -8.2309192343891606, - 3.3000000000000003 - ] + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 ], - "plane": { - "type": "Plane", - "n": [ - 0.0, - 0.0, - 1.0 - ], - "o": [ - 11.236795656297232, - -11.294921891797244, - 3.3000000000000003 - ], - "x": [ - 1.0, - 0.0, - 0.0 - ] - }, - "type": "Face3D" - }, - "display_name": "Room_8_b1033aa6..Face5_Glz0", - "is_operable": false, - "properties": { - "radiance": { - "type": "ApertureRadiancePropertiesAbridged" - }, - "type": "AperturePropertiesAbridged", - "energy": { - "type": "ApertureEnergyPropertiesAbridged" - }, - "ph": { - "winter_shading_factor": 0.75, - "install_depth": 0.1016, - "type": "AperturePhPropertiesAbridged", - "summer_shading_factor": 0.75, - "id_num": 0, - "variant_type": "_unnamed_type_", - "default_monthly_shading_correction_factor": 1.0 - }, - "ph_hvac": { - "type": "AperturePhHvacProperties" - } - } - } - ], - "properties": { - "radiance": { - "type": "FaceRadiancePropertiesAbridged" - }, - "type": "FacePropertiesAbridged", - "energy": { - "type": "FaceEnergyPropertiesAbridged" + [ + 5, + 0 + ], + [ + 6, + 0 + ], + [ + 7, + 0 + ], + [ + 22, + 0 + ] + ], + "values": [ + 15.600000000000000, + 17.600000000000001, + 19.600000000000001, + 21.0, + 15.600000000000000 + ], + "interpolate": false, + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn" }, - "ph": { - "type": "FacePhPropertiesAbridged", - "id_num": 0 + { + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ], + [ + 5, + 0 + ], + [ + 6, + 0 + ], + [ + 7, + 0 + ], + [ + 22, + 0 + ] + ], + "values": [ + 15.600000000000000, + 17.800000000000001, + 20.0, + 21.0, + 15.600000000000000 + ], + "interpolate": false, + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy" }, - "ph_hvac": { - "type": "FacePhHvacProperties" + { + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ], + [ + 5, + 0 + ], + [ + 6, + 0 + ], + [ + 7, + 0 + ], + [ + 17, + 0 + ] + ], + "values": [ + 15.600000000000000, + 17.800000000000001, + 20.0, + 21.0, + 15.600000000000000 + ], + "interpolate": false, + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat" } - } - } - ], - "properties": { - "radiance": { - "type": "RoomRadiancePropertiesAbridged" + ], + "winter_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn" }, - "type": "RoomPropertiesAbridged", - "energy": { - "people": { - "identifier": "Generic Office People", - "type": "PeopleAbridged", - "people_per_area": 0.071428571428571425, - "radiant_fraction": 0.29999999999999999, - "occupancy_schedule": "Generic Office Occupancy", - "activity_schedule": "Seated Adult Activity", - "latent_fraction": { - "type": "Autocalculate" + { + "type": "ScheduleRulesetAbridged", + "holiday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", + "schedule_type_limit": "Fractional", + "schedule_rules": [ + { + "type": "ScheduleRuleAbridged", + "apply_friday": true, + "apply_sunday": false, + "apply_saturday": false, + "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", + "apply_thursday": true, + "end_date": [ + 12, + 31 + ], + "apply_tuesday": true, + "start_date": [ + 1, + 1 + ], + "apply_wednesday": true, + "apply_monday": true }, - "properties": { - "ph": { - "type": "PeoplePhProperties", - "dwellings": { - "identifier": "9fcc776b-5962-4179-a68a-4413c9f2d751", - "num_dwellings": 2 - }, - "id_num": 0, - "number_bedrooms": 2, - "number_people": 2 - }, - "type": "PeopleProperties" + { + "type": "ScheduleRuleAbridged", + "apply_friday": false, + "apply_sunday": false, + "apply_saturday": true, + "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", + "apply_thursday": false, + "end_date": [ + 12, + 31 + ], + "apply_tuesday": false, + "start_date": [ + 1, + 1 + ], + "apply_wednesday": false, + "apply_monday": false + } + ], + "summer_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", + "default_day_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", + "properties": { + "type": "ScheduleRulesetProperties", + "ph": { + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997, + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] + } } }, - "hvac": "Room_8_b1033aa6 Ideal Loads Air System", - "program_type": "Generic Office Program", - "type": "RoomEnergyPropertiesAbridged", - "service_hot_water": { - "identifier": "Room_8_b1033aa6_service_hot_water", - "type": "ServiceHotWaterAbridged", - "target_temperature": 60.0, - "schedule": "Always On", - "flow_per_area": 3.5714285714285717e-05, - "latent_fraction": 0.050000000000000003, - "sensible_fraction": 0.20000000000000001 - }, - "construction_set": "ConstructionSet_ebe974d5", - "electric_equipment": { - "identifier": "Generic Office Equipment_58e246b3", - "type": "ElectricEquipmentAbridged", - "radiant_fraction": 0.5, - "schedule": "Generic Office Equipment", - "lost_fraction": 0.0, - "latent_fraction": 0.0, - "watts_per_area": 10.330000000000000, - "properties": { - "ph": { - "equipment_collection": { - "equipment_set": { - "05dc66cd-589b-49d7-ac3d-d6073f870140": { - "quantity": 1, - "combined_energy_factor": 0, - "comment": "default", - "reference_energy_norm": 2, - "identifier": "05dc66cd-589b-49d7-ac3d-d6073f870140", - "_water_connection": { - "value": "2-COLD WATER CONNECTION" - }, - "energy_demand": 269, - "capacity_type": 1, - "reference_quantity": 1, - "in_conditioned_space": true, - "equipment_type": "PhDishwasher", - "display_name": "Kitchen dishwasher", - "user_data": {}, - "energy_demand_per_use": 0, - "capacity": 12 - }, - "97719cd4-8186-4b44-8b4a-c42eaa5419c7": { - "quantity": 1, - "combined_energy_factor": 0, - "comment": "default", - "utilization_factor": 1.0, - "reference_energy_norm": 2, - "identifier": "97719cd4-8186-4b44-8b4a-c42eaa5419c7", - "_water_connection": { - "value": "2-COLD WATER CONNECTION" - }, - "energy_demand": 120, - "reference_quantity": 1, - "modified_energy_factor": 2.7000000000000002, - "in_conditioned_space": true, - "equipment_type": "PhClothesWasher", - "display_name": "Laundry - washer", - "user_data": {}, - "energy_demand_per_use": 0, - "capacity": 0.12740000000000001 - }, - "f8b29881-a805-4f13-a0d2-2bcc1649b513": { - "quantity": 1, - "combined_energy_factor": 0, - "comment": "default", - "reference_energy_norm": 1, - "identifier": "f8b29881-a805-4f13-a0d2-2bcc1649b513", - "energy_demand": 0, - "reference_quantity": 6, - "in_conditioned_space": true, - "equipment_type": "PhPhiusLightingInterior", - "display_name": "PHIUS+ Interior Lighting", - "user_data": {}, - "energy_demand_per_use": 0, - "frac_high_efficiency": 1.0 - }, - "7cbc0312-31f6-47c6-817d-165f5289f2f3": { - "quantity": 1, - "combined_energy_factor": 0, - "comment": "default", - "reference_energy_norm": 1, - "identifier": "7cbc0312-31f6-47c6-817d-165f5289f2f3", - "energy_demand": 0, - "reference_quantity": 6, - "in_conditioned_space": false, - "equipment_type": "PhPhiusLightingExterior", - "display_name": "PHIUS+ Exterior Lighting", - "user_data": {}, - "energy_demand_per_use": 0, - "frac_high_efficiency": 1.0 - }, - "fc4a002b-06da-4716-8e8f-8c4656ac6335": { - "quantity": 1, - "combined_energy_factor": 0, - "comment": "default", - "reference_energy_norm": 1, - "identifier": "fc4a002b-06da-4716-8e8f-8c4656ac6335", - "energy_demand": 1.2200000000000000, - "reference_quantity": 4, - "in_conditioned_space": true, - "equipment_type": "PhFridgeFreezer", - "display_name": "Kitchen fridge/freeze combo", - "user_data": {}, - "energy_demand_per_use": 0 - }, - "d7270e46-db94-40bc-96b5-1cc79eab191d": { - "quantity": 1, - "combined_energy_factor": 0, - "comment": "default", - "reference_energy_norm": 1, - "identifier": "d7270e46-db94-40bc-96b5-1cc79eab191d", - "energy_demand": 0, - "reference_quantity": 3, - "in_conditioned_space": true, - "equipment_type": "PhPhiusMEL", - "display_name": "PHIUS+ MELS", - "user_data": {}, - "energy_demand_per_use": 0 - }, - "4dd8c48f-16ac-4c7a-aae7-c6b5e0378e3a": { - "quantity": 1, - "combined_energy_factor": 3.9300000000000002, - "comment": "default", - "gas_efficiency_factor": 2.6699999999999999, - "field_utilization_factor_type": 1, - "reference_energy_norm": 2, - "identifier": "4dd8c48f-16ac-4c7a-aae7-c6b5e0378e3a", - "energy_demand": 0, - "reference_quantity": 1, - "in_conditioned_space": true, - "_dryer_type": { - "value": "5-ELECTRIC EXHAUST AIR DRYER" - }, - "equipment_type": "PhClothesDryer", - "display_name": "Laundry - dryer", - "user_data": {}, - "energy_demand_per_use": 0, - "gas_consumption": 0, - "field_utilization_factor": 1.1799999999999999 - }, - "9fee98c6-77e8-4e1d-a2bc-326c5a5a855c": { - "quantity": 1, - "combined_energy_factor": 0, - "comment": "default", - "reference_energy_norm": 1, - "identifier": "9fee98c6-77e8-4e1d-a2bc-326c5a5a855c", - "energy_demand": 0.20000000000000001, - "reference_quantity": 1, - "in_conditioned_space": true, - "equipment_type": "PhCooktop", - "display_name": "Kitchen cooking", - "user_data": {}, - "energy_demand_per_use": 0, - "_cooktop_type": { - "value": "1-ELECTRICITY" - } - } - } - }, - "type": "ElectricEquipmentPhProperties" - }, - "type": "ElectricEquipmentProperties" + "identifier": "Generic Office Equipment", + "day_schedules": [ + { + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ], + [ + 6, + 0 + ], + [ + 18, + 0 + ] + ], + "values": [ + 0.2307553806, + 0.28810717499999999, + 0.2307553806 + ], + "interpolate": false, + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun" + }, + { + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ] + ], + "values": [ + 1.0 + ], + "interpolate": false, + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn" + }, + { + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ] + ], + "values": [ + 0.0 + ], + "interpolate": false, + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn" + }, + { + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ], + [ + 6, + 0 + ], + [ + 8, + 0 + ], + [ + 12, + 0 + ], + [ + 17, + 0 + ], + [ + 19, + 0 + ] + ], + "values": [ + 0.2307553806, + 0.38123479599999999, + 0.47654349499999998, + 0.33358044650000002, + 0.28592609699999999, + 0.2307553806 + ], + "interpolate": false, + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat" + }, + { + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ], + [ + 6, + 0 + ], + [ + 8, + 0 + ], + [ + 12, + 0 + ], + [ + 13, + 0 + ], + [ + 17, + 0 + ], + [ + 18, + 0 + ] + ], + "values": [ + 0.30767384079999999, + 0.38123479599999999, + 0.85777829100000003, + 0.76246959199999997, + 0.85777829100000003, + 0.47654349499999998, + 0.38123479599999999 + ], + "interpolate": false, + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy" } - } + ], + "winter_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn" }, - "ph": { - "type": "RoomPhPropertiesAbridged", - "ph_bldg_segment_id": "19f7b0a4-8d2d-4aac-8958-34d179c217ba", - "specific_heat_capacity": "1-LIGHTWEIGHT", - "ph_foundations": [], - "spaces": [ + { + "type": "ScheduleRulesetAbridged", + "holiday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", + "schedule_type_limit": "Temperature", + "schedule_rules": [ { - "quantity": 1, - "number": "102", - "identifier": "c56a1f7d-4dab-4f84-ad27-71084d96c934", - "wufi_type": 99, - "volumes": [ - { - "identifier": "58e65ae4-70e9-4908-98ab-5fcba0c6f934", - "avg_ceiling_height": 2.75, - "geometry": [ - { - "boundary": [ - [ - 5.2895414217061774, - -10.342081323981931, - 2.75 - ], - [ - 5.8625804080070480, - -7.0922157390416434, - 2.75 - ], - [ - 5.8625804080070480, - -7.0922157390416434, - 0.0 - ], - [ - 5.2895414217061774, - -10.342081323981931, - 0.0 - ] - ], - "plane": { - "type": "Plane", - "n": [ - -0.98480775301220813, - 0.17364817766693044, - 0.0 - ], - "o": [ - 5.2895414217061774, - -10.342081323981931, - 2.75 - ], - "x": [ - 0.17364817766693044, - 0.98480775301220813, - 0.0 - ] - }, - "type": "Face3D" - }, - { - "boundary": [ - [ - 5.8625804080070480, - -7.0922157390416434, - 2.75 - ], - [ - 9.1124459929473343, - -7.6652547253425141, - 2.75 - ], - [ - 9.1124459929473343, - -7.6652547253425141, - 0.0 - ], - [ - 5.8625804080070480, - -7.0922157390416434, - 0.0 - ] - ], - "plane": { - "type": "Plane", - "n": [ - 0.17364817766693053, - 0.98480775301220802, - 0.0 - ], - "o": [ - 5.8625804080070480, - -7.0922157390416434, - 2.75 - ], - "x": [ - 0.98480775301220802, - -0.17364817766693053, - 0.0 - ] - }, - "type": "Face3D" - }, - { - "boundary": [ - [ - 9.1124459929473343, - -7.6652547253425141, - 2.75 - ], - [ - 8.5394070066464636, - -10.915120310282800, - 2.75 - ], - [ - 8.5394070066464636, - -10.915120310282800, - 0.0 - ], - [ - 9.1124459929473343, - -7.6652547253425141, - 0.0 - ] - ], - "plane": { - "type": "Plane", - "n": [ - 0.98480775301220802, - -0.17364817766693053, - 0.0 - ], - "o": [ - 9.1124459929473343, - -7.6652547253425141, - 2.75 - ], - "x": [ - -0.17364817766693053, - -0.98480775301220802, - 0.0 - ] - }, - "type": "Face3D" - }, - { - "boundary": [ - [ - 8.5394070066464636, - -10.915120310282800, - 2.75 - ], - [ - 5.2895414217061774, - -10.342081323981931, - 2.75 - ], - [ - 5.2895414217061774, - -10.342081323981931, - 0.0 - ], - [ - 8.5394070066464636, - -10.915120310282800, - 0.0 - ] - ], - "plane": { - "type": "Plane", - "n": [ - -0.17364817766693003, - -0.98480775301220813, - 0.0 - ], - "o": [ - 8.5394070066464636, - -10.915120310282800, - 2.75 - ], - "x": [ - -0.98480775301220813, - 0.17364817766693003, - 0.0 - ] - }, - "type": "Face3D" - }, - { - "boundary": [ - [ - 5.8625804080070480, - -7.0922157390416434, - 0.0 - ], - [ - 9.1124459929473343, - -7.6652547253425141, - 0.0 - ], - [ - 8.5394070066464636, - -10.915120310282800, - 0.0 - ], - [ - 5.2895414217061774, - -10.342081323981931, - 0.0 - ] - ], - "plane": { - "type": "Plane", - "n": [ - 0.0, - 0.0, - -1.0 - ], - "o": [ - 5.8625804080070480, - -7.0922157390416434, - 0.0 - ], - "x": [ - 1.0, - 0.0, - 0.0 - ] - }, - "type": "Face3D" - }, - { - "boundary": [ - [ - 8.5394070066464636, - -10.915120310282800, - 2.75 - ], - [ - 9.1124459929473343, - -7.6652547253425141, - 2.75 - ], - [ - 5.8625804080070480, - -7.0922157390416434, - 2.75 - ], - [ - 5.2895414217061774, - -10.342081323981931, - 2.75 - ] - ], - "plane": { - "type": "Plane", - "n": [ - 0.0, - 0.0, - 1.0 - ], - "o": [ - 8.5394070066464636, - -10.915120310282800, - 2.75 - ], - "x": [ - 1.0, - 0.0, - 0.0 - ] - }, - "type": "Face3D" - } - ], - "display_name": "58e65ae4-70e9-4908-98ab-5fcba0c6f934", - "user_data": {}, - "floor": { - "identifier": "9137ce38-3ed3-47ba-bca1-fc75b10c3a42", - "floor_segments": [ - { - "identifier": "c0234a23-ba82-470f-9866-e712c7884764", - "weighting_factor": 1.0, - "geometry": { - "boundary": [ - [ - 5.2895414217061774, - -10.342081323981931, - 0.0 - ], - [ - 8.5394070066464636, - -10.915120310282800, - 0.0 - ], - [ - 9.1124459929473343, - -7.6652547253425141, - 0.0 - ], - [ - 5.8625804080070480, - -7.0922157390416434, - 0.0 - ] - ], - "plane": { - "type": "Plane", - "n": [ - 0.0, - 0.0, - 1.0 - ], - "o": [ - 5.2895414217061774, - -10.342081323981931, - 0.0 - ], - "x": [ - 1.0, - 0.0, - 0.0 - ] - }, - "type": "Face3D" - }, - "display_name": "c0234a23-ba82-470f-9866-e712c7884764", - "user_data": {}, - "floor_area": 10.890000000000001, - "weighted_floor_area": 10.890000000000001, - "reference_point": { - "type": "Point3D", - "y": -9.0036680246622218, - "x": 7.2009937073267549, - "z": 0.11000000000000001 - } - } - ], - "geometry": { - "boundary": [ - [ - 5.2895414217061774, - -10.342081323981931, - 0.0 - ], - [ - 8.5394070066464636, - -10.915120310282800, - 0.0 - ], - [ - 9.1124459929473343, - -7.6652547253425141, - 0.0 - ], - [ - 5.8625804080070480, - -7.0922157390416434, - 0.0 - ] - ], - "plane": { - "type": "Plane", - "n": [ - 0.0, - 0.0, - 1.0 - ], - "o": [ - 5.2895414217061774, - -10.342081323981931, - 0.0 - ], - "x": [ - 1.0, - 0.0, - 0.0 - ] - }, - "type": "Face3D" - }, - "display_name": "9137ce38-3ed3-47ba-bca1-fc75b10c3a42", - "user_data": {} - } - } + "type": "ScheduleRuleAbridged", + "apply_friday": true, + "apply_sunday": false, + "apply_saturday": false, + "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", + "apply_thursday": true, + "end_date": [ + 12, + 31 ], - "name": "Room_8", - "user_data": {}, - "properties": { - "type": "SpaceProperties", - "energy": { - "type": "SpaceEnergyProperties", - "id_num": 0 - }, - "ph": { - "_v_eta": null, - "type": "SpacePhProperties", - "_v_tran": null, - "_v_sup": null, - "id_num": 0 - } - } - } - ] - }, - "ph_hvac": { - "supportive_devices": [ + "apply_tuesday": true, + "start_date": [ + 1, + 1 + ], + "apply_wednesday": true, + "apply_monday": true + }, { - "quantity": 3, - "identifier": "50507183-4a8b-4b08-a6e8-0ccc514e13ae", - "norm_energy_demand_W": 123.0, - "device_type": 10, - "device_class_name": "PhSupportiveDevice", - "in_conditioned_space": false, - "annual_period_operation_khrs": 6.5, - "display_name": "Example Device", - "user_data": {} + "type": "ScheduleRuleAbridged", + "apply_friday": false, + "apply_sunday": false, + "apply_saturday": true, + "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", + "apply_thursday": false, + "end_date": [ + 12, + 31 + ], + "apply_tuesday": false, + "start_date": [ + 1, + 1 + ], + "apply_wednesday": false, + "apply_monday": false } ], - "type": "RoomPhHvacPropertiesAbridged", - "heat_pump_systems": [ + "summer_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", + "default_day_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", + "properties": { + "type": "ScheduleRulesetProperties", + "ph": { + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997, + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] + } + } + }, + "identifier": "Generic Office Cooling", + "day_schedules": [ { - "COP_2": 4.1200000000000001, - "ambient_temp_2": 12.0, - "COP_1": 3.3999999999999999, - "identifier": "42ecdb1e-f82f-4b6a-b4ac-492a33d94015", - "heat_pump_class_name": "PhHeatPumpRatedMonthly", - "ambient_temp_1": -3.3300000000000001, - "percent_coverage": 1.0, - "cooling_params": { - "dehumidification": { - "useful_heat_loss": false, - "identifier": "1ecc8a2c-eeba-47cf-9028-907e31e353f7", - "annual_COP": 2.0, - "used": true, - "display_name": "_unnamed_dehumidification_cooling__fab60b04", - "user_data": {} - }, - "percent_coverage": 1.0, - "ventilation": { - "identifier": "21364d73-507c-44fd-8432-55b872dbe6ad", - "annual_COP": 4.0, - "min_coil_temp": 12.0, - "used": false, - "display_name": "21364d73-507c-44fd-8432-55b872dbe6ad", - "user_data": {}, - "capacity": 10.0, - "single_speed": false - }, - "panel": { - "identifier": "643be117-1afd-49ca-b9ec-3ec55d0b33e9", - "annual_COP": 4.0, - "used": false, - "display_name": "643be117-1afd-49ca-b9ec-3ec55d0b33e9", - "user_data": {} - }, - "recirculation": { - "identifier": "75d70b72-3ce9-48ac-af28-0d35b1a366b1", - "annual_COP": 2.0, - "min_coil_temp": 12.0, - "flow_rate_m3_hr": 100.08000000000000, - "used": true, - "display_name": "_unnamed_recirculation_cooling__083a780a", - "user_data": {}, - "capacity": 10.0, - "flow_rate_variable": true, - "single_speed": false - } - }, - "display_name": "Example_Heat_Pump", - "user_data": {} + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ] + ], + "values": [ + 26.699999999999999 + ], + "interpolate": false, + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default" }, { - "COP_2": 2.5, - "ambient_temp_2": 8.3330000000000002, - "COP_1": 2.5, - "identifier": "62f2268c-300a-48e7-b3d3-ecf35cc4f788", - "heat_pump_class_name": "PhHeatPumpRatedMonthly", - "ambient_temp_1": -8.3330000000000002, - "percent_coverage": 1.0, - "cooling_params": { - "dehumidification": { - "useful_heat_loss": false, - "identifier": "52d7e7f6-c5d1-417a-8078-1d32eb76805e", - "annual_COP": 4.0, - "used": false, - "display_name": "52d7e7f6-c5d1-417a-8078-1d32eb76805e", - "user_data": {} - }, - "percent_coverage": 1.0, - "ventilation": { - "identifier": "dcb1e93c-7a1f-42f1-9932-5da5883fd728", - "annual_COP": 4.0, - "min_coil_temp": 12.0, - "used": false, - "display_name": "dcb1e93c-7a1f-42f1-9932-5da5883fd728", - "user_data": {}, - "capacity": 10.0, - "single_speed": false - }, - "panel": { - "identifier": "97782c4d-79a4-4bed-b12d-f6df89a03579", - "annual_COP": 4.0, - "used": false, - "display_name": "97782c4d-79a4-4bed-b12d-f6df89a03579", - "user_data": {} - }, - "recirculation": { - "identifier": "342afc9a-17c9-40d6-b323-64ceed941a3c", - "annual_COP": 4.0, - "min_coil_temp": 12.0, - "flow_rate_m3_hr": 100.0, - "used": false, - "display_name": "342afc9a-17c9-40d6-b323-64ceed941a3c", - "user_data": {}, - "capacity": 10.0, - "flow_rate_variable": true, - "single_speed": false - } - }, - "display_name": "None", - "user_data": {} - } - ], - "heating_systems": [], - "exhaust_vent_devices": [ - { - "quantity": 1, - "annual_runtime_minutes": 7.625, - "identifier": "9f76467c-2325-46a6-9ad7-4d7088197c44", - "device_class_name": "ExhaustVentDryer", - "display_name": "example_dryer_vent", - "user_data": {}, - "exhaust_flow_rate_m3s": 123.0 + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ], + [ + 5, + 0 + ], + [ + 6, + 0 + ], + [ + 7, + 0 + ], + [ + 22, + 0 + ] + ], + "values": [ + 26.699999999999999, + 25.699999999999999, + 25.0, + 24.0, + 26.699999999999999 + ], + "interpolate": false, + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn" + }, + { + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ] + ], + "values": [ + 26.699999999999999 + ], + "interpolate": false, + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn" + }, + { + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ], + [ + 5, + 0 + ], + [ + 6, + 0 + ], + [ + 7, + 0 + ], + [ + 22, + 0 + ] + ], + "values": [ + 26.699999999999999, + 25.600000000000001, + 25.0, + 24.0, + 26.699999999999999 + ], + "interpolate": false, + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy" + }, + { + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ], + [ + 5, + 0 + ], + [ + 6, + 0 + ], + [ + 7, + 0 + ], + [ + 17, + 0 + ] + ], + "values": [ + 26.699999999999999, + 25.699999999999999, + 25.0, + 24.0, + 26.699999999999999 + ], + "interpolate": false, + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat" } ], - "ventilation_system": { - "sys_type": 1, - "identifier": "d2f7d12d-d4a2-4dc3-a6e3-15b3767201e0", - "supply_ducting": [ - { - "identifier": "de19ed8e-9e6e-4ef8-b598-cf50244b5a19", - "display_name": "__unnamed_vent_duct__", - "user_data": {}, - "segments": { - "6347b2fe-5b4d-4be6-a77f-3bc07bf92672": { - "identifier": "6347b2fe-5b4d-4be6-a77f-3bc07bf92672", - "insulation_conductivity": 0.040000000000000001, - "diameter": 0.17600000000000002, - "geometry": { - "type": "LineSegment3D", - "p": [ - 0.0, - -5.5, - 0.0 - ], - "v": [ - 0.0, - 0.0, - 1.1000000000000001 - ] - }, - "display_name": "6347b2fe-5b4d-4be6-a77f-3bc07bf92672", - "user_data": {}, - "insulation_reflective": true, - "height": null, - "insulation_thickness": 0.02794, - "width": null - } - }, - "duct_type": 1 - } - ], - "exhaust_ducting": [ - { - "identifier": "2d3324ad-7a35-42d6-90a2-7d799551bdd7", - "display_name": "Test_Vent_System_exhaust", - "user_data": {}, - "segments": { - "0908a6fd-d377-4cc5-a114-761b1857bae0": { - "identifier": "0908a6fd-d377-4cc5-a114-761b1857bae0", - "insulation_conductivity": 0.040000000000000001, - "diameter": 0.17600000000000002, - "geometry": { - "type": "LineSegment3D", - "p": [ - 0.0, - -5.5, - 0.0 - ], - "v": [ - 1.0832885283134288, - -0.19101299543362338, - 0.0 - ] - }, - "display_name": "0908a6fd-d377-4cc5-a114-761b1857bae0", - "user_data": {}, - "insulation_reflective": true, - "height": null, - "insulation_thickness": 0.02794, - "width": null - } - }, - "duct_type": 2 - } - ], - "ventilation_unit": { - "quantity": 1, - "latent_heat_recovery": 0.0, - "frost_protection_reqd": true, - "identifier": "beed6a32-71ca-4855-84ee-98ed7312a83f", - "sensible_heat_recovery": 0.82999999999999996, - "electric_efficiency": 0.33300000000000002, - "in_conditioned_space": true, - "temperature_below_defrost_used": -5.0, - "display_name": "Test_Unit", - "user_data": {} + "winter_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn" + }, + { + "type": "ScheduleRulesetAbridged", + "holiday_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", + "schedule_type_limit": "Fractional", + "schedule_rules": [ + { + "type": "ScheduleRuleAbridged", + "apply_friday": true, + "apply_sunday": false, + "apply_saturday": false, + "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Wkdy", + "apply_thursday": true, + "end_date": [ + 12, + 31 + ], + "apply_tuesday": true, + "start_date": [ + 1, + 1 + ], + "apply_wednesday": true, + "apply_monday": true }, - "display_name": "Test_Vent_System", - "user_data": {}, - "id_num": 0 - }, - "renewable_devices": [ { - "utilization_factor": 1.0, - "identifier": "4108c5ab-61ca-455f-bb33-3bdde72945c4", - "device_typename": "PhPhotovoltaicDevice", - "photovoltaic_renewable_energy": 1000.0, - "percent_coverage": 1.0, - "array_size": 0.0, - "display_name": "my_PV_system", - "user_data": {} + "type": "ScheduleRuleAbridged", + "apply_friday": false, + "apply_sunday": false, + "apply_saturday": true, + "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Sat", + "apply_thursday": false, + "end_date": [ + 12, + 31 + ], + "apply_tuesday": false, + "start_date": [ + 1, + 1 + ], + "apply_wednesday": false, + "apply_monday": false } ], - "hot_water_system": { - "tank_solar": { - "quantity": 1, - "identifier": "0a5084de-b18b-40a8-9049-ba31e15af4b4", - "_tank_type": { - "value": "2-DHW ONLY" - }, - "storage_loss_rate": 0.0, - "room_temp": 20, - "standby_losses": 4.0, - "solar_losses": 0.0, - "in_conditioned_space": true, - "solar_connection": false, - "storage_capacity": 300, - "water_temp": 60, - "display_name": "_unnamed_hw_tank_", - "user_data": {}, - "standby_fraction": 0.29999999999999999 - }, - "distribution_piping": { - "52da9111-c954-42b0-ae14-f6dbb9200dc2": { - "pipe_element": { - "segments": { - "c09cb591-948b-427a-98dc-b4a82ff4c4b9": { - "water_temp_c": 60.0, - "insulation_thickness_mm": 0.0, - "insulation_quality": null, - "identifier": "c09cb591-948b-427a-98dc-b4a82ff4c4b9", - "daily_period": 24, - "insulation_conductivity": 0.040000000000000001, - "diameter_mm": 38.099999999999994, - "material_value": "6-PEX", - "geometry": { - "type": "LineSegment3D", - "p": [ - 0.0, - -5.5, - 0.0 - ], - "v": [ - 0.0, - 0.0, - 5.5 - ] - }, - "display_name": "c09cb591-948b-427a-98dc-b4a82ff4c4b9", - "user_data": {}, - "insulation_reflective": false - } - }, - "display_name": "656084b1-6699-4039-9c70-4259b9ee9aaa", - "user_data": {}, - "identifier": "656084b1-6699-4039-9c70-4259b9ee9aaa" - }, - "identifier": "52da9111-c954-42b0-ae14-f6dbb9200dc2", - "branches": { - "34c0656a-8c43-4f3b-b40d-dececebb8ba9": { - "pipe_element": { - "segments": { - "03ca1a3f-9acd-42ae-977c-64275f41c079": { - "water_temp_c": 60.0, - "insulation_thickness_mm": 0.0, - "insulation_quality": null, - "identifier": "03ca1a3f-9acd-42ae-977c-64275f41c079", - "daily_period": 24, - "insulation_conductivity": 0.040000000000000001, - "diameter_mm": 19.049999999999997, - "material_value": "3-COPPER_K", - "geometry": { - "type": "LineSegment3D", - "p": [ - 0.0, - -5.5, - 0.0 - ], - "v": [ - 0.0, - 0.0, - 5.5 - ] - }, - "display_name": "03ca1a3f-9acd-42ae-977c-64275f41c079", - "user_data": {}, - "insulation_reflective": false - } - }, - "display_name": "499b3dc8-7ea9-4723-b5d4-661e52e8a115", - "user_data": {}, - "identifier": "499b3dc8-7ea9-4723-b5d4-661e52e8a115" - }, - "fixtures": { - "681f4d66-4e1e-47bd-8991-fbe0d7331670": { - "segments": { - "cfb54179-b9db-4d18-a4f9-955956f26f5d": { - "water_temp_c": 55.0, - "insulation_thickness_mm": 0.0, - "insulation_quality": null, - "identifier": "cfb54179-b9db-4d18-a4f9-955956f26f5d", - "daily_period": 24, - "insulation_conductivity": 0.040000000000000001, - "diameter_mm": 9.5249999999999986, - "material_value": "1-COPPER_M", - "geometry": { - "type": "LineSegment3D", - "p": [ - 0.0, - -5.5, - 0.0 - ], - "v": [ - 0.0, - 0.0, - 5.5 - ] - }, - "display_name": "cfb54179-b9db-4d18-a4f9-955956f26f5d", - "user_data": {}, - "insulation_reflective": false - } - }, - "display_name": "Test_Fixture", - "user_data": {}, - "identifier": "681f4d66-4e1e-47bd-8991-fbe0d7331670" - } - }, - "identifier": "34c0656a-8c43-4f3b-b40d-dececebb8ba9", - "display_name": "Test_Branch", - "user_data": {} - } - }, - "multiplier": 1, - "display_name": "Test_Trunk", - "user_data": {} + "summer_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", + "default_day_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", + "properties": { + "type": "ScheduleRulesetProperties", + "ph": { + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997, + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] } + } + }, + "identifier": "Generic Office Infiltration", + "day_schedules": [ + { + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ] + ], + "values": [ + 1.0 + ], + "interpolate": false, + "identifier": "OfficeMedium INFIL_SCH_PNNL_Default" }, - "identifier": "d5293715-48db-49c5-b134-f37cb07244b9", - "type": "PhHvacHotWaterSystemPh", - "number_tap_points": 1, - "heaters": { - "9435601e-67e4-413f-9696-2a65e338c5d5": { - "total_system_perf_ratio": null, - "identifier": "9435601e-67e4-413f-9696-2a65e338c5d5", - "annual_COP": null, - "in_conditioned_space": true, - "percent_coverage": 1.0, - "heater_type": "PhHvacHotWaterHeaterHeatPump_Annual", - "display_name": "9435601e-67e4-413f-9696-2a65e338c5d5", - "user_data": {} - } + { + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ], + [ + 6, + 0 + ], + [ + 22, + 0 + ] + ], + "values": [ + 1.0, + 0.25, + 1.0 + ], + "interpolate": false, + "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn" }, - "recirc_piping": { - "00c40aa7-3e15-46d9-9066-2f8bdbfa4f2d": { - "segments": { - "2ad4dc5c-21ab-415c-96ee-8f0cb0480660": { - "water_temp_c": 48.0, - "insulation_thickness_mm": 25.399999999999999, - "insulation_quality": null, - "identifier": "2ad4dc5c-21ab-415c-96ee-8f0cb0480660", - "daily_period": 23.0, - "insulation_conductivity": 0.040000000000000001, - "diameter_mm": 25.399999999999999, - "material_value": "2-COPPER_L", - "geometry": { - "type": "LineSegment3D", - "p": [ - 0.0, - -5.5, - 0.0 - ], - "v": [ - 0.0, - 0.0, - 1.1000000000000001 - ] - }, - "display_name": "2ad4dc5c-21ab-415c-96ee-8f0cb0480660", - "user_data": {}, - "insulation_reflective": true - } + { + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ], + [ + 6, + 0 + ], + [ + 18, + 0 + ] + ], + "values": [ + 1.0, + 0.25, + 1.0 + ], + "interpolate": false, + "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn" + }, + { + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ], + [ + 6, + 0 + ], + [ + 22, + 0 + ] + ], + "values": [ + 1.0, + 0.25, + 1.0 + ], + "interpolate": false, + "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy" + }, + { + "type": "ScheduleDay", + "times": [ + [ + 0, + 0 + ], + [ + 6, + 0 + ], + [ + 18, + 0 + ] + ], + "values": [ + 1.0, + 0.25, + 1.0 + ], + "interpolate": false, + "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat" + } + ], + "winter_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn" + } + ], + "program_types": [ + { + "type": "ProgramTypeAbridged", + "infiltration": { + "type": "InfiltrationAbridged", + "flow_per_exterior_area": 0.00022660000000000001, + "schedule": "Generic Office Infiltration", + "identifier": "Generic Office Infiltration" + }, + "people": { + "type": "PeopleAbridged", + "properties": { + "type": "PeopleProperties", + "ph": { + "type": "PeoplePhProperties", + "dwellings": { + "num_dwellings": 0, + "identifier": "14df9d19-1026-41db-b8c4-854b116aecc3" }, - "display_name": "_unnamed_", - "user_data": {}, - "identifier": "00c40aa7-3e15-46d9-9066-2f8bdbfa4f2d" + "number_people": 0.0, + "id_num": 0, + "number_bedrooms": 0 } }, - "recirc_temp": 48.0, - "recirc_hours": 23, - "display_name": "SHW System_5a40001e", - "id_num": 0 + "people_per_area": 0.056500000000000002, + "occupancy_schedule": "Generic Office Occupancy", + "latent_fraction": { + "type": "Autocalculate" + }, + "radiant_fraction": 0.29999999999999999, + "identifier": "Generic Office People", + "activity_schedule": "Seated Adult Activity" }, - "id_num": 0 - } - } - } - ], - "tolerance": 0.001, - "properties": { - "radiance": { - "modifiers": [ - { - "roughness": 0.0, - "dependencies": [], - "modifier": null, - "type": "Plastic", - "identifier": "generic_context_0.20", - "b_reflectance": 0.20000000000000001, - "g_reflectance": 0.20000000000000001, - "specularity": 0.0, - "r_reflectance": 0.20000000000000001 - } - ], - "type": "ModelRadianceProperties", - "modifier_sets": [], - "global_modifier_set": { - "door_set": { - "exterior_modifier": "generic_opaque_door_0.50", - "interior_glass_modifier": "generic_interior_window_vis_0.88", - "interior_modifier": "generic_opaque_door_0.50", - "overhead_modifier": "generic_opaque_door_0.50", - "type": "DoorModifierSetAbridged", - "exterior_glass_modifier": "generic_exterior_window_vis_0.64" - }, - "type": "GlobalModifierSet", - "wall_set": { - "interior_modifier": "generic_wall_0.50", - "type": "WallModifierSetAbridged", - "exterior_modifier": "generic_wall_0.50" - }, - "shade_set": { - "interior_modifier": "generic_interior_shade_0.50", - "type": "ShadeModifierSetAbridged", - "exterior_modifier": "generic_exterior_shade_0.35" - }, - "air_boundary_modifier": "air_boundary", - "aperture_set": { - "skylight_modifier": "generic_exterior_window_vis_0.64", - "type": "ApertureModifierSetAbridged", - "interior_modifier": "generic_interior_window_vis_0.88", - "operable_modifier": "generic_exterior_window_vis_0.64", - "window_modifier": "generic_exterior_window_vis_0.64" - }, - "modifiers": [ - { - "b_reflectance": 1.0, - "r_reflectance": 1.0, - "roughness": 0.0, - "transmitted_diff": 1.0, - "specularity": 0.0, - "dependencies": [], - "modifier": null, - "type": "Trans", - "identifier": "air_boundary", - "g_reflectance": 1.0, - "transmitted_spec": 1.0 - }, - { - "roughness": 0.0, - "dependencies": [], - "modifier": null, - "type": "Plastic", - "identifier": "generic_ceiling_0.80", - "b_reflectance": 0.80000000000000004, - "g_reflectance": 0.80000000000000004, - "specularity": 0.0, - "r_reflectance": 0.80000000000000004 - }, - { - "roughness": 0.0, - "dependencies": [], - "modifier": null, - "type": "Plastic", - "identifier": "generic_exterior_shade_0.35", - "b_reflectance": 0.34999999999999998, - "g_reflectance": 0.34999999999999998, - "specularity": 0.0, - "r_reflectance": 0.34999999999999998 - }, - { - "roughness": 0.0, - "dependencies": [], - "modifier": null, - "type": "Plastic", - "identifier": "generic_opaque_door_0.50", - "b_reflectance": 0.5, - "g_reflectance": 0.5, - "specularity": 0.0, - "r_reflectance": 0.5 - }, - { - "roughness": 0.0, - "dependencies": [], - "modifier": null, - "type": "Plastic", - "identifier": "generic_wall_0.50", - "b_reflectance": 0.5, - "g_reflectance": 0.5, - "specularity": 0.0, - "r_reflectance": 0.5 - }, - { - "roughness": 0.0, - "dependencies": [], - "modifier": null, - "type": "Plastic", - "identifier": "generic_interior_shade_0.50", - "b_reflectance": 0.5, - "g_reflectance": 0.5, - "specularity": 0.0, - "r_reflectance": 0.5 - }, - { - "r_transmissivity": 0.95841543286105957, - "g_transmissivity": 0.95841543286105957, - "b_transmissivity": 0.95841543286105957, - "modifier": null, - "dependencies": [], - "identifier": "generic_interior_window_vis_0.88", - "type": "Glass", - "refraction_index": null - }, - { - "r_transmissivity": 0.69757618153843315, - "g_transmissivity": 0.69757618153843315, - "b_transmissivity": 0.69757618153843315, - "modifier": null, - "dependencies": [], - "identifier": "generic_exterior_window_vis_0.64", - "type": "Glass", - "refraction_index": null - }, - { - "roughness": 0.0, - "dependencies": [], - "modifier": null, - "type": "Plastic", - "identifier": "generic_floor_0.20", - "b_reflectance": 0.20000000000000001, - "g_reflectance": 0.20000000000000001, - "specularity": 0.0, - "r_reflectance": 0.20000000000000001 - }, - { - "roughness": 0.0, - "dependencies": [], - "modifier": null, - "type": "Plastic", - "identifier": "generic_context_0.20", - "b_reflectance": 0.20000000000000001, - "g_reflectance": 0.20000000000000001, - "specularity": 0.0, - "r_reflectance": 0.20000000000000001 - } - ], - "context_modifier": "generic_context_0.20", - "floor_set": { - "interior_modifier": "generic_floor_0.20", - "type": "FloorModifierSetAbridged", - "exterior_modifier": "generic_floor_0.20" - }, - "roof_ceiling_set": { - "interior_modifier": "generic_ceiling_0.80", - "type": "RoofCeilingModifierSetAbridged", - "exterior_modifier": "generic_ceiling_0.80" - } - } - }, - "type": "ModelProperties", - "energy": { - "shws": [], - "program_types": [ - { - "people": { - "identifier": "Generic Office People", - "type": "PeopleAbridged", - "people_per_area": 0.056500000000000002, - "radiant_fraction": 0.29999999999999999, - "occupancy_schedule": "Generic Office Occupancy", - "activity_schedule": "Seated Adult Activity", - "latent_fraction": { - "type": "Autocalculate" - }, + "lighting": { + "type": "LightingAbridged", "properties": { + "type": "LightingProperties", "ph": { - "type": "PeoplePhProperties", - "dwellings": { - "identifier": "86cb443b-bb75-472a-820e-df6ed6dbbba4", - "num_dwellings": 0 - }, + "type": "LightingPhProperties", + "target_lux": 300, "id_num": 0, - "number_bedrooms": 0, - "number_people": 0.0 - }, - "type": "PeopleProperties" - } + "target_lux_height": 0.80000000000000004 + } + }, + "radiant_fraction": 0.69999999999999996, + "identifier": "Generic Office Lighting", + "watts_per_area": 10.550000000000001, + "visible_fraction": 0.20000000000000001, + "return_air_fraction": 0.0, + "schedule": "Generic Office Lighting" }, - "identifier": "Generic Office Program", - "type": "ProgramTypeAbridged", "setpoint": { - "heating_schedule": "Generic Office Heating", "type": "SetpointAbridged", + "heating_schedule": "Generic Office Heating", "cooling_schedule": "Generic Office Cooling", "identifier": "Generic Office Setpoints" }, - "lighting": { - "visible_fraction": 0.20000000000000001, - "identifier": "Generic Office Lighting", - "type": "LightingAbridged", - "radiant_fraction": 0.69999999999999996, - "schedule": "Generic Office Lighting", - "return_air_fraction": 0.0, - "watts_per_area": 10.550000000000001, - "properties": { - "ph": { - "target_lux_height": 0.80000000000000004, - "type": "LightingPhProperties", - "id_num": 0, - "target_lux": 300 - }, - "type": "LightingProperties" - } - }, - "ventilation": { - "flow_per_person": 0.0023600000000000001, - "type": "VentilationAbridged", - "identifier": "Generic Office Ventilation", - "flow_per_area": 0.00030499999999999999 - }, "electric_equipment": { - "identifier": "Generic Office Equipment", "type": "ElectricEquipmentAbridged", - "radiant_fraction": 0.5, - "schedule": "Generic Office Equipment", - "lost_fraction": 0.0, - "latent_fraction": 0.0, - "watts_per_area": 10.330000000000000, "properties": { + "type": "ElectricEquipmentProperties", "ph": { + "type": "ElectricEquipmentPhProperties", "equipment_collection": { "equipment_set": {} - }, - "type": "ElectricEquipmentPhProperties" - }, - "type": "ElectricEquipmentProperties" - } + } + } + }, + "lost_fraction": 0.0, + "latent_fraction": 0.0, + "radiant_fraction": 0.5, + "identifier": "Generic Office Equipment", + "watts_per_area": 10.330000000000000, + "schedule": "Generic Office Equipment" }, - "infiltration": { - "flow_per_exterior_area": 0.00022660000000000001, - "type": "InfiltrationAbridged", - "schedule": "Generic Office Infiltration", - "identifier": "Generic Office Infiltration" - } + "ventilation": { + "type": "VentilationAbridged", + "flow_per_person": 0.0023600000000000001, + "flow_per_area": 0.00030499999999999999, + "identifier": "Generic Office Ventilation" + }, + "identifier": "Generic Office Program" } ], - "schedules": [ + "materials": [ { - "default_day_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", - "winter_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", - "schedule_type_limit": "Fractional", - "schedule_rules": [ - { - "apply_wednesday": true, - "apply_saturday": false, - "type": "ScheduleRuleAbridged", - "apply_thursday": true, - "start_date": [ - 1, - 1 - ], - "end_date": [ - 12, - 31 - ], - "apply_monday": true, - "apply_tuesday": true, - "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", - "apply_friday": true, - "apply_sunday": false - }, - { - "apply_wednesday": false, - "apply_saturday": true, - "type": "ScheduleRuleAbridged", - "apply_thursday": false, - "start_date": [ - 1, - 1 - ], - "end_date": [ - 12, - 31 - ], - "apply_monday": false, - "apply_tuesday": false, - "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", - "apply_friday": false, - "apply_sunday": false - } - ], - "identifier": "Generic Office Equipment", - "type": "ScheduleRulesetAbridged", - "day_schedules": [ - { - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 6, - 0 - ], - [ - 18, - 0 - ] - ], - "values": [ - 0.2307553806, - 0.28810717499999999, - 0.2307553806 - ], - "interpolate": false + "type": "EnergyWindowMaterialSimpleGlazSys", + "vt": 0.59999999999999998, + "u_factor": 1.0757635684464950, + "shgc": 0.40000000000000002, + "identifier": "PhWindowConstruction_93d72626", + "display_name": "PhWindowConstruction_93d72626" + }, + { + "type": "EnergyWindowMaterialSimpleGlazSys", + "vt": 0.59999999999999998, + "u_factor": 0.83391891891891878, + "shgc": 0.40000000000000002, + "identifier": "PhWindowConstruction_40ea049d", + "display_name": "PhWindowConstruction_40ea049d" + }, + { + "infrared_transmittance": 0.0, + "top_opening_multiplier": 0.5, + "display_name": "test-shade", + "bottom_opening_multiplier": 0.5, + "thickness": 0.10000000000000001, + "left_opening_multiplier": 0.5, + "distance_to_glass": 0.050000000000000003, + "emissivity": 0.90000000000000002, + "conductivity": 0.90000000000000002, + "identifier": "test-shade", + "solar_reflectance": 0.17500000000000004, + "right_opening_multiplier": 0.5, + "solar_transmittance": 0.82499999999999996, + "visible_reflectance": 0.17500000000000004, + "airflow_permeability": 0.0, + "visible_transmittance": 0.82499999999999996, + "type": "EnergyWindowMaterialShade" + } + ], + "global_construction_set": { + "type": "GlobalConstructionSet", + "aperture_set": { + "type": "ApertureConstructionSetAbridged", + "interior_construction": "Generic Single Pane", + "skylight_construction": "Generic Double Pane", + "window_construction": "Generic Double Pane", + "operable_construction": "Generic Double Pane" + }, + "door_set": { + "type": "DoorConstructionSetAbridged", + "interior_construction": "Generic Interior Door", + "exterior_glass_construction": "Generic Double Pane", + "overhead_construction": "Generic Exterior Door", + "exterior_construction": "Generic Exterior Door", + "interior_glass_construction": "Generic Single Pane" + }, + "air_boundary_construction": "Generic Air Boundary", + "context_construction": "Generic Context", + "materials": [ + { + "type": "EnergyMaterial", + "specific_heat": 840.0, + "thermal_absorptance": 0.90000000000000002, + "solar_absorptance": 0.80000000000000004, + "visible_absorptance": 0.80000000000000004, + "density": 1280.0, + "identifier": "Generic LW Concrete", + "properties": { + "type": "EnergyMaterialProperties", + "ph": { + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0, + "user_data": {} + } }, - { - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ] - ], - "values": [ - 1.0 - ], - "interpolate": false + "conductivity": 0.53000000000000003, + "roughness": "MediumRough", + "thickness": 0.10000000000000001 + }, + { + "type": "EnergyWindowMaterialGas", + "gas_type": "Air", + "thickness": 0.012699999999999999, + "identifier": "Generic Window Air Gap" + }, + { + "type": "EnergyMaterial", + "specific_heat": 790.0, + "thermal_absorptance": 0.90000000000000002, + "solar_absorptance": 0.65000000000000002, + "visible_absorptance": 0.65000000000000002, + "density": 1920.0, + "identifier": "Generic Brick", + "properties": { + "type": "EnergyMaterialProperties", + "ph": { + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0, + "user_data": {} + } }, - { - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ] - ], - "values": [ - 0.0 - ], - "interpolate": false + "conductivity": 0.90000000000000002, + "roughness": "MediumRough", + "thickness": 0.10000000000000001 + }, + { + "type": "EnergyMaterial", + "specific_heat": 1630.0, + "thermal_absorptance": 0.90000000000000002, + "solar_absorptance": 0.5, + "visible_absorptance": 0.5, + "density": 608.0, + "identifier": "Generic 25mm Wood", + "properties": { + "type": "EnergyMaterialProperties", + "ph": { + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0, + "user_data": {} + } }, - { - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 6, - 0 - ], - [ - 8, - 0 - ], - [ - 12, - 0 - ], - [ - 17, - 0 - ], - [ - 19, - 0 - ] - ], - "values": [ - 0.2307553806, - 0.38123479599999999, - 0.47654349499999998, - 0.33358044650000002, - 0.28592609699999999, - 0.2307553806 - ], - "interpolate": false + "conductivity": 0.14999999999999999, + "roughness": "MediumSmooth", + "thickness": 0.025399999999999999 + }, + { + "type": "EnergyMaterial", + "specific_heat": 410.0, + "thermal_absorptance": 0.90000000000000002, + "solar_absorptance": 0.5, + "visible_absorptance": 0.5, + "density": 7690.0, + "identifier": "Generic Painted Metal", + "properties": { + "type": "EnergyMaterialProperties", + "ph": { + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0, + "user_data": {} + } }, - { - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 6, - 0 - ], - [ - 8, - 0 - ], - [ - 12, - 0 - ], - [ - 13, - 0 - ], - [ - 17, - 0 - ], - [ - 18, - 0 - ] - ], - "values": [ - 0.30767384079999999, - 0.38123479599999999, - 0.85777829100000003, - 0.76246959199999997, - 0.85777829100000003, - 0.47654349499999998, - 0.38123479599999999 - ], - "interpolate": false - } - ], - "summer_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", - "holiday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", - "properties": { - "ph": { - "type": "ScheduleRulesetPhProperties", - "operating_periods": { - "collection": [] - }, - "operating_days_wk": 7.0, - "id_num": 0, - "operating_weeks_year": 52.142899999999997 + "conductivity": 45.0, + "roughness": "Smooth", + "thickness": 0.0015 + }, + { + "type": "EnergyMaterial", + "specific_heat": 1000.0, + "thermal_absorptance": 0.90000000000000002, + "solar_absorptance": 0.69999999999999996, + "visible_absorptance": 0.69999999999999996, + "density": 1.2800000000000000, + "identifier": "Generic Wall Air Gap", + "properties": { + "type": "EnergyMaterialProperties", + "ph": { + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0, + "user_data": {} + } }, - "type": "ScheduleRulesetProperties" - } - }, - { - "default_day_schedule": "OfficeMedium BLDG_OCC_SCH_Default", - "winter_designday_schedule": "OfficeMedium BLDG_OCC_SCH_WntrDsn", - "schedule_type_limit": "Fractional", - "schedule_rules": [ - { - "apply_wednesday": true, - "apply_saturday": false, - "type": "ScheduleRuleAbridged", - "apply_thursday": true, - "start_date": [ - 1, - 1 - ], - "end_date": [ - 12, - 31 - ], - "apply_monday": true, - "apply_tuesday": true, - "schedule_day": "OfficeMedium BLDG_OCC_SCH_Wkdy", - "apply_friday": true, - "apply_sunday": false + "conductivity": 0.66700000000000004, + "roughness": "Smooth", + "thickness": 0.10000000000000001 + }, + { + "emissivity": 0.83999999999999997, + "solar_diffusing": false, + "visible_reflectance_back": 0.20999999999999999, + "dirt_correction": 1.0, + "type": "EnergyWindowMaterialGlazing", + "solar_reflectance": 0.35999999999999999, + "visible_reflectance": 0.20999999999999999, + "infrared_transmittance": 0.0, + "identifier": "Generic Low-e Glass", + "thickness": 0.0060000000000000001, + "visible_transmittance": 0.70999999999999996, + "solar_transmittance": 0.45000000000000001, + "emissivity_back": 0.047, + "conductivity": 1.0, + "solar_reflectance_back": 0.35999999999999999 + }, + { + "type": "EnergyMaterial", + "specific_heat": 1210.0, + "thermal_absorptance": 0.90000000000000002, + "solar_absorptance": 0.69999999999999996, + "visible_absorptance": 0.69999999999999996, + "density": 43.0, + "identifier": "Generic 50mm Insulation", + "properties": { + "type": "EnergyMaterialProperties", + "ph": { + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0, + "user_data": {} + } }, - { - "apply_wednesday": false, - "apply_saturday": true, - "type": "ScheduleRuleAbridged", - "apply_thursday": false, - "start_date": [ - 1, - 1 - ], - "end_date": [ - 12, - 31 - ], - "apply_monday": false, - "apply_tuesday": false, - "schedule_day": "OfficeMedium BLDG_OCC_SCH_Sat", - "apply_friday": false, - "apply_sunday": false - } - ], - "identifier": "Generic Office Occupancy", - "type": "ScheduleRulesetAbridged", - "day_schedules": [ - { - "identifier": "OfficeMedium BLDG_OCC_SCH_Default", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 6, - 0 - ], - [ - 18, - 0 - ] - ], - "values": [ - 0.0, - 0.050000000000000003, - 0.0 - ], - "interpolate": false + "conductivity": 0.029999999999999999, + "roughness": "MediumRough", + "thickness": 0.050000000000000003 + }, + { + "type": "EnergyMaterial", + "specific_heat": 1460.0, + "thermal_absorptance": 0.90000000000000002, + "solar_absorptance": 0.65000000000000002, + "visible_absorptance": 0.65000000000000002, + "density": 1120.0, + "identifier": "Generic Roof Membrane", + "properties": { + "type": "EnergyMaterialProperties", + "ph": { + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0, + "user_data": {} + } }, - { - "identifier": "OfficeMedium BLDG_OCC_SCH_SmrDsn", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 6, - 0 - ], - [ - 22, - 0 - ] - ], - "values": [ - 0.0, - 1.0, - 0.050000000000000003 - ], - "interpolate": false + "conductivity": 0.16, + "roughness": "MediumRough", + "thickness": 0.01 + }, + { + "type": "EnergyMaterial", + "specific_heat": 900.0, + "thermal_absorptance": 0.90000000000000002, + "solar_absorptance": 0.80000000000000004, + "visible_absorptance": 0.80000000000000004, + "density": 2240.0, + "identifier": "Generic HW Concrete", + "properties": { + "type": "EnergyMaterialProperties", + "ph": { + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0, + "user_data": {} + } }, - { - "identifier": "OfficeMedium BLDG_OCC_SCH_WntrDsn", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ] - ], - "values": [ - 0.0 - ], - "interpolate": false + "conductivity": 1.9500000000000000, + "roughness": "MediumRough", + "thickness": 0.20000000000000001 + }, + { + "type": "EnergyMaterial", + "specific_heat": 1090.0, + "thermal_absorptance": 0.90000000000000002, + "solar_absorptance": 0.5, + "visible_absorptance": 0.5, + "density": 800.0, + "identifier": "Generic Gypsum Board", + "properties": { + "type": "EnergyMaterialProperties", + "ph": { + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0, + "user_data": {} + } }, - { - "identifier": "OfficeMedium BLDG_OCC_SCH_Wkdy", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 6, - 0 - ], - [ - 7, - 0 - ], - [ - 8, - 0 - ], - [ - 12, - 0 - ], - [ - 13, - 0 - ], - [ - 17, - 0 - ], - [ - 18, - 0 - ], - [ - 22, - 0 - ] - ], - "values": [ - 0.0, - 0.10000000000000001, - 0.20000000000000001, - 0.94999999999999996, - 0.5, - 0.94999999999999996, - 0.29999999999999999, - 0.10000000000000001, - 0.050000000000000003 - ], - "interpolate": false + "conductivity": 0.16, + "roughness": "MediumSmooth", + "thickness": 0.012699999999999999 + }, + { + "type": "EnergyMaterial", + "specific_heat": 590.0, + "thermal_absorptance": 0.90000000000000002, + "solar_absorptance": 0.20000000000000001, + "visible_absorptance": 0.20000000000000001, + "density": 368.0, + "identifier": "Generic Acoustic Tile", + "properties": { + "type": "EnergyMaterialProperties", + "ph": { + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0, + "user_data": {} + } }, - { - "identifier": "OfficeMedium BLDG_OCC_SCH_Sat", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 6, - 0 - ], - [ - 8, - 0 - ], - [ - 12, - 0 - ], - [ - 17, - 0 - ], - [ - 19, - 0 - ] - ], - "values": [ - 0.0, - 0.10000000000000001, - 0.29999999999999999, - 0.10000000000000001, - 0.050000000000000003, - 0.0 - ], - "interpolate": false - } - ], - "summer_designday_schedule": "OfficeMedium BLDG_OCC_SCH_SmrDsn", - "holiday_schedule": "OfficeMedium BLDG_OCC_SCH_Default", - "properties": { - "ph": { - "type": "ScheduleRulesetPhProperties", - "operating_periods": { - "collection": [] - }, - "operating_days_wk": 7.0, - "id_num": 0, - "operating_weeks_year": 52.142899999999997 - }, - "type": "ScheduleRulesetProperties" - } - }, - { - "default_day_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", - "winter_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", - "schedule_type_limit": "Fractional", - "schedule_rules": [ - { - "apply_wednesday": true, - "apply_saturday": false, - "type": "ScheduleRuleAbridged", - "apply_thursday": true, - "start_date": [ - 1, - 1 - ], - "end_date": [ - 12, - 31 - ], - "apply_monday": true, - "apply_tuesday": true, - "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Wkdy", - "apply_friday": true, - "apply_sunday": false - }, - { - "apply_wednesday": false, - "apply_saturday": true, - "type": "ScheduleRuleAbridged", - "apply_thursday": false, - "start_date": [ - 1, - 1 - ], - "end_date": [ - 12, - 31 - ], - "apply_monday": false, - "apply_tuesday": false, - "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Sat", - "apply_friday": false, - "apply_sunday": false - } - ], - "identifier": "Generic Office Infiltration", - "type": "ScheduleRulesetAbridged", - "day_schedules": [ - { - "identifier": "OfficeMedium INFIL_SCH_PNNL_Default", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ] - ], - "values": [ - 1.0 - ], - "interpolate": false - }, - { - "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 6, - 0 - ], - [ - 22, - 0 - ] - ], - "values": [ - 1.0, - 0.25, - 1.0 - ], - "interpolate": false - }, - { - "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 6, - 0 - ], - [ - 18, - 0 - ] - ], - "values": [ - 1.0, - 0.25, - 1.0 - ], - "interpolate": false - }, - { - "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 6, - 0 - ], - [ - 22, - 0 - ] - ], - "values": [ - 1.0, - 0.25, - 1.0 - ], - "interpolate": false + "conductivity": 0.059999999999999998, + "roughness": "MediumSmooth", + "thickness": 0.02 + }, + { + "emissivity": 0.83999999999999997, + "solar_diffusing": false, + "visible_reflectance_back": 0.080000000000000002, + "dirt_correction": 1.0, + "type": "EnergyWindowMaterialGlazing", + "solar_reflectance": 0.070000000000000007, + "visible_reflectance": 0.080000000000000002, + "infrared_transmittance": 0.0, + "identifier": "Generic Clear Glass", + "thickness": 0.0060000000000000001, + "visible_transmittance": 0.88, + "solar_transmittance": 0.77000000000000002, + "emissivity_back": 0.83999999999999997, + "conductivity": 1.0, + "solar_reflectance_back": 0.070000000000000007 + }, + { + "type": "EnergyMaterial", + "specific_heat": 1210.0, + "thermal_absorptance": 0.90000000000000002, + "solar_absorptance": 0.69999999999999996, + "visible_absorptance": 0.69999999999999996, + "density": 43.0, + "identifier": "Generic 25mm Insulation", + "properties": { + "type": "EnergyMaterialProperties", + "ph": { + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0, + "user_data": {} + } }, - { - "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 6, - 0 - ], - [ - 18, - 0 - ] - ], - "values": [ - 1.0, - 0.25, - 1.0 - ], - "interpolate": false - } - ], - "summer_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", - "holiday_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", - "properties": { - "ph": { - "type": "ScheduleRulesetPhProperties", - "operating_periods": { - "collection": [] - }, - "operating_days_wk": 7.0, - "id_num": 0, - "operating_weeks_year": 52.142899999999997 + "conductivity": 0.029999999999999999, + "roughness": "MediumRough", + "thickness": 0.025000000000000001 + }, + { + "type": "EnergyMaterial", + "specific_heat": 1000.0, + "thermal_absorptance": 0.90000000000000002, + "solar_absorptance": 0.69999999999999996, + "visible_absorptance": 0.69999999999999996, + "density": 1.2800000000000000, + "identifier": "Generic Ceiling Air Gap", + "properties": { + "type": "EnergyMaterialProperties", + "ph": { + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0, + "user_data": {} + } }, - "type": "ScheduleRulesetProperties" + "conductivity": 0.55600000000000005, + "roughness": "Smooth", + "thickness": 0.10000000000000001 } + ], + "wall_set": { + "type": "WallConstructionSetAbridged", + "interior_construction": "Generic Interior Wall", + "ground_construction": "Generic Underground Wall", + "exterior_construction": "Generic Exterior Wall" }, - { - "default_day_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", - "winter_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", - "schedule_type_limit": "Temperature", - "schedule_rules": [ - { - "apply_wednesday": true, - "apply_saturday": false, - "type": "ScheduleRuleAbridged", - "apply_thursday": true, - "start_date": [ - 1, - 1 - ], - "end_date": [ - 12, - 31 - ], - "apply_monday": true, - "apply_tuesday": true, - "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", - "apply_friday": true, - "apply_sunday": false - }, - { - "apply_wednesday": false, - "apply_saturday": true, - "type": "ScheduleRuleAbridged", - "apply_thursday": false, - "start_date": [ - 1, - 1 - ], - "end_date": [ - 12, - 31 - ], - "apply_monday": false, - "apply_tuesday": false, - "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", - "apply_friday": false, - "apply_sunday": false - } - ], - "identifier": "Generic Office Cooling", - "type": "ScheduleRulesetAbridged", - "day_schedules": [ - { - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ] - ], - "values": [ - 26.699999999999999 - ], - "interpolate": false - }, - { - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 5, - 0 - ], - [ - 6, - 0 - ], - [ - 7, - 0 - ], - [ - 22, - 0 - ] - ], - "values": [ - 26.699999999999999, - 25.699999999999999, - 25.0, - 24.0, - 26.699999999999999 - ], - "interpolate": false - }, - { - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ] - ], - "values": [ - 26.699999999999999 - ], - "interpolate": false + "constructions": [ + { + "type": "ShadeConstruction", + "visible_reflectance": 0.20000000000000001, + "is_specular": false, + "identifier": "Generic Context", + "solar_reflectance": 0.20000000000000001 + }, + { + "type": "ShadeConstruction", + "visible_reflectance": 0.34999999999999998, + "is_specular": false, + "identifier": "Generic Shade", + "solar_reflectance": 0.34999999999999998 + }, + { + "type": "AirBoundaryConstructionAbridged", + "air_mixing_per_area": 0.10000000000000001, + "air_mixing_schedule": "Always On", + "identifier": "Generic Air Boundary" + }, + { + "type": "WindowConstructionAbridged", + "properties": { + "type": "WindowConstructionProperties", + "ph": { + "type": "WindowConstructionPhProperties", + "id_num": 0 + } }, - { - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 5, - 0 - ], - [ - 6, - 0 - ], - [ - 7, - 0 - ], - [ - 22, - 0 - ] - ], - "values": [ - 26.699999999999999, - 25.600000000000001, - 25.0, - 24.0, - 26.699999999999999 - ], - "interpolate": false + "materials": [ + "Generic Clear Glass" + ], + "identifier": "Generic Single Pane" + }, + { + "type": "OpaqueConstructionAbridged", + "materials": [ + "Generic 25mm Wood" + ], + "identifier": "Generic Interior Door" + }, + { + "type": "OpaqueConstructionAbridged", + "materials": [ + "Generic Gypsum Board", + "Generic Wall Air Gap", + "Generic Gypsum Board" + ], + "identifier": "Generic Interior Wall" + }, + { + "type": "OpaqueConstructionAbridged", + "materials": [ + "Generic 50mm Insulation", + "Generic HW Concrete" + ], + "identifier": "Generic Ground Slab" + }, + { + "type": "OpaqueConstructionAbridged", + "materials": [ + "Generic Brick", + "Generic LW Concrete", + "Generic 50mm Insulation", + "Generic Wall Air Gap", + "Generic Gypsum Board" + ], + "identifier": "Generic Exterior Wall" + }, + { + "type": "OpaqueConstructionAbridged", + "materials": [ + "Generic 50mm Insulation", + "Generic HW Concrete", + "Generic Wall Air Gap", + "Generic Gypsum Board" + ], + "identifier": "Generic Underground Wall" + }, + { + "type": "OpaqueConstructionAbridged", + "materials": [ + "Generic Painted Metal", + "Generic 25mm Insulation", + "Generic Painted Metal" + ], + "identifier": "Generic Exterior Door" + }, + { + "type": "OpaqueConstructionAbridged", + "materials": [ + "Generic 50mm Insulation", + "Generic HW Concrete", + "Generic Ceiling Air Gap", + "Generic Acoustic Tile" + ], + "identifier": "Generic Underground Roof" + }, + { + "type": "OpaqueConstructionAbridged", + "materials": [ + "Generic LW Concrete", + "Generic Ceiling Air Gap", + "Generic Acoustic Tile" + ], + "identifier": "Generic Interior Ceiling" + }, + { + "type": "OpaqueConstructionAbridged", + "materials": [ + "Generic Acoustic Tile", + "Generic Ceiling Air Gap", + "Generic LW Concrete" + ], + "identifier": "Generic Interior Floor" + }, + { + "type": "WindowConstructionAbridged", + "properties": { + "type": "WindowConstructionProperties", + "ph": { + "type": "WindowConstructionPhProperties", + "id_num": 0 + } }, - { - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 5, - 0 - ], - [ - 6, - 0 - ], - [ - 7, - 0 - ], - [ - 17, - 0 - ] - ], - "values": [ - 26.699999999999999, - 25.699999999999999, - 25.0, - 24.0, - 26.699999999999999 - ], - "interpolate": false - } - ], - "summer_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", - "holiday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", - "properties": { - "ph": { - "type": "ScheduleRulesetPhProperties", - "operating_periods": { - "collection": [] - }, - "operating_days_wk": 7.0, - "id_num": 0, - "operating_weeks_year": 52.142899999999997 - }, - "type": "ScheduleRulesetProperties" + "materials": [ + "Generic Low-e Glass", + "Generic Window Air Gap", + "Generic Clear Glass" + ], + "identifier": "Generic Double Pane" + }, + { + "type": "OpaqueConstructionAbridged", + "materials": [ + "Generic Painted Metal", + "Generic Ceiling Air Gap", + "Generic 50mm Insulation", + "Generic LW Concrete" + ], + "identifier": "Generic Exposed Floor" + }, + { + "type": "OpaqueConstructionAbridged", + "materials": [ + "Generic Roof Membrane", + "Generic 50mm Insulation", + "Generic LW Concrete", + "Generic Ceiling Air Gap", + "Generic Acoustic Tile" + ], + "identifier": "Generic Roof" } + ], + "shade_construction": "Generic Shade", + "floor_set": { + "type": "FloorConstructionSetAbridged", + "interior_construction": "Generic Interior Floor", + "ground_construction": "Generic Ground Slab", + "exterior_construction": "Generic Exposed Floor" }, + "roof_ceiling_set": { + "type": "RoofCeilingConstructionSetAbridged", + "interior_construction": "Generic Interior Ceiling", + "ground_construction": "Generic Underground Roof", + "exterior_construction": "Generic Roof" + } + }, + "construction_sets": [ { - "default_day_schedule": "Always On_Day Schedule", - "schedule_type_limit": "Fractional", - "identifier": "Always On", - "type": "ScheduleRulesetAbridged", - "day_schedules": [ - { - "identifier": "Always On_Day Schedule", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ] - ], - "values": [ - 1.0 - ], - "interpolate": false - } - ], - "properties": { - "ph": { - "type": "ScheduleRulesetPhProperties", - "operating_periods": { - "collection": [] - }, - "operating_days_wk": 7.0, - "id_num": 0, - "operating_weeks_year": 52.142899999999997 - }, - "type": "ScheduleRulesetProperties" + "type": "ConstructionSetAbridged", + "aperture_set": { + "type": "ApertureConstructionSetAbridged", + "interior_construction": null, + "skylight_construction": "PhWindowConstruction_40ea049d", + "window_construction": "PhWindowConstruction_40ea049d", + "operable_construction": "PhWindowConstruction_40ea049d" + }, + "door_set": { + "type": "DoorConstructionSetAbridged", + "interior_construction": null, + "exterior_glass_construction": "PhWindowConstruction_40ea049d", + "overhead_construction": null, + "exterior_construction": null, + "interior_glass_construction": null + }, + "air_boundary_construction": null, + "wall_set": { + "type": "WallConstructionSetAbridged", + "interior_construction": null, + "ground_construction": null, + "exterior_construction": null + }, + "shade_construction": null, + "identifier": "ConstructionSet_33119ef8", + "floor_set": { + "type": "FloorConstructionSetAbridged", + "interior_construction": null, + "ground_construction": null, + "exterior_construction": null + }, + "roof_ceiling_set": { + "type": "RoofCeilingConstructionSetAbridged", + "interior_construction": null, + "ground_construction": null, + "exterior_construction": null } }, { - "default_day_schedule": "Seated Adult Activity_Day Schedule", - "schedule_type_limit": "Activity Level", - "identifier": "Seated Adult Activity", - "type": "ScheduleRulesetAbridged", - "day_schedules": [ - { - "identifier": "Seated Adult Activity_Day Schedule", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ] - ], - "values": [ - 120.0 - ], - "interpolate": false - } - ], + "type": "ConstructionSetAbridged", + "aperture_set": { + "type": "ApertureConstructionSetAbridged", + "interior_construction": null, + "skylight_construction": "PhWindowConstruction_93d72626", + "window_construction": "PhWindowConstruction_93d72626", + "operable_construction": "PhWindowConstruction_93d72626" + }, + "door_set": { + "type": "DoorConstructionSetAbridged", + "interior_construction": null, + "exterior_glass_construction": "PhWindowConstruction_93d72626", + "overhead_construction": null, + "exterior_construction": null, + "interior_glass_construction": null + }, + "air_boundary_construction": null, + "wall_set": { + "type": "WallConstructionSetAbridged", + "interior_construction": null, + "ground_construction": null, + "exterior_construction": null + }, + "shade_construction": null, + "identifier": "ConstructionSet_e78b3cfb", + "floor_set": { + "type": "FloorConstructionSetAbridged", + "interior_construction": null, + "ground_construction": null, + "exterior_construction": null + }, + "roof_ceiling_set": { + "type": "RoofCeilingConstructionSetAbridged", + "interior_construction": null, + "ground_construction": null, + "exterior_construction": null + } + } + ], + "constructions": [ + { + "type": "WindowConstructionAbridged", "properties": { + "type": "WindowConstructionProperties", "ph": { - "type": "ScheduleRulesetPhProperties", - "operating_periods": { - "collection": [] + "type": "WindowConstructionPhProperties", + "ph_glazing": { + "user_data": {}, + "u_factor": 0.80000000000000004, + "id_num": 0, + "g_value": 0.40000000000000002, + "identifier": "PhWindowGlazing_3dd955cd", + "display_name": "PhWindowGlazing_3dd955cd" }, - "operating_days_wk": 7.0, "id_num": 0, - "operating_weeks_year": 52.142899999999997 - }, - "type": "ScheduleRulesetProperties" - } - }, - { - "default_day_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", - "winter_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", - "schedule_type_limit": "Temperature", - "schedule_rules": [ - { - "apply_wednesday": true, - "apply_saturday": false, - "type": "ScheduleRuleAbridged", - "apply_thursday": true, - "start_date": [ - 1, - 1 - ], - "end_date": [ - 12, - 31 - ], - "apply_monday": true, - "apply_tuesday": true, - "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", - "apply_friday": true, - "apply_sunday": false - }, - { - "apply_wednesday": false, - "apply_saturday": true, - "type": "ScheduleRuleAbridged", - "apply_thursday": false, - "start_date": [ - 1, - 1 - ], - "end_date": [ - 12, - 31 - ], - "apply_monday": false, - "apply_tuesday": false, - "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", - "apply_friday": false, - "apply_sunday": false + "ph_frame": { + "user_data": {}, + "bottom": { + "user_data": {}, + "psi_install": 0.040000000000000001, + "u_factor": 0.123, + "psi_glazing": 0.040000000000000001, + "id_num": 0, + "chi_value": 0.0, + "identifier": "PhWindowFrameElement_abf0da05", + "display_name": "PhWindowFrameElement_abf0da05", + "width": 0.10000000000000001 + }, + "id_num": 0, + "top": { + "user_data": {}, + "psi_install": 0.040000000000000001, + "u_factor": 0.123, + "psi_glazing": 0.040000000000000001, + "id_num": 0, + "chi_value": 0.0, + "identifier": "PhWindowFrameElement_abf0da05", + "display_name": "PhWindowFrameElement_abf0da05", + "width": 0.10000000000000001 + }, + "left": { + "user_data": {}, + "psi_install": 0.040000000000000001, + "u_factor": 0.123, + "psi_glazing": 0.040000000000000001, + "id_num": 0, + "chi_value": 0.0, + "identifier": "PhWindowFrameElement_abf0da05", + "display_name": "PhWindowFrameElement_abf0da05", + "width": 0.10000000000000001 + }, + "identifier": "PhWindowFrame_a53298b3", + "display_name": "PhWindowFrame_a53298b3", + "right": { + "user_data": {}, + "psi_install": 0.040000000000000001, + "u_factor": 0.123, + "psi_glazing": 0.040000000000000001, + "id_num": 0, + "chi_value": 0.0, + "identifier": "PhWindowFrameElement_abf0da05", + "display_name": "PhWindowFrameElement_abf0da05", + "width": 0.10000000000000001 + } + } } + }, + "materials": [ + "PhWindowConstruction_40ea049d" ], - "identifier": "Generic Office Heating", - "type": "ScheduleRulesetAbridged", - "day_schedules": [ - { - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ] - ], - "values": [ - 15.600000000000000 - ], - "interpolate": false - }, - { - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ] - ], - "values": [ - 15.600000000000000 - ], - "interpolate": false - }, - { - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 5, - 0 - ], - [ - 6, - 0 - ], - [ - 7, - 0 - ], - [ - 22, - 0 - ] - ], - "values": [ - 15.600000000000000, - 17.600000000000001, - 19.600000000000001, - 21.0, - 15.600000000000000 - ], - "interpolate": false - }, - { - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 5, - 0 - ], - [ - 6, - 0 - ], - [ - 7, - 0 - ], - [ - 22, - 0 - ] - ], - "values": [ - 15.600000000000000, - 17.800000000000001, - 20.0, - 21.0, - 15.600000000000000 - ], - "interpolate": false - }, - { - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 5, - 0 - ], - [ - 6, - 0 - ], - [ - 7, - 0 - ], - [ - 17, - 0 - ] - ], - "values": [ - 15.600000000000000, - 17.800000000000001, - 20.0, - 21.0, - 15.600000000000000 - ], - "interpolate": false - } - ], - "summer_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", - "holiday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", + "identifier": "PhWindowConstruction_40ea049d" + }, + { + "type": "WindowConstructionShadeAbridged", "properties": { + "type": "WindowConstructionShadeProperties", "ph": { - "type": "ScheduleRulesetPhProperties", - "operating_periods": { - "collection": [] - }, - "operating_days_wk": 7.0, - "id_num": 0, - "operating_weeks_year": 52.142899999999997 + "type": "WindowConstructionShadePhProperties", + "id_num": 0 + } + }, + "window_construction": { + "type": "WindowConstructionAbridged", + "properties": { + "type": "WindowConstructionProperties", + "ph": { + "type": "WindowConstructionPhProperties", + "ph_glazing": { + "user_data": {}, + "u_factor": 0.80000000000000004, + "id_num": 0, + "g_value": 0.40000000000000002, + "identifier": "PhWindowGlazing_76affcb2", + "display_name": "PhWindowGlazing_76affcb2" + }, + "id_num": 0, + "ph_frame": { + "user_data": {}, + "bottom": { + "user_data": {}, + "psi_install": 0.040000000000000001, + "u_factor": 1.0, + "psi_glazing": 0.040000000000000001, + "id_num": 0, + "chi_value": 0.0, + "identifier": "PhWindowFrameElement_0f781d50", + "display_name": "PhWindowFrameElement_0f781d50", + "width": 0.10000000000000001 + }, + "id_num": 0, + "top": { + "user_data": {}, + "psi_install": 0.040000000000000001, + "u_factor": 1.0, + "psi_glazing": 0.040000000000000001, + "id_num": 0, + "chi_value": 0.0, + "identifier": "PhWindowFrameElement_0f781d50", + "display_name": "PhWindowFrameElement_0f781d50", + "width": 0.10000000000000001 + }, + "left": { + "user_data": {}, + "psi_install": 0.040000000000000001, + "u_factor": 1.0, + "psi_glazing": 0.040000000000000001, + "id_num": 0, + "chi_value": 0.0, + "identifier": "PhWindowFrameElement_0f781d50", + "display_name": "PhWindowFrameElement_0f781d50", + "width": 0.10000000000000001 + }, + "identifier": "PhWindowFrame_598cd821", + "display_name": "PhWindowFrame_598cd821", + "right": { + "user_data": {}, + "psi_install": 0.040000000000000001, + "u_factor": 1.0, + "psi_glazing": 0.040000000000000001, + "id_num": 0, + "chi_value": 0.0, + "identifier": "PhWindowFrameElement_0f781d50", + "display_name": "PhWindowFrameElement_0f781d50", + "width": 0.10000000000000001 + } + } + } }, - "type": "ScheduleRulesetProperties" + "materials": [ + "PhWindowConstruction_93d72626" + ], + "identifier": "PhWindowConstruction_93d72626" + }, + "control_type": "AlwaysOn", + "identifier": "PhWindowConstruction_93d72626", + "shade_material": "test-shade", + "shade_location": "Interior" + } + ], + "ventilation_simulation_control": { + "type": "VentilationSimulationControl", + "reference_pressure": 101325.0, + "reference_temperature": 20.0, + "aspect_ratio": 1.0, + "building_type": "LowRise", + "long_axis_angle": 0.0, + "vent_control_type": "SingleZone", + "reference_humidity_ratio": 0.0 + }, + "hvacs": [ + { + "type": "IdealAirSystemAbridged", + "heating_limit": { + "type": "Autosize" + }, + "sensible_heat_recovery": 0.0, + "latent_heat_recovery": 0.0, + "demand_controlled_ventilation": false, + "cooling_air_temperature": 13.0, + "economizer_type": "DifferentialDryBulb", + "identifier": "Room_3_e338eb50 Ideal Loads Air System", + "heating_air_temperature": 50.0, + "cooling_limit": { + "type": "Autosize" } }, { - "default_day_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", - "winter_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", - "schedule_type_limit": "Fractional", - "schedule_rules": [ - { - "apply_wednesday": true, - "apply_saturday": false, - "type": "ScheduleRuleAbridged", - "apply_thursday": true, - "start_date": [ - 1, - 1 - ], - "end_date": [ - 12, - 31 - ], - "apply_monday": true, - "apply_tuesday": true, - "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", - "apply_friday": true, - "apply_sunday": false - }, - { - "apply_wednesday": false, - "apply_saturday": true, - "type": "ScheduleRuleAbridged", - "apply_thursday": false, - "start_date": [ - 1, - 1 - ], - "end_date": [ - 12, - 31 - ], - "apply_monday": false, - "apply_tuesday": false, - "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", - "apply_friday": false, - "apply_sunday": false - } - ], - "identifier": "Generic Office Lighting", - "type": "ScheduleRulesetAbridged", - "day_schedules": [ - { - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 6, - 0 - ], - [ - 18, - 0 - ] - ], - "values": [ - 0.050000000000000003, - 0.04311628, - 0.050000000000000003 - ], - "interpolate": false - }, - { - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ] - ], - "values": [ - 1.0 - ], - "interpolate": false - }, - { - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ] - ], - "values": [ - 0.0 - ], - "interpolate": false - }, - { - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 6, - 0 - ], - [ - 8, - 0 - ], - [ - 12, - 0 - ], - [ - 17, - 0 - ], - [ - 19, - 0 - ] - ], - "values": [ - 0.050000000000000003, - 0.08623256, - 0.25869767999999999, - 0.12934883999999999, - 0.04311628, - 0.050000000000000003 - ], - "interpolate": false - }, - { - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 5, - 0 - ], - [ - 6, - 0 - ], - [ - 7, - 0 - ], - [ - 8, - 0 - ], - [ - 17, - 0 - ], - [ - 18, - 0 - ], - [ - 20, - 0 - ], - [ - 22, - 0 - ], - [ - 23, - 0 - ] - ], - "values": [ - 0.050000000000000003, - 0.10000000000000001, - 0.08623256, - 0.25869767999999999, - 0.77609304000000001, - 0.43116280000000001, - 0.25869767999999999, - 0.17246512, - 0.08623256, - 0.04311628 - ], - "interpolate": false - } - ], - "summer_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", - "holiday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", - "properties": { - "ph": { - "type": "ScheduleRulesetPhProperties", - "operating_periods": { - "collection": [] - }, - "operating_days_wk": 7.0, - "id_num": 0, - "operating_weeks_year": 52.142899999999997 - }, - "type": "ScheduleRulesetProperties" + "type": "IdealAirSystemAbridged", + "heating_limit": { + "type": "Autosize" + }, + "sensible_heat_recovery": 0.0, + "latent_heat_recovery": 0.0, + "demand_controlled_ventilation": false, + "cooling_air_temperature": 13.0, + "economizer_type": "DifferentialDryBulb", + "identifier": "Room_4_33d6ae6b Ideal Loads Air System", + "heating_air_temperature": 50.0, + "cooling_limit": { + "type": "Autosize" } } ], - "global_construction_set": { - "door_set": { - "exterior_glass_construction": "Generic Double Pane", - "type": "DoorConstructionSetAbridged", - "interior_construction": "Generic Interior Door", - "exterior_construction": "Generic Exterior Door", - "interior_glass_construction": "Generic Single Pane", - "overhead_construction": "Generic Exterior Door" + "schedule_type_limits": [ + { + "type": "ScheduleTypeLimit", + "unit_type": "Dimensionless", + "upper_limit": 1.0, + "lower_limit": 0.0, + "numeric_type": "Continuous", + "identifier": "Fractional" }, - "context_construction": "Generic Context", - "shade_construction": "Generic Shade", - "type": "GlobalConstructionSet", - "wall_set": { - "interior_construction": "Generic Interior Wall", - "type": "WallConstructionSetAbridged", - "exterior_construction": "Generic Exterior Wall", - "ground_construction": "Generic Underground Wall" + { + "type": "ScheduleTypeLimit", + "unit_type": "ActivityLevel", + "upper_limit": { + "type": "NoLimit" + }, + "lower_limit": 0.0, + "numeric_type": "Continuous", + "identifier": "Activity Level" }, + { + "type": "ScheduleTypeLimit", + "unit_type": "Temperature", + "upper_limit": { + "type": "NoLimit" + }, + "lower_limit": -273.14999999999998, + "numeric_type": "Continuous", + "identifier": "Temperature" + } + ] + }, + "ph_hvac": { + "type": "ModelPhHvacPropertiesAbridged" + }, + "radiance": { + "type": "ModelRadianceProperties", + "modifiers": [ + { + "type": "Plastic", + "specularity": 0.0, + "dependencies": [], + "modifier": null, + "identifier": "generic_context_0.20", + "r_reflectance": 0.20000000000000001, + "b_reflectance": 0.20000000000000001, + "roughness": 0.0, + "g_reflectance": 0.20000000000000001 + } + ], + "global_modifier_set": { + "type": "GlobalModifierSet", "aperture_set": { - "skylight_construction": "Generic Double Pane", - "type": "ApertureConstructionSetAbridged", - "interior_construction": "Generic Single Pane", - "operable_construction": "Generic Double Pane", - "window_construction": "Generic Double Pane" + "type": "ApertureModifierSetAbridged", + "window_modifier": "generic_exterior_window_vis_0.64", + "skylight_modifier": "generic_exterior_window_vis_0.64", + "interior_modifier": "generic_interior_window_vis_0.88", + "operable_modifier": "generic_exterior_window_vis_0.64" }, - "floor_set": { - "interior_construction": "Generic Interior Floor", - "type": "FloorConstructionSetAbridged", - "exterior_construction": "Generic Exposed Floor", - "ground_construction": "Generic Ground Slab" + "door_set": { + "type": "DoorModifierSetAbridged", + "overhead_modifier": "generic_opaque_door_0.50", + "exterior_modifier": "generic_opaque_door_0.50", + "exterior_glass_modifier": "generic_exterior_window_vis_0.64", + "interior_glass_modifier": "generic_interior_window_vis_0.88", + "interior_modifier": "generic_opaque_door_0.50" }, - "air_boundary_construction": "Generic Air Boundary", - "roof_ceiling_set": { - "interior_construction": "Generic Interior Ceiling", - "type": "RoofCeilingConstructionSetAbridged", - "exterior_construction": "Generic Roof", - "ground_construction": "Generic Underground Roof" + "shade_set": { + "type": "ShadeModifierSetAbridged", + "exterior_modifier": "generic_exterior_shade_0.35", + "interior_modifier": "generic_interior_shade_0.50" }, - "materials": [ + "context_modifier": "generic_context_0.20", + "wall_set": { + "type": "WallModifierSetAbridged", + "exterior_modifier": "generic_wall_0.50", + "interior_modifier": "generic_wall_0.50" + }, + "floor_set": { + "type": "FloorModifierSetAbridged", + "exterior_modifier": "generic_floor_0.20", + "interior_modifier": "generic_floor_0.20" + }, + "air_boundary_modifier": "air_boundary", + "modifiers": [ { - "properties": { - "ph": { - "user_data": {}, - "id_num": 0, - "divisions": { - "column_widths": [], - "row_heights": [], - "cells": [] - } - }, - "type": "EnergyMaterialProperties" - }, - "density": 800.0, - "type": "EnergyMaterial", - "thickness": 0.012699999999999999, - "identifier": "Generic Gypsum Board", - "roughness": "MediumSmooth", - "conductivity": 0.16, - "specific_heat": 1090.0, - "thermal_absorptance": 0.90000000000000002, - "solar_absorptance": 0.5, - "visible_absorptance": 0.5 + "dependencies": [], + "modifier": null, + "identifier": "generic_exterior_window_vis_0.64", + "r_transmissivity": 0.69757618153843315, + "b_transmissivity": 0.69757618153843315, + "type": "Glass", + "g_transmissivity": 0.69757618153843315, + "refraction_index": null }, { - "properties": { - "ph": { - "user_data": {}, - "id_num": 0, - "divisions": { - "column_widths": [], - "row_heights": [], - "cells": [] - } - }, - "type": "EnergyMaterialProperties" - }, - "density": 1280.0, - "type": "EnergyMaterial", - "thickness": 0.10000000000000001, - "identifier": "Generic LW Concrete", - "roughness": "MediumRough", - "conductivity": 0.53000000000000003, - "specific_heat": 840.0, - "thermal_absorptance": 0.90000000000000002, - "solar_absorptance": 0.80000000000000004, - "visible_absorptance": 0.80000000000000004 + "type": "Plastic", + "specularity": 0.0, + "dependencies": [], + "modifier": null, + "identifier": "generic_ceiling_0.80", + "r_reflectance": 0.80000000000000004, + "b_reflectance": 0.80000000000000004, + "roughness": 0.0, + "g_reflectance": 0.80000000000000004 }, { - "identifier": "Generic Window Air Gap", - "type": "EnergyWindowMaterialGas", - "thickness": 0.012699999999999999, - "gas_type": "Air" + "type": "Plastic", + "specularity": 0.0, + "dependencies": [], + "modifier": null, + "identifier": "generic_floor_0.20", + "r_reflectance": 0.20000000000000001, + "b_reflectance": 0.20000000000000001, + "roughness": 0.0, + "g_reflectance": 0.20000000000000001 }, { - "properties": { - "ph": { - "user_data": {}, - "id_num": 0, - "divisions": { - "column_widths": [], - "row_heights": [], - "cells": [] - } - }, - "type": "EnergyMaterialProperties" - }, - "density": 1920.0, - "type": "EnergyMaterial", - "thickness": 0.10000000000000001, - "identifier": "Generic Brick", - "roughness": "MediumRough", - "conductivity": 0.90000000000000002, - "specific_heat": 790.0, - "thermal_absorptance": 0.90000000000000002, - "solar_absorptance": 0.65000000000000002, - "visible_absorptance": 0.65000000000000002 + "type": "Plastic", + "specularity": 0.0, + "dependencies": [], + "modifier": null, + "identifier": "generic_interior_shade_0.50", + "r_reflectance": 0.5, + "b_reflectance": 0.5, + "roughness": 0.0, + "g_reflectance": 0.5 }, { - "properties": { - "ph": { - "user_data": {}, - "id_num": 0, - "divisions": { - "column_widths": [], - "row_heights": [], - "cells": [] - } - }, - "type": "EnergyMaterialProperties" - }, - "density": 1.2800000000000000, - "type": "EnergyMaterial", - "thickness": 0.10000000000000001, - "identifier": "Generic Wall Air Gap", - "roughness": "Smooth", - "conductivity": 0.66700000000000004, - "specific_heat": 1000.0, - "thermal_absorptance": 0.90000000000000002, - "solar_absorptance": 0.69999999999999996, - "visible_absorptance": 0.69999999999999996 + "dependencies": [], + "modifier": null, + "identifier": "generic_interior_window_vis_0.88", + "r_transmissivity": 0.95841543286105957, + "b_transmissivity": 0.95841543286105957, + "type": "Glass", + "g_transmissivity": 0.95841543286105957, + "refraction_index": null }, { - "properties": { - "ph": { - "user_data": {}, - "id_num": 0, - "divisions": { - "column_widths": [], - "row_heights": [], - "cells": [] - } - }, - "type": "EnergyMaterialProperties" - }, - "density": 43.0, - "type": "EnergyMaterial", - "thickness": 0.025000000000000001, - "identifier": "Generic 25mm Insulation", - "roughness": "MediumRough", - "conductivity": 0.029999999999999999, - "specific_heat": 1210.0, - "thermal_absorptance": 0.90000000000000002, - "solar_absorptance": 0.69999999999999996, - "visible_absorptance": 0.69999999999999996 + "type": "Plastic", + "specularity": 0.0, + "dependencies": [], + "modifier": null, + "identifier": "generic_exterior_shade_0.35", + "r_reflectance": 0.34999999999999998, + "b_reflectance": 0.34999999999999998, + "roughness": 0.0, + "g_reflectance": 0.34999999999999998 }, { - "properties": { - "ph": { - "user_data": {}, - "id_num": 0, - "divisions": { - "column_widths": [], - "row_heights": [], - "cells": [] - } - }, - "type": "EnergyMaterialProperties" - }, - "density": 1.2800000000000000, - "type": "EnergyMaterial", - "thickness": 0.10000000000000001, - "identifier": "Generic Ceiling Air Gap", - "roughness": "Smooth", - "conductivity": 0.55600000000000005, - "specific_heat": 1000.0, - "thermal_absorptance": 0.90000000000000002, - "solar_absorptance": 0.69999999999999996, - "visible_absorptance": 0.69999999999999996 + "type": "Plastic", + "specularity": 0.0, + "dependencies": [], + "modifier": null, + "identifier": "generic_opaque_door_0.50", + "r_reflectance": 0.5, + "b_reflectance": 0.5, + "roughness": 0.0, + "g_reflectance": 0.5 }, { - "properties": { - "ph": { - "user_data": {}, - "id_num": 0, - "divisions": { - "column_widths": [], - "row_heights": [], - "cells": [] - } - }, - "type": "EnergyMaterialProperties" - }, - "density": 7690.0, - "type": "EnergyMaterial", - "thickness": 0.0015, - "identifier": "Generic Painted Metal", - "roughness": "Smooth", - "conductivity": 45.0, - "specific_heat": 410.0, - "thermal_absorptance": 0.90000000000000002, - "solar_absorptance": 0.5, - "visible_absorptance": 0.5 + "specularity": 0.0, + "dependencies": [], + "transmitted_spec": 1.0, + "modifier": null, + "identifier": "air_boundary", + "transmitted_diff": 1.0, + "r_reflectance": 1.0, + "type": "Trans", + "b_reflectance": 1.0, + "g_reflectance": 1.0, + "roughness": 0.0 }, { - "properties": { - "ph": { - "user_data": {}, - "id_num": 0, - "divisions": { - "column_widths": [], - "row_heights": [], - "cells": [] - } - }, - "type": "EnergyMaterialProperties" - }, - "density": 1120.0, - "type": "EnergyMaterial", - "thickness": 0.01, - "identifier": "Generic Roof Membrane", - "roughness": "MediumRough", - "conductivity": 0.16, - "specific_heat": 1460.0, - "thermal_absorptance": 0.90000000000000002, - "solar_absorptance": 0.65000000000000002, - "visible_absorptance": 0.65000000000000002 + "type": "Plastic", + "specularity": 0.0, + "dependencies": [], + "modifier": null, + "identifier": "generic_wall_0.50", + "r_reflectance": 0.5, + "b_reflectance": 0.5, + "roughness": 0.0, + "g_reflectance": 0.5 }, { - "properties": { - "ph": { - "user_data": {}, - "id_num": 0, - "divisions": { - "column_widths": [], - "row_heights": [], - "cells": [] + "type": "Plastic", + "specularity": 0.0, + "dependencies": [], + "modifier": null, + "identifier": "generic_context_0.20", + "r_reflectance": 0.20000000000000001, + "b_reflectance": 0.20000000000000001, + "roughness": 0.0, + "g_reflectance": 0.20000000000000001 + } + ], + "roof_ceiling_set": { + "type": "RoofCeilingModifierSetAbridged", + "exterior_modifier": "generic_ceiling_0.80", + "interior_modifier": "generic_ceiling_0.80" + } + }, + "modifier_sets": [] + } + }, + "version": "1.55.0", + "tolerance": 0.001, + "identifier": "unnamed_d062f9fd", + "display_name": "unnamed", + "angle_tolerance": 1.0, + "rooms": [ + { + "type": "Room", + "story": "1", + "faces": [ + { + "type": "Face", + "face_type": "Wall", + "apertures": [ + { + "type": "Aperture", + "properties": { + "type": "AperturePropertiesAbridged", + "ph": { + "type": "AperturePhPropertiesAbridged", + "install_depth": 0.1016, + "winter_shading_factor": 0.75, + "summer_shading_factor": 0.75, + "id_num": 0, + "default_monthly_shading_correction_factor": 1.0, + "variant_type": "_unnamed_type_" + }, + "energy": { + "type": "ApertureEnergyPropertiesAbridged" + }, + "ph_hvac": { + "type": "AperturePhHvacProperties" + }, + "radiance": { + "type": "ApertureRadiancePropertiesAbridged" } }, - "type": "EnergyMaterialProperties" - }, - "density": 608.0, - "type": "EnergyMaterial", - "thickness": 0.025399999999999999, - "identifier": "Generic 25mm Wood", - "roughness": "MediumSmooth", - "conductivity": 0.14999999999999999, - "specific_heat": 1630.0, - "thermal_absorptance": 0.90000000000000002, - "solar_absorptance": 0.5, - "visible_absorptance": 0.5 - }, - { - "properties": { - "ph": { - "user_data": {}, - "id_num": 0, - "divisions": { - "column_widths": [], - "row_heights": [], - "cells": [] - } + "geometry": { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + 0.98480775301220813, + -0.17364817766693039, + 0.0 + ], + "n": [ + 0.17364817766693039, + 0.98480775301220813, + 0.0 + ], + "o": [ + 0.89149122936767267, + -5.6571939568024794, + 2.7568536488623963 + ] + }, + "boundary": [ + [ + 4.5249514121994716, + -6.2978710203656378, + 2.7568536488623963 + ], + [ + 4.5249514121994716, + -6.2978710203656378, + 0.54314635113760423 + ], + [ + 0.89149122936767267, + -5.6571939568024794, + 0.54314635113760423 + ], + [ + 0.89149122936767267, + -5.6571939568024794, + 2.7568536488623963 + ] + ] }, - "type": "EnergyMaterialProperties" + "is_operable": false, + "identifier": "Room_3_e338eb50..Face0_Glz0", + "display_name": "Room_3_e338eb50..Face0_Glz0", + "boundary_condition": { + "type": "Outdoors", + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" + }, + "sun_exposure": true + } + } + ], + "properties": { + "type": "FacePropertiesAbridged", + "ph": { + "type": "FacePhPropertiesAbridged", + "id_num": 0 }, - "density": 368.0, - "type": "EnergyMaterial", - "thickness": 0.02, - "identifier": "Generic Acoustic Tile", - "roughness": "MediumSmooth", - "conductivity": 0.059999999999999998, - "specific_heat": 590.0, - "thermal_absorptance": 0.90000000000000002, - "solar_absorptance": 0.20000000000000001, - "visible_absorptance": 0.20000000000000001 - }, - { - "properties": { - "ph": { - "user_data": {}, - "id_num": 0, - "divisions": { - "column_widths": [], - "row_heights": [], - "cells": [] - } - }, - "type": "EnergyMaterialProperties" + "energy": { + "type": "FaceEnergyPropertiesAbridged" }, - "density": 2240.0, - "type": "EnergyMaterial", - "thickness": 0.20000000000000001, - "identifier": "Generic HW Concrete", - "roughness": "MediumRough", - "conductivity": 1.9500000000000000, - "specific_heat": 900.0, - "thermal_absorptance": 0.90000000000000002, - "solar_absorptance": 0.80000000000000004, - "visible_absorptance": 0.80000000000000004 - }, - { - "dirt_correction": 1.0, - "type": "EnergyWindowMaterialGlazing", - "identifier": "Generic Low-e Glass", - "emissivity": 0.83999999999999997, - "solar_reflectance": 0.35999999999999999, - "thickness": 0.0060000000000000001, - "emissivity_back": 0.047, - "visible_reflectance": 0.20999999999999999, - "solar_reflectance_back": 0.35999999999999999, - "visible_reflectance_back": 0.20999999999999999, - "infrared_transmittance": 0.0, - "solar_transmittance": 0.45000000000000001, - "visible_transmittance": 0.70999999999999996, - "conductivity": 1.0, - "solar_diffusing": false + "ph_hvac": { + "type": "FacePhHvacProperties" + }, + "radiance": { + "type": "FaceRadiancePropertiesAbridged" + } }, - { - "dirt_correction": 1.0, - "type": "EnergyWindowMaterialGlazing", - "identifier": "Generic Clear Glass", - "emissivity": 0.83999999999999997, - "solar_reflectance": 0.070000000000000007, - "thickness": 0.0060000000000000001, - "emissivity_back": 0.83999999999999997, - "visible_reflectance": 0.080000000000000002, - "solar_reflectance_back": 0.070000000000000007, - "visible_reflectance_back": 0.080000000000000002, - "infrared_transmittance": 0.0, - "solar_transmittance": 0.77000000000000002, - "visible_transmittance": 0.88, - "conductivity": 1.0, - "solar_diffusing": false + "geometry": { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + 0.98480775301220813, + -0.17364817766693041, + 0.0 + ], + "n": [ + 0.17364817766693041, + 0.98480775301220813, + 0.0 + ], + "o": [ + 0.0, + -5.5, + 3.3000000000000003 + ] + }, + "boundary": [ + [ + 5.4164426415671443, + -6.4550649771681172, + 3.3000000000000003 + ], + [ + 5.4164426415671443, + -6.4550649771681172, + 0.0 + ], + [ + 0.0, + -5.5, + 0.0 + ], + [ + 0.0, + -5.5, + 3.3000000000000003 + ] + ] }, - { - "properties": { - "ph": { - "user_data": {}, - "id_num": 0, - "divisions": { - "column_widths": [], - "row_heights": [], - "cells": [] - } - }, - "type": "EnergyMaterialProperties" + "identifier": "Room_3_e338eb50..Face0", + "display_name": "Room_3_e338eb50..Face0", + "boundary_condition": { + "type": "Outdoors", + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" }, - "density": 43.0, - "type": "EnergyMaterial", - "thickness": 0.050000000000000003, - "identifier": "Generic 50mm Insulation", - "roughness": "MediumRough", - "conductivity": 0.029999999999999999, - "specific_heat": 1210.0, - "thermal_absorptance": 0.90000000000000002, - "solar_absorptance": 0.69999999999999996, - "visible_absorptance": 0.69999999999999996 + "sun_exposure": true } - ], - "constructions": [ - { - "visible_reflectance": 0.20000000000000001, - "is_specular": false, - "identifier": "Generic Context", - "type": "ShadeConstruction", - "solar_reflectance": 0.20000000000000001 - }, - { - "materials": [ - "Generic Low-e Glass", - "Generic Window Air Gap", - "Generic Clear Glass" - ], - "properties": { - "ph": { - "type": "WindowConstructionPhProperties", - "id_num": 0 - }, - "type": "WindowConstructionProperties" + }, + { + "type": "Face", + "face_type": "Wall", + "properties": { + "type": "FacePropertiesAbridged", + "ph": { + "type": "FacePhPropertiesAbridged", + "id_num": 0 }, - "type": "WindowConstructionAbridged", - "identifier": "Generic Double Pane" - }, - { - "materials": [ - "Generic 25mm Wood" - ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Door" - }, - { - "materials": [ - "Generic Painted Metal", - "Generic 25mm Insulation", - "Generic Painted Metal" - ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Exterior Door" - }, - { - "materials": [ - "Generic Clear Glass" - ], - "properties": { - "ph": { - "type": "WindowConstructionPhProperties", - "id_num": 0 - }, - "type": "WindowConstructionProperties" + "energy": { + "type": "FaceEnergyPropertiesAbridged" }, - "type": "WindowConstructionAbridged", - "identifier": "Generic Single Pane" + "ph_hvac": { + "type": "FacePhHvacProperties" + }, + "radiance": { + "type": "FaceRadiancePropertiesAbridged" + } }, - { - "materials": [ - "Generic Brick", - "Generic LW Concrete", - "Generic 50mm Insulation", - "Generic Wall Air Gap", - "Generic Gypsum Board" - ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Exterior Wall" - }, - { - "materials": [ - "Generic 50mm Insulation", - "Generic HW Concrete", - "Generic Wall Air Gap", - "Generic Gypsum Board" - ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Underground Wall" - }, - { - "materials": [ - "Generic LW Concrete", - "Generic Ceiling Air Gap", - "Generic Acoustic Tile" - ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Ceiling" - }, - { - "materials": [ - "Generic Painted Metal", - "Generic Ceiling Air Gap", - "Generic 50mm Insulation", - "Generic LW Concrete" - ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Exposed Floor" - }, - { - "materials": [ - "Generic Acoustic Tile", - "Generic Ceiling Air Gap", - "Generic LW Concrete" - ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Floor" - }, - { - "materials": [ - "Generic Gypsum Board", - "Generic Wall Air Gap", - "Generic Gypsum Board" - ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Wall" - }, - { - "visible_reflectance": 0.34999999999999998, - "is_specular": false, - "identifier": "Generic Shade", - "type": "ShadeConstruction", - "solar_reflectance": 0.34999999999999998 - }, - { - "materials": [ - "Generic 50mm Insulation", - "Generic HW Concrete", - "Generic Ceiling Air Gap", - "Generic Acoustic Tile" - ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Underground Roof" - }, - { - "air_mixing_per_area": 0.10000000000000001, - "air_mixing_schedule": "Always On", - "type": "AirBoundaryConstructionAbridged", - "identifier": "Generic Air Boundary" - }, - { - "materials": [ - "Generic 50mm Insulation", - "Generic HW Concrete" - ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Ground Slab" + "geometry": { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + -0.1736481776669303, + -0.98480775301220813, + 0.0 + ], + "n": [ + 0.98480775301220813, + -0.1736481776669303, + 0.0 + ], + "o": [ + 5.4164426415671443, + -6.4550649771681172, + 3.3000000000000003 + ] + }, + "boundary": [ + [ + 4.6523906598326512, + -10.788219090421832, + 3.3000000000000003 + ], + [ + 4.6523906598326512, + -10.788219090421832, + 0.0 + ], + [ + 5.4164426415671443, + -6.4550649771681172, + 0.0 + ], + [ + 5.4164426415671443, + -6.4550649771681172, + 3.3000000000000003 + ] + ] }, - { - "materials": [ - "Generic Roof Membrane", - "Generic 50mm Insulation", - "Generic LW Concrete", - "Generic Ceiling Air Gap", - "Generic Acoustic Tile" - ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Roof" + "identifier": "Room_3_e338eb50..Face1", + "display_name": "Room_3_e338eb50..Face1", + "boundary_condition": { + "type": "Surface", + "boundary_condition_objects": [ + "Room_4_33d6ae6b..Face3", + "Room_4_33d6ae6b" + ] } - ] - }, - "schedule_type_limits": [ - { - "identifier": "Activity Level", - "type": "ScheduleTypeLimit", - "upper_limit": { - "type": "NoLimit" - }, - "unit_type": "ActivityLevel", - "lower_limit": 0.0, - "numeric_type": "Continuous" - }, - { - "identifier": "Fractional", - "type": "ScheduleTypeLimit", - "upper_limit": 1.0, - "unit_type": "Dimensionless", - "lower_limit": 0.0, - "numeric_type": "Continuous" }, { - "identifier": "Temperature", - "type": "ScheduleTypeLimit", - "upper_limit": { - "type": "NoLimit" + "type": "Face", + "face_type": "Wall", + "apertures": [ + { + "type": "Aperture", + "properties": { + "type": "AperturePropertiesAbridged", + "ph": { + "type": "AperturePhPropertiesAbridged", + "install_depth": 0.1016, + "winter_shading_factor": 0.75, + "summer_shading_factor": 0.75, + "id_num": 0, + "default_monthly_shading_correction_factor": 1.0, + "variant_type": "_unnamed_type_" + }, + "energy": { + "type": "ApertureEnergyPropertiesAbridged" + }, + "ph_hvac": { + "type": "AperturePhHvacProperties" + }, + "radiance": { + "type": "ApertureRadiancePropertiesAbridged" + } + }, + "geometry": { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + -0.98480775301220813, + 0.17364817766692994, + 0.0 + ], + "n": [ + -0.17364817766692994, + -0.98480775301220813, + 0.0 + ], + "o": [ + 3.7608994304649785, + -10.631025133619353, + 2.7568536488623963 + ] + }, + "boundary": [ + [ + 0.12743924763317918, + -9.9903480700561964, + 2.7568536488623963 + ], + [ + 0.12743924763317918, + -9.9903480700561964, + 0.54314635113760423 + ], + [ + 3.7608994304649785, + -10.631025133619353, + 0.54314635113760423 + ], + [ + 3.7608994304649785, + -10.631025133619353, + 2.7568536488623963 + ] + ] + }, + "is_operable": false, + "identifier": "Room_3_e338eb50..Face2_Glz0", + "display_name": "Room_3_e338eb50..Face2_Glz0", + "boundary_condition": { + "type": "Outdoors", + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" + }, + "sun_exposure": true + } + } + ], + "properties": { + "type": "FacePropertiesAbridged", + "ph": { + "type": "FacePhPropertiesAbridged", + "id_num": 0 + }, + "energy": { + "type": "FaceEnergyPropertiesAbridged" + }, + "ph_hvac": { + "type": "FacePhHvacProperties" + }, + "radiance": { + "type": "FaceRadiancePropertiesAbridged" + } }, - "unit_type": "Temperature", - "lower_limit": -273.14999999999998, - "numeric_type": "Continuous" - } - ], - "type": "ModelEnergyProperties", - "construction_sets": [ - { - "door_set": { - "exterior_glass_construction": "PhWindowConstruction_e3f97648", - "type": "DoorConstructionSetAbridged", - "interior_construction": null, - "exterior_construction": null, - "interior_glass_construction": null, - "overhead_construction": null - }, - "shade_construction": null, - "identifier": "ConstructionSet_6a96113d", - "type": "ConstructionSetAbridged", - "wall_set": { - "interior_construction": null, - "type": "WallConstructionSetAbridged", - "exterior_construction": null, - "ground_construction": null - }, - "aperture_set": { - "skylight_construction": "PhWindowConstruction_e3f97648", - "type": "ApertureConstructionSetAbridged", - "interior_construction": null, - "operable_construction": "PhWindowConstruction_e3f97648", - "window_construction": "PhWindowConstruction_e3f97648" - }, - "floor_set": { - "interior_construction": null, - "type": "FloorConstructionSetAbridged", - "exterior_construction": null, - "ground_construction": null - }, - "air_boundary_construction": null, - "roof_ceiling_set": { - "interior_construction": null, - "type": "RoofCeilingConstructionSetAbridged", - "exterior_construction": null, - "ground_construction": null - } - }, - { - "door_set": { - "exterior_glass_construction": "PhWindowConstruction_bb09979d", - "type": "DoorConstructionSetAbridged", - "interior_construction": null, - "exterior_construction": null, - "interior_glass_construction": null, - "overhead_construction": null - }, - "shade_construction": null, - "identifier": "ConstructionSet_ebe974d5", - "type": "ConstructionSetAbridged", - "wall_set": { - "interior_construction": null, - "type": "WallConstructionSetAbridged", - "exterior_construction": null, - "ground_construction": null - }, - "aperture_set": { - "skylight_construction": "PhWindowConstruction_bb09979d", - "type": "ApertureConstructionSetAbridged", - "interior_construction": null, - "operable_construction": "PhWindowConstruction_bb09979d", - "window_construction": "PhWindowConstruction_bb09979d" - }, - "floor_set": { - "interior_construction": null, - "type": "FloorConstructionSetAbridged", - "exterior_construction": null, - "ground_construction": null - }, - "air_boundary_construction": null, - "roof_ceiling_set": { - "interior_construction": null, - "type": "RoofCeilingConstructionSetAbridged", - "exterior_construction": null, - "ground_construction": null - } - } - ], - "ventilation_simulation_control": { - "reference_humidity_ratio": 0.0, - "long_axis_angle": 0.0, - "type": "VentilationSimulationControl", - "reference_pressure": 101325.0, - "aspect_ratio": 1.0, - "vent_control_type": "SingleZone", - "reference_temperature": 20.0, - "building_type": "LowRise" - }, - "materials": [ - { - "solar_reflectance": 0.17500000000000004, - "identifier": "test-shade", - "right_opening_multiplier": 0.5, - "type": "EnergyWindowMaterialShade", - "conductivity": 0.90000000000000002, - "display_name": "test-shade", - "visible_reflectance": 0.17500000000000004, - "distance_to_glass": 0.050000000000000003, - "left_opening_multiplier": 0.5, - "thickness": 0.10000000000000001, - "top_opening_multiplier": 0.5, - "bottom_opening_multiplier": 0.5, - "infrared_transmittance": 0.0, - "airflow_permeability": 0.0, - "emissivity": 0.90000000000000002, - "visible_transmittance": 0.82499999999999996, - "solar_transmittance": 0.82499999999999996 - }, - { - "shgc": 0.40000000000000002, - "identifier": "PhWindowConstruction_bb09979d", - "type": "EnergyWindowMaterialSimpleGlazSys", - "vt": 0.59999999999999998, - "u_factor": 0.83391891891891878, - "display_name": "PhWindowConstruction_bb09979d" - }, - { - "shgc": 0.40000000000000002, - "identifier": "PhWindowConstruction_e3f97648", - "type": "EnergyWindowMaterialSimpleGlazSys", - "vt": 0.59999999999999998, - "u_factor": 1.0757635684464950, - "display_name": "PhWindowConstruction_e3f97648" - } - ], - "hvacs": [ - { - "latent_heat_recovery": 0.0, - "demand_controlled_ventilation": false, - "heating_air_temperature": 50.0, - "identifier": "Room_7_a5ba7cbb Ideal Loads Air System", - "cooling_limit": { - "type": "Autosize" + "geometry": { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + -0.98480775301220813, + 0.17364817766693011, + 0.0 + ], + "n": [ + -0.17364817766693011, + -0.98480775301220813, + 0.0 + ], + "o": [ + 4.6523906598326512, + -10.788219090421832, + 3.3000000000000003 + ] + }, + "boundary": [ + [ + -0.76405198173449351, + -9.8331541132537161, + 3.3000000000000003 + ], + [ + -0.76405198173449351, + -9.8331541132537161, + 0.0 + ], + [ + 4.6523906598326512, + -10.788219090421832, + 0.0 + ], + [ + 4.6523906598326512, + -10.788219090421832, + 3.3000000000000003 + ] + ] }, - "type": "IdealAirSystemAbridged", - "economizer_type": "DifferentialDryBulb", - "sensible_heat_recovery": 0.0, - "cooling_air_temperature": 13.0, - "heating_limit": { - "type": "Autosize" + "identifier": "Room_3_e338eb50..Face2", + "display_name": "Room_3_e338eb50..Face2", + "boundary_condition": { + "type": "Outdoors", + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" + }, + "sun_exposure": true } }, { - "latent_heat_recovery": 0.0, - "demand_controlled_ventilation": false, - "heating_air_temperature": 50.0, - "identifier": "Room_8_b1033aa6 Ideal Loads Air System", - "cooling_limit": { - "type": "Autosize" - }, - "type": "IdealAirSystemAbridged", - "economizer_type": "DifferentialDryBulb", - "sensible_heat_recovery": 0.0, - "cooling_air_temperature": 13.0, - "heating_limit": { - "type": "Autosize" - } - } - ], - "constructions": [ - { - "materials": [ - "PhWindowConstruction_bb09979d" - ], - "properties": { - "ph": { - "ph_glazing": { - "identifier": "PhWindowGlazing_7f09d142", - "g_value": 0.40000000000000002, - "display_name": "PhWindowGlazing_7f09d142", - "user_data": {}, - "id_num": 0, - "u_factor": 0.80000000000000004 - }, - "type": "WindowConstructionPhProperties", - "id_num": 0, - "ph_frame": { - "bottom": { - "identifier": "PhWindowFrameElement_638e3ca1", - "psi_glazing": 0.040000000000000001, - "psi_install": 0.040000000000000001, - "display_name": "PhWindowFrameElement_638e3ca1", - "user_data": {}, + "type": "Face", + "face_type": "Wall", + "apertures": [ + { + "type": "Aperture", + "properties": { + "type": "AperturePropertiesAbridged", + "ph": { + "type": "AperturePhPropertiesAbridged", + "install_depth": 0.1016, + "winter_shading_factor": 0.75, + "summer_shading_factor": 0.75, "id_num": 0, - "width": 0.10000000000000001, - "u_factor": 0.123, - "chi_value": 0.0 + "default_monthly_shading_correction_factor": 1.0, + "variant_type": "_unnamed_type_" }, - "identifier": "PhWindowFrame_945eda02", - "left": { - "identifier": "PhWindowFrameElement_638e3ca1", - "psi_glazing": 0.040000000000000001, - "psi_install": 0.040000000000000001, - "display_name": "PhWindowFrameElement_638e3ca1", - "user_data": {}, - "id_num": 0, - "width": 0.10000000000000001, - "u_factor": 0.123, - "chi_value": 0.0 + "energy": { + "type": "ApertureEnergyPropertiesAbridged" }, - "top": { - "identifier": "PhWindowFrameElement_638e3ca1", - "psi_glazing": 0.040000000000000001, - "psi_install": 0.040000000000000001, - "display_name": "PhWindowFrameElement_638e3ca1", - "user_data": {}, - "id_num": 0, - "width": 0.10000000000000001, - "u_factor": 0.123, - "chi_value": 0.0 + "ph_hvac": { + "type": "AperturePhHvacProperties" }, - "display_name": "PhWindowFrame_945eda02", - "user_data": {}, - "id_num": 0, - "right": { - "identifier": "PhWindowFrameElement_638e3ca1", - "psi_glazing": 0.040000000000000001, - "psi_install": 0.040000000000000001, - "display_name": "PhWindowFrameElement_638e3ca1", - "user_data": {}, - "id_num": 0, - "width": 0.10000000000000001, - "u_factor": 0.123, - "chi_value": 0.0 - } - } - }, - "type": "WindowConstructionProperties" - }, - "type": "WindowConstructionAbridged", - "identifier": "PhWindowConstruction_bb09979d" - }, - { - "control_type": "AlwaysOn", - "properties": { - "ph": { - "type": "WindowConstructionShadePhProperties", - "id_num": 0 - }, - "type": "WindowConstructionShadeProperties" - }, - "identifier": "PhWindowConstruction_e3f97648", - "type": "WindowConstructionShadeAbridged", - "shade_location": "Interior", - "shade_material": "test-shade", - "window_construction": { - "materials": [ - "PhWindowConstruction_e3f97648" - ], - "properties": { - "ph": { - "ph_glazing": { - "identifier": "PhWindowGlazing_f1b68e82", - "g_value": 0.40000000000000002, - "display_name": "PhWindowGlazing_f1b68e82", - "user_data": {}, - "id_num": 0, - "u_factor": 0.80000000000000004 - }, - "type": "WindowConstructionPhProperties", - "id_num": 0, - "ph_frame": { - "bottom": { - "identifier": "PhWindowFrameElement_00eb9c09", - "psi_glazing": 0.040000000000000001, - "psi_install": 0.040000000000000001, - "display_name": "PhWindowFrameElement_00eb9c09", - "user_data": {}, - "id_num": 0, - "width": 0.10000000000000001, - "u_factor": 1.0, - "chi_value": 0.0 - }, - "identifier": "PhWindowFrame_68f85652", - "left": { - "identifier": "PhWindowFrameElement_00eb9c09", - "psi_glazing": 0.040000000000000001, - "psi_install": 0.040000000000000001, - "display_name": "PhWindowFrameElement_00eb9c09", - "user_data": {}, - "id_num": 0, - "width": 0.10000000000000001, - "u_factor": 1.0, - "chi_value": 0.0 - }, - "top": { - "identifier": "PhWindowFrameElement_00eb9c09", - "psi_glazing": 0.040000000000000001, - "psi_install": 0.040000000000000001, - "display_name": "PhWindowFrameElement_00eb9c09", - "user_data": {}, - "id_num": 0, - "width": 0.10000000000000001, - "u_factor": 1.0, - "chi_value": 0.0 - }, - "display_name": "PhWindowFrame_68f85652", - "user_data": {}, - "id_num": 0, - "right": { - "identifier": "PhWindowFrameElement_00eb9c09", - "psi_glazing": 0.040000000000000001, - "psi_install": 0.040000000000000001, - "display_name": "PhWindowFrameElement_00eb9c09", - "user_data": {}, - "id_num": 0, - "width": 0.10000000000000001, - "u_factor": 1.0, - "chi_value": 0.0 - } + "radiance": { + "type": "ApertureRadiancePropertiesAbridged" } }, - "type": "WindowConstructionProperties" + "geometry": { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + 0.17364817766693039, + 0.98480775301220813, + 0.0 + ], + "n": [ + -0.98480775301220813, + 0.17364817766693039, + 0.0 + ], + "o": [ + -0.63829681629251001, + -9.1199611297595773, + 2.7568536488623963 + ] + }, + "boundary": [ + [ + -0.12575516544198348, + -6.2131929834941388, + 2.7568536488623963 + ], + [ + -0.12575516544198348, + -6.2131929834941388, + 0.54314635113760423 + ], + [ + -0.63829681629251001, + -9.1199611297595773, + 0.54314635113760423 + ], + [ + -0.63829681629251001, + -9.1199611297595773, + 2.7568536488623963 + ] + ] + }, + "is_operable": false, + "identifier": "Room_3_e338eb50..Face3_Glz0", + "display_name": "Room_3_e338eb50..Face3_Glz0", + "boundary_condition": { + "type": "Outdoors", + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" + }, + "sun_exposure": true + } + } + ], + "properties": { + "type": "FacePropertiesAbridged", + "ph": { + "type": "FacePhPropertiesAbridged", + "id_num": 0 }, - "type": "WindowConstructionAbridged", - "identifier": "PhWindowConstruction_e3f97648" - } - } - ] - }, - "ph": { - "bldg_segments": [ - { - "num_floor_levels": 1, - "phi_certification": { - "identifier": "f8ec211c-f20c-4b94-8c98-852ce270b5a3", - "attributes": { - "enerphit_type": "2-ENERGY DEMAND METHOD", - "primary_energy_type": "1-PE (NON-RENEWABLE)", - "building_use_type": "10-DWELLING", - "retrofit_type": "1-NEW BUILDING", - "tfa_override": null, - "ihg_type": "2-STANDARD", - "phpp_version": 9, - "building_category_type": "1-RESIDENTIAL BUILDING", - "occupancy_type": "1-STANDARD (ONLY FOR RESIDENTIAL BUILDINGS)", - "certification_type": "1-PASSIVE HOUSE", - "certification_class": "1-CLASSIC" + "energy": { + "type": "FaceEnergyPropertiesAbridged" + }, + "ph_hvac": { + "type": "FacePhHvacProperties" }, - "phpp_version": 9, - "display_name": "f8ec211c-f20c-4b94-8c98-852ce270b5a3", - "user_data": {} + "radiance": { + "type": "FaceRadiancePropertiesAbridged" + } }, - "set_points": { - "summer": 24.0, - "identifier": "9d268728-d26d-42f3-9cca-8cc2053eeb71", - "winter": 21.0, - "display_name": "9d268728-d26d-42f3-9cca-8cc2053eeb71", - "user_data": {} + "geometry": { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + 0.17364817766693036, + 0.98480775301220813, + 0.0 + ], + "n": [ + -0.98480775301220813, + 0.17364817766693036, + 0.0 + ], + "o": [ + -0.76405198173449351, + -9.8331541132537161, + 3.3000000000000003 + ] + }, + "boundary": [ + [ + 0.0, + -5.5, + 3.3000000000000003 + ], + [ + 0.0, + -5.5, + 0.0 + ], + [ + -0.76405198173449351, + -9.8331541132537161, + 0.0 + ], + [ + -0.76405198173449351, + -9.8331541132537161, + 3.3000000000000003 + ] + ] }, - "identifier": "19f7b0a4-8d2d-4aac-8958-34d179c217ba", - "phius_certification": { - "certification_program": { - "value": "7-PHIUS 2021 CORE" + "identifier": "Room_3_e338eb50..Face3", + "display_name": "Room_3_e338eb50..Face3", + "boundary_condition": { + "type": "Outdoors", + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" }, - "int_gains_toilet_room_util_pat": null, - "PHIUS2021_heating_load": 10.0, - "int_gains_use_school_defaults": false, - "building_status": { - "value": "1-IN_PLANNING" + "sun_exposure": true + } + }, + { + "type": "Face", + "face_type": "Floor", + "properties": { + "type": "FacePropertiesAbridged", + "ph": { + "type": "FacePhPropertiesAbridged", + "id_num": 0 }, - "int_gains_evap_per_person": 15, - "int_gains_dhw_marginal_perf_ratio": null, - "identifier": "12b83fbc-beb1-4dd0-994f-67ba8062118a", - "building_use_type": { - "value": "1-RESIDENTIAL" + "energy": { + "type": "FaceEnergyPropertiesAbridged" }, - "PHIUS2021_cooling_load": 10.0, - "PHIUS2021_heating_demand": 15.0, - "icfa_override": null, - "PHIUS2021_cooling_demand": 15.0, - "localization_selection_type": 2, - "building_category_type": { - "value": "1-RESIDENTIAL BUILDING" + "ph_hvac": { + "type": "FacePhHvacProperties" }, - "int_gains_flush_heat_loss": true, - "int_gains_num_toilets": 1, - "user_data": {}, - "display_name": "12b83fbc-beb1-4dd0-994f-67ba8062118a", - "building_type": { - "value": "1-NEW_CONSTRUCTION" + "radiance": { + "type": "FaceRadiancePropertiesAbridged" } }, - "co2e_factors": { - "factors": [ - { - "value": 319.99320000000000, - "units": "g/kWh", - "fuel_name": "HARD_COAL_CGS_35_CHP" - }, - { - "value": 409.99660000000000, - "units": "g/kWh", - "fuel_name": "HARD_COAL_CGS_0_CHP" - }, - { - "value": 129.98980000000000, - "units": "g/kWh", - "fuel_name": "GAS_CGS_35_CHP" - }, - { - "value": 250.01710000000000, - "units": "g/kWh", - "fuel_name": "NATURAL_GAS" - }, - { - "value": 53.428899999999999, - "units": "g/kWh", - "fuel_name": "WOOD" - }, - { - "value": 239.98640000000000, - "units": "g/kWh", - "fuel_name": "HARD_COAL_CGS_70_CHP" - }, - { - "value": 250.01710000000000, - "units": "g/kWh", - "fuel_name": "OIL_CGS_35_CHP" - }, - { - "value": 439.98640000000000, - "units": "g/kWh", - "fuel_name": "HARD_COAL" - }, - { - "value": -70.010199999999998, - "units": "g/kWh", - "fuel_name": "GAS_CGS_70_CHP" - }, - { - "value": 680.00680000000000, - "units": "g/kWh", - "fuel_name": "ELECTRICITY_MIX" - }, - { - "value": 309.99660000000000, - "units": "g/kWh", - "fuel_name": "OIL" - }, - { - "value": 250.01710000000000, - "units": "g/kWh", - "fuel_name": "ELECTRICITY_PV" - }, - { - "value": 319.99320000000000, - "units": "g/kWh", - "fuel_name": "GAS_CGS_0_CHP" - }, - { - "value": 270.01020000000000, - "units": "g/kWh", - "fuel_name": "LPG" - }, - { - "value": 409.99660000000000, - "units": "g/kWh", - "fuel_name": "OIL_CGS_0_CHP" - }, - { - "value": 100.0, - "units": "g/kWh", - "fuel_name": "OIL_CGS_70_CHP" - } + "geometry": { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + 1.0, + 0.0, + 0.0 + ], + "n": [ + 0.0, + 0.0, + -1.0 + ], + "o": [ + 5.4164426415671443, + -6.4550649771681172, + 0.0 + ] + }, + "boundary": [ + [ + 5.4164426415671443, + -6.4550649771681172, + 0.0 + ], + [ + 4.6523906598326512, + -10.788219090421832, + 0.0 + ], + [ + -0.76405198173449351, + -9.8331541132537161, + 0.0 + ], + [ + 0.0, + -5.5, + 0.0 + ] ] }, - "mech_room_temp": 20.0, - "non_combustible_materials": false, - "wind_exposure_type": { - "value": "1-SEVERAL_SIDES_EXPOSED_NO_SCREENING" - }, - "site": { - "identifier": "3af0b77e-c11c-4e0a-8b3a-709d2baa8b7c", - "climate": { - "peak_loads": { - "cooling_load_1": { - "sky_temp": null, - "rad_south": 0.0, - "rad_north": 0.0, - "identifier": "33030804-5ed9-4580-8939-17209488383a", - "dewpoint": null, - "ground_temp": null, - "rad_west": 0.0, - "display_name": "test_peak_cooling_1", - "user_data": {}, - "temp": 0.0, - "rad_east": 0.0, - "rad_global": 0.0 + "identifier": "Room_3_e338eb50..Face4", + "display_name": "Room_3_e338eb50..Face4", + "boundary_condition": { + "type": "Ground" + } + }, + { + "type": "Face", + "face_type": "RoofCeiling", + "apertures": [ + { + "type": "Aperture", + "properties": { + "type": "AperturePropertiesAbridged", + "ph": { + "type": "AperturePhPropertiesAbridged", + "install_depth": 0.1016, + "winter_shading_factor": 0.75, + "summer_shading_factor": 0.75, + "id_num": 0, + "default_monthly_shading_correction_factor": 1.0, + "variant_type": "_unnamed_type_" }, - "identifier": "1ea161a8-1fd8-41c1-ad9f-9ce26fccca45", - "heat_load_1": { - "sky_temp": null, - "rad_south": 0.0, - "rad_north": 0.0, - "identifier": "e1b8002b-0e88-4c3a-b654-5a3f936da117", - "dewpoint": null, - "ground_temp": null, - "rad_west": 0.0, - "display_name": "test_peak_heat_1", - "user_data": {}, - "temp": 0.0, - "rad_east": 0.0, - "rad_global": 0.0 + "energy": { + "type": "ApertureEnergyPropertiesAbridged" }, - "heat_load_2": { - "sky_temp": null, - "rad_south": 0.0, - "rad_north": 0.0, - "identifier": "4282108c-302d-4338-a6d7-8ff560add7b0", - "dewpoint": null, - "ground_temp": null, - "rad_west": 0.0, - "display_name": "test_peak_heat_2", - "user_data": {}, - "temp": 0.0, - "rad_east": 0.0, - "rad_global": 0.0 + "ph_hvac": { + "type": "AperturePhHvacProperties" }, - "display_name": "1ea161a8-1fd8-41c1-ad9f-9ce26fccca45", - "user_data": {}, - "cooling_load_2": { - "sky_temp": null, - "rad_south": 0.0, - "rad_north": 0.0, - "identifier": "583e202d-0234-4756-820d-47fc16ec7d7e", - "dewpoint": null, - "ground_temp": null, - "rad_west": 0.0, - "display_name": "test_peak_cooling_2", - "user_data": {}, - "temp": 0.0, - "rad_east": 0.0, - "rad_global": 0.0 + "radiance": { + "type": "ApertureRadiancePropertiesAbridged" } }, - "station_elevation": 0.0, - "identifier": "dc929c98-8420-4de4-9197-e7c59aa77b68", - "ground": { - "flow_rate_groundwater": 0.050000000000000003, - "identifier": "6764f0fa-b498-4372-962c-94a5d6494af6", - "ground_heat_capacity": 1000, - "ground_density": 2000, - "depth_groundwater": 3, - "display_name": "6764f0fa-b498-4372-962c-94a5d6494af6", - "user_data": {}, - "ground_thermal_conductivity": 2 - }, - "summer_daily_temperature_swing": 10.0, - "monthly_radiation": { - "west": { - "december": 0.0, - "identifier": "b44326ab-ac79-4163-a835-cf282de4ff9c", - "january": 0.0, - "november": 42.049999999999997, - "february": 26.660000000000000, - "july": 200.0, - "june": 165.0, - "march": 66.659999999999997, - "display_name": "b44326ab-ac79-4163-a835-cf282de4ff9c", - "user_data": {}, - "april": 131.66000000000000, - "may": 149.97000000000000, - "august": 145.61000000000001, - "september": 104.03000000000000, - "october": 74.319999999999993 - }, - "south": { - "december": 0.0, - "identifier": "e49199f5-36a7-4619-803e-6248469f4a28", - "january": 0.0, - "november": 0.0, - "february": 0.0, - "july": 0.0, - "june": 0.0, - "march": 0.0, - "display_name": "e49199f5-36a7-4619-803e-6248469f4a28", - "user_data": {}, - "april": 0.0, - "may": 0.0, - "august": 0.0, - "september": 0.0, - "october": 0.0 - }, - "identifier": "45110201-0b50-4c99-8045-9a73b80eb639", - "east": { - "december": 0.0, - "identifier": "a4508011-6a46-4c4a-847c-29787a9cdd38", - "january": 0.0, - "november": 42.049999999999997, - "february": 26.660000000000000, - "july": 200.0, - "june": 165.0, - "march": 66.659999999999997, - "display_name": "a4508011-6a46-4c4a-847c-29787a9cdd38", - "user_data": {}, - "april": 131.66000000000000, - "may": 149.97000000000000, - "august": 145.61000000000001, - "september": 104.03000000000000, - "october": 74.319999999999993 - }, - "north": { - "december": 0.0, - "identifier": "652d1329-8fbf-469e-bbf1-514ecb03cf34", - "january": 0.0, - "november": 42.049999999999997, - "february": 26.660000000000000, - "july": 200.0, - "june": 165.0, - "march": 66.659999999999997, - "display_name": "652d1329-8fbf-469e-bbf1-514ecb03cf34", - "user_data": {}, - "april": 131.66000000000000, - "may": 149.97000000000000, - "august": 145.61000000000001, - "september": 104.03000000000000, - "october": 74.319999999999993 - }, - "glob": { - "december": 0.0, - "identifier": "b33c1399-4066-4e9f-b10c-86082075d49f", - "january": 0.0, - "november": 42.049999999999997, - "february": 26.660000000000000, - "july": 200.0, - "june": 165.0, - "march": 66.659999999999997, - "display_name": "b33c1399-4066-4e9f-b10c-86082075d49f", - "user_data": {}, - "april": 131.66000000000000, - "may": 149.97000000000000, - "august": 145.61000000000001, - "september": 104.03000000000000, - "october": 74.319999999999993 + "geometry": { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + 1.0, + 0.0, + 0.0 + ], + "n": [ + 0.0, + 0.0, + 1.0 + ], + "o": [ + 3.9710638220646373, + -10.013777334829634, + 3.3000000000000003 + ] }, - "display_name": "45110201-0b50-4c99-8045-9a73b80eb639", - "user_data": {} + "boundary": [ + [ + 0.6813268377680135, + -6.2744417555921990, + 3.3000000000000003 + ], + [ + 0.14106050030453293, + -9.3384444130002837, + 3.3000000000000003 + ], + [ + 3.9710638220646373, + -10.013777334829634, + 3.3000000000000003 + ], + [ + 4.5113301595281179, + -6.9497746774215505, + 3.3000000000000003 + ] + ] }, - "display_name": "My_Test_Climate", - "user_data": {}, - "monthly_temps": { - "ground_temps": { - "december": 0.0, - "identifier": "ac6692a4-0d08-4679-9074-3377adcfd48c", - "january": 0.0, - "november": 0.0, - "february": 0.0, - "july": 0.0, - "june": 0.0, - "march": 0.0, - "display_name": "ac6692a4-0d08-4679-9074-3377adcfd48c", - "user_data": {}, - "april": 0.0, - "may": 0.0, - "august": 0.0, - "september": 0.0, - "october": 0.0 + "is_operable": false, + "identifier": "Room_3_e338eb50..Face5_Glz0", + "display_name": "Room_3_e338eb50..Face5_Glz0", + "boundary_condition": { + "type": "Outdoors", + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" }, - "identifier": "3d4aad0a-2561-4e95-8263-56bc4cfa313c", - "dewpoints": { - "december": 4.2800000000000002, - "identifier": "7e15bd12-fd11-4802-b288-c88399e69a62", - "january": 0.0, - "november": 1.6200000000000001, - "february": 2.6699999999999999, - "july": 4.9500000000000002, - "june": 6.9500000000000002, - "march": 6.6699999999999999, - "display_name": "7e15bd12-fd11-4802-b288-c88399e69a62", - "user_data": {}, - "april": 7.9600000000000000, - "may": 5.1299999999999999, - "august": 4.1399999999999997, - "september": 1.0500000000000000, - "october": 1.5400000000000000 - }, - "display_name": "3d4aad0a-2561-4e95-8263-56bc4cfa313c", - "user_data": {}, - "sky_temps": { - "december": 3.6200000000000001, - "identifier": "1e490c1f-8262-4f6b-aa09-957b1320185b", - "january": 0.0, - "november": 5.0599999999999996, - "february": 3.3300000000000001, - "july": 17.699999999999999, - "june": 20.620000000000001, - "march": 8.3300000000000001, - "display_name": "1e490c1f-8262-4f6b-aa09-957b1320185b", - "user_data": {}, - "april": 16.460000000000001, - "may": 17.920000000000002, - "august": 13.210000000000001, - "september": 9.7799999999999994, - "october": 6.4800000000000004 - }, - "air_temps": { - "december": 4.3399999999999999, - "identifier": "2be6aa23-d17c-4517-8b20-4186df610141", - "january": 0.0, - "november": 6.0700000000000003, - "february": 4.0, - "july": 21.230000000000000, - "june": 24.75, - "march": 10.0, - "display_name": "2be6aa23-d17c-4517-8b20-4186df610141", - "user_data": {}, - "april": 19.75, - "may": 21.5, - "august": 15.850000000000000, - "september": 11.740000000000000, - "october": 7.7800000000000002 - } - }, - "average_wind_speed": 4.0 + "sun_exposure": true + } + } + ], + "properties": { + "type": "FacePropertiesAbridged", + "ph": { + "type": "FacePhPropertiesAbridged", + "id_num": 0 }, - "display_name": "_unnamed_", - "user_data": {}, - "location": { - "identifier": "6a893b54-95ec-4ab9-9a06-58e3b2d313be", - "longitude": -73.799999999999997, - "display_name": "New_York", - "user_data": {}, - "climate_zone": 1, - "site_elevation": 0.0, - "hours_from_UTC": -4, - "latitude": 40.600000000000001 + "energy": { + "type": "FaceEnergyPropertiesAbridged" }, - "phpp_library_codes": { - "region_code": "New York", - "country_code": "US-United States of America", - "identifier": "2c216b64-4494-4d57-8420-bf90a0e68167", - "dataset_name": "US0055b-New York", - "display_name": "US0055b-New York", - "user_data": {} + "ph_hvac": { + "type": "FacePhHvacProperties" + }, + "radiance": { + "type": "FaceRadiancePropertiesAbridged" } }, - "summer_hrv_bypass_mode": { - "value": "2-TEMPERATURE CONTROLLED" - }, - "num_dwelling_units": 1, - "display_name": "_unnamed_bldg_segment_", - "user_data": {}, - "name": "_unnamed_bldg_segment_", - "source_energy_factors": { - "factors": [ - { - "value": 1.1000000000000001, - "units": "kWh/kWh", - "fuel_name": "HARD_COAL_CGS_35_CHP" - }, - { - "value": 1.5, - "units": "kWh/kWh", - "fuel_name": "HARD_COAL_CGS_0_CHP" - }, - { - "value": 1.1000000000000001, - "units": "kWh/kWh", - "fuel_name": "GAS_CGS_35_CHP" - }, - { - "value": 1.1000000000000001, - "units": "kWh/kWh", - "fuel_name": "NATURAL_GAS" - }, - { - "value": 0.20000000000000001, - "units": "kWh/kWh", - "fuel_name": "WOOD" - }, - { - "value": 0.80000000000000004, - "units": "kWh/kWh", - "fuel_name": "HARD_COAL_CGS_70_CHP" - }, - { - "value": 1.1000000000000001, - "units": "kWh/kWh", - "fuel_name": "OIL_CGS_35_CHP" - }, - { - "value": 1.1000000000000001, - "units": "kWh/kWh", - "fuel_name": "HARD_COAL" - }, - { - "value": 0.69999999999999996, - "units": "kWh/kWh", - "fuel_name": "GAS_CGS_70_CHP" - }, - { - "value": 1.8000000000000000, - "units": "kWh/kWh", - "fuel_name": "ELECTRICITY_MIX" - }, - { - "value": 1.1000000000000001, - "units": "kWh/kWh", - "fuel_name": "OIL" - }, - { - "value": 1.7000000000000000, - "units": "kWh/kWh", - "fuel_name": "ELECTRICITY_PV" - }, - { - "value": 1.5, - "units": "kWh/kWh", - "fuel_name": "GAS_CGS_0_CHP" - }, - { - "value": 1.1000000000000001, - "units": "kWh/kWh", - "fuel_name": "LPG" - }, - { - "value": 1.5, - "units": "kWh/kWh", - "fuel_name": "OIL_CGS_0_CHP" - }, - { - "value": 0.80000000000000004, - "units": "kWh/kWh", - "fuel_name": "OIL_CGS_70_CHP" - } + "geometry": { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + 1.0, + 0.0, + 0.0 + ], + "n": [ + 0.0, + 0.0, + 1.0 + ], + "o": [ + -0.76405198173449351, + -9.8331541132537161, + 3.3000000000000003 + ] + }, + "boundary": [ + [ + 0.0, + -5.5, + 3.3000000000000003 + ], + [ + -0.76405198173449351, + -9.8331541132537161, + 3.3000000000000003 + ], + [ + 4.6523906598326512, + -10.788219090421832, + 3.3000000000000003 + ], + [ + 5.4164426415671443, + -6.4550649771681172, + 3.3000000000000003 + ] ] }, - "thermal_bridges": { - "e3420bbe-e2f6-4d14-bad6-0f4859812e07": { - "quantity": 1.0, - "identifier": "e3420bbe-e2f6-4d14-bad6-0f4859812e07", - "_group_type": { - "value": "15-AMBIENT" - }, - "fRsi_value": 0.75, - "geometry": { - "type": "Polyline3D", - "vertices": [ - [ - 0.0, - 4.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 3.0 - ], - [ - 0.0, - 4.0, - 3.0 - ], - [ - 0.0, - 4.0, - 0.0 - ] - ] - }, - "display_name": "_unnamed_bldg_segment__04c2e417", - "user_data": {}, - "id_num": 0, - "psi_value": 0.01 + "identifier": "Room_3_e338eb50..Face5", + "display_name": "Room_3_e338eb50..Face5", + "boundary_condition": { + "type": "Outdoors", + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" }, - "c1a2a34a-6b25-455e-b4a5-7d8404b1ad72": { - "quantity": 1.0, - "identifier": "c1a2a34a-6b25-455e-b4a5-7d8404b1ad72", - "_group_type": { - "value": "15-AMBIENT" + "sun_exposure": true + } + } + ], + "properties": { + "type": "RoomPropertiesAbridged", + "ph": { + "type": "RoomPhPropertiesAbridged", + "ph_foundations": [], + "ph_bldg_segment_id": "d2163927-f397-4b3f-9b0e-86123854ae83", + "spaces": [ + { + "user_data": {}, + "number": "101", + "wufi_type": 99, + "properties": { + "type": "SpaceProperties", + "ph": { + "type": "SpacePhProperties", + "_v_eta": null, + "id_num": 0, + "_v_tran": null, + "_v_sup": null + }, + "energy": { + "type": "SpaceEnergyProperties", + "id_num": 0 + } }, - "fRsi_value": 0.75, - "geometry": { - "type": "Polyline3D", - "vertices": [ - [ - 0.82294901687515765, - 0.0, - 0.49376941012509468 - ], - [ - 4.1770509831248424, - 0.0, - 0.49376941012509468 - ], - [ - 4.1770509831248424, - 0.0, - 2.5062305898749053 - ], - [ - 0.82294901687515765, - 0.0, - 2.5062305898749053 + "name": "Room_3", + "quantity": 1, + "identifier": "fe8f1220-d6a7-406d-a8b0-fcf36560da76", + "volumes": [ + { + "user_data": {}, + "geometry": [ + { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + 0.17364817766693041, + 0.98480775301220813, + 0.0 + ], + "n": [ + -0.98480775301220813, + 0.17364817766693041, + 0.0 + ], + "o": [ + -0.12690121986096739, + -9.3870163468138124, + 2.75 + ] + }, + "boundary": [ + [ + -0.12690121986096739, + -9.3870163468138124, + 2.75 + ], + [ + 0.44613776643990277, + -6.1371507618735270, + 2.75 + ], + [ + 0.44613776643990277, + -6.1371507618735270, + 0.0 + ], + [ + -0.12690121986096739, + -9.3870163468138124, + 0.0 + ] + ] + }, + { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + 0.98480775301220813, + -0.17364817766692997, + 0.0 + ], + "n": [ + 0.17364817766692997, + 0.98480775301220813, + 0.0 + ], + "o": [ + 0.44613776643990277, + -6.1371507618735270, + 2.75 + ] + }, + "boundary": [ + [ + 0.44613776643990277, + -6.1371507618735270, + 2.75 + ], + [ + 3.6960033513801895, + -6.7101897481743960, + 2.75 + ], + [ + 3.6960033513801895, + -6.7101897481743960, + 0.0 + ], + [ + 0.44613776643990277, + -6.1371507618735270, + 0.0 + ] + ] + }, + { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + -0.17364817766693033, + -0.98480775301220813, + 0.0 + ], + "n": [ + 0.98480775301220813, + -0.17364817766693033, + 0.0 + ], + "o": [ + 3.6960033513801895, + -6.7101897481743960, + 2.75 + ] + }, + "boundary": [ + [ + 3.6960033513801895, + -6.7101897481743960, + 2.75 + ], + [ + 3.1229643650793193, + -9.9600553331146831, + 2.75 + ], + [ + 3.1229643650793193, + -9.9600553331146831, + 0.0 + ], + [ + 3.6960033513801895, + -6.7101897481743960, + 0.0 + ] + ] + }, + { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + -0.98480775301220802, + 0.1736481776669305, + 0.0 + ], + "n": [ + -0.1736481776669305, + -0.98480775301220802, + 0.0 + ], + "o": [ + 3.1229643650793193, + -9.9600553331146831, + 2.75 + ] + }, + "boundary": [ + [ + 3.1229643650793193, + -9.9600553331146831, + 2.75 + ], + [ + -0.12690121986096739, + -9.3870163468138124, + 2.75 + ], + [ + -0.12690121986096739, + -9.3870163468138124, + 0.0 + ], + [ + 3.1229643650793193, + -9.9600553331146831, + 0.0 + ] + ] + }, + { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + 1.0, + 0.0, + 0.0 + ], + "n": [ + 0.0, + 0.0, + -1.0 + ], + "o": [ + 0.44613776643990277, + -6.1371507618735270, + 0.0 + ] + }, + "boundary": [ + [ + 0.44613776643990277, + -6.1371507618735270, + 0.0 + ], + [ + 3.6960033513801895, + -6.7101897481743960, + 0.0 + ], + [ + 3.1229643650793193, + -9.9600553331146831, + 0.0 + ], + [ + -0.12690121986096739, + -9.3870163468138124, + 0.0 + ] + ] + }, + { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + 1.0, + 0.0, + 0.0 + ], + "n": [ + 0.0, + 0.0, + 1.0 + ], + "o": [ + 3.1229643650793193, + -9.9600553331146831, + 2.75 + ] + }, + "boundary": [ + [ + 3.1229643650793193, + -9.9600553331146831, + 2.75 + ], + [ + 3.6960033513801895, + -6.7101897481743960, + 2.75 + ], + [ + 0.44613776643990277, + -6.1371507618735270, + 2.75 + ], + [ + -0.12690121986096739, + -9.3870163468138124, + 2.75 + ] + ] + } + ], + "floor": { + "user_data": {}, + "floor_segments": [ + { + "user_data": {}, + "weighting_factor": 1.0, + "reference_point": { + "type": "Point3D", + "x": 1.7845510657596111, + "z": 0.11000000000000001, + "y": -8.0486030474941046 + }, + "floor_area": 10.890000000000001, + "geometry": { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + 1.0, + 0.0, + 0.0 + ], + "n": [ + 0.0, + 0.0, + 1.0 + ], + "o": [ + -0.12690121986096739, + -9.3870163468138124, + 0.0 + ] + }, + "boundary": [ + [ + -0.12690121986096739, + -9.3870163468138124, + 0.0 + ], + [ + 3.1229643650793193, + -9.9600553331146831, + 0.0 + ], + [ + 3.6960033513801895, + -6.7101897481743960, + 0.0 + ], + [ + 0.44613776643990277, + -6.1371507618735270, + 0.0 + ] + ] + }, + "identifier": "8e38668c-bafc-4f6d-ae14-865450d81b36", + "display_name": "8e38668c-bafc-4f6d-ae14-865450d81b36", + "weighted_floor_area": 10.890000000000001 + } + ], + "geometry": { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + 1.0, + 0.0, + 0.0 + ], + "n": [ + 0.0, + 0.0, + 1.0 + ], + "o": [ + -0.12690121986096739, + -9.3870163468138124, + 0.0 + ] + }, + "boundary": [ + [ + -0.12690121986096739, + -9.3870163468138124, + 0.0 + ], + [ + 3.1229643650793193, + -9.9600553331146831, + 0.0 + ], + [ + 3.6960033513801895, + -6.7101897481743960, + 0.0 + ], + [ + 0.44613776643990277, + -6.1371507618735270, + 0.0 + ] + ] + }, + "identifier": "61963235-7509-467f-89a1-693657551eaf", + "display_name": "61963235-7509-467f-89a1-693657551eaf" + }, + "identifier": "1f8dddae-4018-46bb-a5f0-9eec6ed4718f", + "display_name": "1f8dddae-4018-46bb-a5f0-9eec6ed4718f", + "avg_ceiling_height": 2.75 + } + ] + } + ], + "specific_heat_capacity": "1-LIGHTWEIGHT" + }, + "energy": { + "type": "RoomEnergyPropertiesAbridged", + "people": { + "type": "PeopleAbridged", + "properties": { + "type": "PeopleProperties", + "ph": { + "type": "PeoplePhProperties", + "dwellings": { + "num_dwellings": 1, + "identifier": "a732fa92-d8ee-49ba-8aa6-95974a144e44" + }, + "number_people": 1, + "id_num": 0, + "number_bedrooms": 1 + } + }, + "people_per_area": 0.050000000000000003, + "occupancy_schedule": "Generic Office Occupancy", + "latent_fraction": { + "type": "Autocalculate" + }, + "radiant_fraction": 0.29999999999999999, + "identifier": "Generic Office People", + "activity_schedule": "Seated Adult Activity" + }, + "electric_equipment": { + "type": "ElectricEquipmentAbridged", + "properties": { + "type": "ElectricEquipmentProperties", + "ph": { + "type": "ElectricEquipmentPhProperties", + "equipment_collection": { + "equipment_set": { + "88ec8875-b200-4979-a9fe-8e98e0807360": { + "user_data": {}, + "reference_quantity": 6, + "energy_demand": 0, + "in_conditioned_space": true, + "comment": "default", + "quantity": 1, + "identifier": "88ec8875-b200-4979-a9fe-8e98e0807360", + "equipment_type": "PhPhiusLightingInterior", + "display_name": "PHIUS+ Interior Lighting", + "reference_energy_norm": 1, + "combined_energy_factor": 0, + "frac_high_efficiency": 1.0, + "energy_demand_per_use": 0 + }, + "1b417caa-8c04-4cc9-b887-5c689a3d92be": { + "user_data": {}, + "reference_quantity": 4, + "energy_demand": 1.2200000000000000, + "in_conditioned_space": true, + "comment": "default", + "quantity": 1, + "identifier": "1b417caa-8c04-4cc9-b887-5c689a3d92be", + "equipment_type": "PhFridgeFreezer", + "display_name": "Kitchen fridge/freeze combo", + "reference_energy_norm": 1, + "combined_energy_factor": 0, + "energy_demand_per_use": 0 + }, + "8846c5a2-0380-4457-8730-c5accd772e44": { + "user_data": {}, + "reference_quantity": 1, + "energy_demand": 269, + "capacity_type": 1, + "in_conditioned_space": true, + "comment": "default", + "quantity": 1, + "identifier": "8846c5a2-0380-4457-8730-c5accd772e44", + "equipment_type": "PhDishwasher", + "display_name": "Kitchen dishwasher", + "reference_energy_norm": 2, + "combined_energy_factor": 0, + "capacity": 12, + "energy_demand_per_use": 0, + "_water_connection": { + "value": "2-COLD WATER CONNECTION" + } + }, + "7f175024-965b-4b78-be94-c1af45ff5ae7": { + "user_data": {}, + "gas_efficiency_factor": 2.6699999999999999, + "reference_quantity": 1, + "energy_demand": 0, + "field_utilization_factor": 1.1799999999999999, + "_dryer_type": { + "value": "5-ELECTRIC EXHAUST AIR DRYER" + }, + "in_conditioned_space": true, + "comment": "default", + "quantity": 1, + "field_utilization_factor_type": 1, + "identifier": "7f175024-965b-4b78-be94-c1af45ff5ae7", + "equipment_type": "PhClothesDryer", + "display_name": "Laundry - dryer", + "reference_energy_norm": 2, + "combined_energy_factor": 3.9300000000000002, + "gas_consumption": 0, + "energy_demand_per_use": 0 + }, + "d184d6c5-caf6-4a1a-b5fd-9070fd9cbcda": { + "user_data": {}, + "reference_quantity": 3, + "energy_demand": 0, + "in_conditioned_space": true, + "comment": "default", + "quantity": 1, + "identifier": "d184d6c5-caf6-4a1a-b5fd-9070fd9cbcda", + "equipment_type": "PhPhiusMEL", + "display_name": "PHIUS+ MELS", + "reference_energy_norm": 1, + "combined_energy_factor": 0, + "energy_demand_per_use": 0 + }, + "7241c6fe-744b-4896-afa8-3ce1abdf76c5": { + "user_data": {}, + "reference_quantity": 1, + "modified_energy_factor": 2.7000000000000002, + "energy_demand": 120, + "utilization_factor": 1.0, + "in_conditioned_space": true, + "comment": "default", + "quantity": 1, + "identifier": "7241c6fe-744b-4896-afa8-3ce1abdf76c5", + "equipment_type": "PhClothesWasher", + "display_name": "Laundry - washer", + "reference_energy_norm": 2, + "combined_energy_factor": 0, + "capacity": 0.12740000000000001, + "energy_demand_per_use": 0, + "_water_connection": { + "value": "2-COLD WATER CONNECTION" + } + }, + "ee0f7146-fb06-481a-ae53-f0095de4b480": { + "user_data": {}, + "reference_quantity": 6, + "energy_demand": 0, + "in_conditioned_space": false, + "comment": "default", + "quantity": 1, + "identifier": "ee0f7146-fb06-481a-ae53-f0095de4b480", + "equipment_type": "PhPhiusLightingExterior", + "display_name": "PHIUS+ Exterior Lighting", + "reference_energy_norm": 1, + "combined_energy_factor": 0, + "frac_high_efficiency": 1.0, + "energy_demand_per_use": 0 + }, + "5473b789-ea48-4710-a78b-1c80e3352f78": { + "user_data": {}, + "reference_quantity": 1, + "energy_demand": 0.20000000000000001, + "in_conditioned_space": true, + "comment": "default", + "quantity": 1, + "identifier": "5473b789-ea48-4710-a78b-1c80e3352f78", + "equipment_type": "PhCooktop", + "display_name": "Kitchen cooking", + "reference_energy_norm": 1, + "combined_energy_factor": 0, + "_cooktop_type": { + "value": "1-ELECTRICITY" + }, + "energy_demand_per_use": 0 + } + } + } + } + }, + "lost_fraction": 0.0, + "latent_fraction": 0.0, + "radiant_fraction": 0.5, + "identifier": "Generic Office Equipment_e413bab8", + "watts_per_area": 10.330000000000000, + "schedule": "Generic Office Equipment" + }, + "construction_set": "ConstructionSet_e78b3cfb", + "service_hot_water": { + "type": "ServiceHotWaterAbridged", + "sensible_fraction": 0.20000000000000001, + "latent_fraction": 0.050000000000000003, + "identifier": "Room_3_e338eb50_service_hot_water", + "target_temperature": 60.0, + "flow_per_area": 5.0000000000000002e-05, + "schedule": "Always On" + }, + "hvac": "Room_3_e338eb50 Ideal Loads Air System", + "program_type": "Generic Office Program" + }, + "ph_hvac": { + "type": "RoomPhHvacPropertiesAbridged", + "supportive_devices": [ + { + "user_data": {}, + "device_class_name": "PhSupportiveDevice", + "annual_period_operation_khrs": 6.5, + "device_type": 10, + "in_conditioned_space": false, + "quantity": 3, + "norm_energy_demand_W": 123.0, + "identifier": "8cbb0678-6745-4782-868c-5e6352f8f2bc", + "display_name": "Example Device" + } + ], + "renewable_devices": [ + { + "user_data": {}, + "device_typename": "PhPhotovoltaicDevice", + "percent_coverage": 1.0, + "utilization_factor": 1.0, + "photovoltaic_renewable_energy": 1000.0, + "identifier": "1695ef78-f15f-4ab4-b058-08cb6990bbf9", + "display_name": "my_PV_system", + "array_size": 0.0 + } + ], + "heating_systems": [], + "heat_pump_systems": [ + { + "user_data": {}, + "cooling_params": { + "panel": { + "user_data": {}, + "used": false, + "identifier": "c7a0f141-1c17-44f0-992a-e3f3b4816e45", + "display_name": "c7a0f141-1c17-44f0-992a-e3f3b4816e45", + "annual_COP": 4.0 + }, + "percent_coverage": 1.0, + "dehumidification": { + "user_data": {}, + "useful_heat_loss": false, + "used": true, + "identifier": "83bd709f-56c0-4a59-94f8-a5a383896850", + "display_name": "_unnamed_dehumidification_cooling__0665d18a", + "annual_COP": 2.0 + }, + "ventilation": { + "user_data": {}, + "used": false, + "identifier": "958a1349-5351-4f58-a9d6-e205eb4fb726", + "display_name": "958a1349-5351-4f58-a9d6-e205eb4fb726", + "capacity": 10.0, + "min_coil_temp": 12.0, + "single_speed": false, + "annual_COP": 4.0 + }, + "recirculation": { + "user_data": {}, + "flow_rate_variable": true, + "flow_rate_m3_hr": 100.08000000000000, + "used": true, + "identifier": "38849a9e-9f17-4d1d-9dfb-707be5451850", + "display_name": "_unnamed_recirculation_cooling__9d808675", + "capacity": 10.0, + "min_coil_temp": 12.0, + "single_speed": false, + "annual_COP": 2.0 + } + }, + "COP_2": 4.1200000000000001, + "heat_pump_class_name": "PhHeatPumpRatedMonthly", + "percent_coverage": 1.0, + "ambient_temp_2": 12.0, + "identifier": "3e8db61c-3dd1-4204-9aef-167fff4e610a", + "display_name": "Example_Heat_Pump", + "COP_1": 3.3999999999999999, + "ambient_temp_1": -3.3300000000000001 + }, + { + "user_data": {}, + "cooling_params": { + "panel": { + "user_data": {}, + "used": false, + "identifier": "4956f9c3-ab6e-4cb6-b815-ff769f5fddd1", + "display_name": "4956f9c3-ab6e-4cb6-b815-ff769f5fddd1", + "annual_COP": 4.0 + }, + "percent_coverage": 1.0, + "dehumidification": { + "user_data": {}, + "useful_heat_loss": false, + "used": false, + "identifier": "957ab54c-170e-4731-83d6-0fe90598c99b", + "display_name": "957ab54c-170e-4731-83d6-0fe90598c99b", + "annual_COP": 4.0 + }, + "ventilation": { + "user_data": {}, + "used": false, + "identifier": "b4a9d07b-874c-4d38-99cd-1d99aec75a36", + "display_name": "b4a9d07b-874c-4d38-99cd-1d99aec75a36", + "capacity": 10.0, + "min_coil_temp": 12.0, + "single_speed": false, + "annual_COP": 4.0 + }, + "recirculation": { + "user_data": {}, + "flow_rate_variable": true, + "flow_rate_m3_hr": 100.0, + "used": false, + "identifier": "940b0585-a9d5-4217-a6ab-0ee158ec1011", + "display_name": "940b0585-a9d5-4217-a6ab-0ee158ec1011", + "capacity": 10.0, + "min_coil_temp": 12.0, + "single_speed": false, + "annual_COP": 4.0 + } + }, + "COP_2": 2.5, + "heat_pump_class_name": "PhHeatPumpRatedMonthly", + "percent_coverage": 1.0, + "ambient_temp_2": 8.3330000000000002, + "identifier": "7faeabb6-e1bf-460d-a379-cde6ff1f2130", + "display_name": "None", + "COP_1": 2.5, + "ambient_temp_1": -8.3330000000000002 + } + ], + "hot_water_system": { + "type": "PhHvacHotWaterSystemPh", + "recirc_piping": { + "39fb6b4c-e36a-48ab-a787-345479fe55e7": { + "user_data": {}, + "segments": { + "c6beb3cf-8828-4d46-918d-20cf716874e6": { + "user_data": {}, + "insulation_thickness_mm": 25.399999999999999, + "insulation_conductivity": 0.040000000000000001, + "insulation_reflective": true, + "diameter_mm": 25.399999999999999, + "material_value": "2-COPPER_L", + "water_temp_c": 48.0, + "geometry": { + "p": [ + 0.0, + -5.5, + 0.0 + ], + "v": [ + 0.0, + 0.0, + 1.1000000000000001 + ], + "type": "LineSegment3D" + }, + "daily_period": 23.0, + "identifier": "c6beb3cf-8828-4d46-918d-20cf716874e6", + "display_name": "c6beb3cf-8828-4d46-918d-20cf716874e6", + "insulation_quality": null + } + }, + "display_name": "_unnamed_", + "identifier": "39fb6b4c-e36a-48ab-a787-345479fe55e7" + } + }, + "number_tap_points": 1, + "heaters": { + "f7df863e-316f-4bea-9b2f-0570e386469e": { + "user_data": {}, + "total_system_perf_ratio": null, + "percent_coverage": 1.0, + "in_conditioned_space": true, + "identifier": "f7df863e-316f-4bea-9b2f-0570e386469e", + "display_name": "f7df863e-316f-4bea-9b2f-0570e386469e", + "heater_type": "PhHvacHotWaterHeaterHeatPump_Annual", + "annual_COP": null + } + }, + "recirc_hours": 23, + "id_num": 0, + "recirc_temp": 48.0, + "distribution_piping": { + "4eda909a-b991-4f73-aa0e-de3d28345057": { + "user_data": {}, + "branches": { + "a37d25f2-7fdb-43e3-ac55-8d2be4620fb6": { + "user_data": {}, + "fixtures": { + "fd5e311f-2185-44fd-82a8-81301b5234d2": { + "user_data": {}, + "segments": { + "62a069b8-954e-4b73-b480-8145bda874cf": { + "user_data": {}, + "insulation_thickness_mm": 0.0, + "insulation_conductivity": 0.040000000000000001, + "insulation_reflective": false, + "diameter_mm": 9.5249999999999986, + "material_value": "1-COPPER_M", + "water_temp_c": 55.0, + "geometry": { + "p": [ + 0.0, + -5.5, + 0.0 + ], + "v": [ + 0.0, + 0.0, + 5.5 + ], + "type": "LineSegment3D" + }, + "daily_period": 24, + "identifier": "62a069b8-954e-4b73-b480-8145bda874cf", + "display_name": "62a069b8-954e-4b73-b480-8145bda874cf", + "insulation_quality": null + } + }, + "display_name": "Test_Fixture", + "identifier": "fd5e311f-2185-44fd-82a8-81301b5234d2" + } + }, + "identifier": "a37d25f2-7fdb-43e3-ac55-8d2be4620fb6", + "display_name": "Test_Branch", + "pipe_element": { + "user_data": {}, + "segments": { + "18a0964f-a3e8-41ac-a168-2b0b25207868": { + "user_data": {}, + "insulation_thickness_mm": 0.0, + "insulation_conductivity": 0.040000000000000001, + "insulation_reflective": false, + "diameter_mm": 19.049999999999997, + "material_value": "3-COPPER_K", + "water_temp_c": 60.0, + "geometry": { + "p": [ + 0.0, + -5.5, + 0.0 + ], + "v": [ + 0.0, + 0.0, + 5.5 + ], + "type": "LineSegment3D" + }, + "daily_period": 24, + "identifier": "18a0964f-a3e8-41ac-a168-2b0b25207868", + "display_name": "18a0964f-a3e8-41ac-a168-2b0b25207868", + "insulation_quality": null + } + }, + "display_name": "b77694c3-0cea-4ec9-89c2-208e9027f33c", + "identifier": "b77694c3-0cea-4ec9-89c2-208e9027f33c" + } + } + }, + "multiplier": 1, + "identifier": "4eda909a-b991-4f73-aa0e-de3d28345057", + "display_name": "Test_Trunk", + "pipe_element": { + "user_data": {}, + "segments": { + "b869a0ca-884d-4789-a6fb-7542f7c2fdf9": { + "user_data": {}, + "insulation_thickness_mm": 0.0, + "insulation_conductivity": 0.040000000000000001, + "insulation_reflective": false, + "diameter_mm": 38.099999999999994, + "material_value": "6-PEX", + "water_temp_c": 60.0, + "geometry": { + "p": [ + 0.0, + -5.5, + 0.0 + ], + "v": [ + 0.0, + 0.0, + 5.5 + ], + "type": "LineSegment3D" + }, + "daily_period": 24, + "identifier": "b869a0ca-884d-4789-a6fb-7542f7c2fdf9", + "display_name": "b869a0ca-884d-4789-a6fb-7542f7c2fdf9", + "insulation_quality": null + } + }, + "display_name": "5fa1e31f-c96a-4539-9d02-31a1f9e5f440", + "identifier": "5fa1e31f-c96a-4539-9d02-31a1f9e5f440" + } + } + }, + "identifier": "b52ed670-14e0-42e6-af70-b4a28b662631", + "display_name": "SHW System_0d847320", + "tank_solar": { + "user_data": {}, + "standby_losses": 4.0, + "solar_connection": false, + "in_conditioned_space": true, + "quantity": 1, + "solar_losses": 0.0, + "identifier": "b428d0d5-8ce9-4ef6-8596-c2708261f67b", + "display_name": "_unnamed_hw_tank_", + "storage_capacity": 300, + "storage_loss_rate": 0.0, + "standby_fraction": 0.29999999999999999, + "room_temp": 20, + "_tank_type": { + "value": "2-DHW ONLY" + }, + "water_temp": 60 + } + }, + "id_num": 0, + "exhaust_vent_devices": [ + { + "user_data": {}, + "device_class_name": "ExhaustVentDryer", + "quantity": 1, + "annual_runtime_minutes": 7.625, + "identifier": "c60732dc-8385-4ca1-b2b4-0c1c55fd0983", + "display_name": "example_dryer_vent", + "exhaust_flow_rate_m3s": 123.0 + } + ], + "ventilation_system": { + "user_data": {}, + "id_num": 0, + "sys_type": 1, + "exhaust_ducting": [ + { + "user_data": {}, + "duct_type": 2, + "segments": { + "0237d114-614d-4775-b300-622297e81889": { + "user_data": {}, + "diameter": 0.17600000000000002, + "insulation_conductivity": 0.040000000000000001, + "insulation_thickness": 0.02794, + "insulation_reflective": true, + "geometry": { + "p": [ + 0.0, + -5.5, + 0.0 + ], + "v": [ + 1.0832885283134288, + -0.19101299543362338, + 0.0 + ], + "type": "LineSegment3D" + }, + "height": null, + "identifier": "0237d114-614d-4775-b300-622297e81889", + "display_name": "0237d114-614d-4775-b300-622297e81889", + "width": null + } + }, + "identifier": "ece37742-6c86-40bc-97fd-0d4933fd1a38", + "display_name": "Test_Vent_System_exhaust" + } + ], + "supply_ducting": [ + { + "user_data": {}, + "duct_type": 1, + "segments": { + "fac12925-7f54-411c-995b-60045857b4b4": { + "user_data": {}, + "diameter": 0.17600000000000002, + "insulation_conductivity": 0.040000000000000001, + "insulation_thickness": 0.02794, + "insulation_reflective": true, + "geometry": { + "p": [ + 0.0, + -5.5, + 0.0 + ], + "v": [ + 0.0, + 0.0, + 1.1000000000000001 + ], + "type": "LineSegment3D" + }, + "height": null, + "identifier": "fac12925-7f54-411c-995b-60045857b4b4", + "display_name": "fac12925-7f54-411c-995b-60045857b4b4", + "width": null + } + }, + "identifier": "4ac95cb1-332b-4e97-839d-2433cc97aa81", + "display_name": "__unnamed_vent_duct__" + } + ], + "identifier": "69aa69e2-6599-4401-b0c6-c12db6a521da", + "display_name": "Test_Vent_System", + "ventilation_unit": { + "user_data": {}, + "electric_efficiency": 0.33300000000000002, + "sensible_heat_recovery": 0.82999999999999996, + "latent_heat_recovery": 0.0, + "in_conditioned_space": true, + "temperature_below_defrost_used": -5.0, + "quantity": 1, + "frost_protection_reqd": true, + "identifier": "3ffe784d-dcaf-4006-b7e6-8cb4a91e8d1b", + "display_name": "Test_Unit" + } + } + }, + "radiance": { + "type": "RoomRadiancePropertiesAbridged" + } + }, + "identifier": "Room_3_e338eb50", + "display_name": "Room_3" + }, + { + "type": "Room", + "story": "2", + "faces": [ + { + "type": "Face", + "face_type": "Wall", + "apertures": [ + { + "type": "Aperture", + "properties": { + "type": "AperturePropertiesAbridged", + "ph": { + "type": "AperturePhPropertiesAbridged", + "install_depth": 0.1016, + "winter_shading_factor": 0.75, + "summer_shading_factor": 0.75, + "id_num": 0, + "default_monthly_shading_correction_factor": 1.0, + "variant_type": "_unnamed_type_" + }, + "energy": { + "type": "ApertureEnergyPropertiesAbridged" + }, + "ph_hvac": { + "type": "AperturePhHvacProperties" + }, + "radiance": { + "type": "ApertureRadiancePropertiesAbridged" + } + }, + "geometry": { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + 0.98480775301220813, + -0.17364817766693033, + 0.0 + ], + "n": [ + 0.17364817766693033, + 0.98480775301220813, + 0.0 + ], + "o": [ + 6.6645303626818855, + -6.6751365166915884, + 2.7568536488623963 + ] + }, + "boundary": [ + [ + 11.751374618646405, + -7.5720844056800098, + 2.7568536488623963 + ], + [ + 11.751374618646405, + -7.5720844056800098, + 0.54314635113760423 + ], + [ + 6.6645303626818855, + -6.6751365166915884, + 0.54314635113760423 + ], + [ + 6.6645303626818855, + -6.6751365166915884, + 2.7568536488623963 + ] + ] + }, + "is_operable": false, + "identifier": "Room_4_33d6ae6b..Face0_Glz0", + "display_name": "Room_4_33d6ae6b..Face0_Glz0", + "boundary_condition": { + "type": "Outdoors", + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" + }, + "sun_exposure": true + } + } + ], + "properties": { + "type": "FacePropertiesAbridged", + "ph": { + "type": "FacePhPropertiesAbridged", + "id_num": 0 + }, + "energy": { + "type": "FaceEnergyPropertiesAbridged" + }, + "ph_hvac": { + "type": "FacePhHvacProperties" + }, + "radiance": { + "type": "FaceRadiancePropertiesAbridged" + } + }, + "geometry": { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + 0.98480775301220802, + -0.17364817766693047, + 0.0 + ], + "n": [ + 0.17364817766693047, + 0.98480775301220802, + 0.0 + ], + "o": [ + 5.4164426415671443, + -6.4550649771681172, + 3.3000000000000003 + ] + }, + "boundary": [ + [ + 12.999462339761147, + -7.7921559452034819, + 3.3000000000000003 + ], + [ + 12.999462339761147, + -7.7921559452034819, + 0.0 + ], + [ + 5.4164426415671443, + -6.4550649771681172, + 0.0 + ], + [ + 5.4164426415671443, + -6.4550649771681172, + 3.3000000000000003 + ] + ] + }, + "identifier": "Room_4_33d6ae6b..Face0", + "display_name": "Room_4_33d6ae6b..Face0", + "boundary_condition": { + "type": "Outdoors", + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" + }, + "sun_exposure": true + } + }, + { + "type": "Face", + "face_type": "Wall", + "apertures": [ + { + "type": "Aperture", + "properties": { + "type": "AperturePropertiesAbridged", + "ph": { + "type": "AperturePhPropertiesAbridged", + "install_depth": 0.1016, + "winter_shading_factor": 0.75, + "summer_shading_factor": 0.75, + "id_num": 0, + "default_monthly_shading_correction_factor": 1.0, + "variant_type": "_unnamed_type_" + }, + "energy": { + "type": "ApertureEnergyPropertiesAbridged" + }, + "ph_hvac": { + "type": "AperturePhHvacProperties" + }, + "radiance": { + "type": "ApertureRadiancePropertiesAbridged" + } + }, + "geometry": { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + -0.17364817766693014, + -0.98480775301220813, + 0.0 + ], + "n": [ + 0.98480775301220813, + -0.17364817766693014, + 0.0 + ], + "o": [ + 12.873707174319163, + -8.5053489286976198, + 2.7568536488623963 + ] + }, + "boundary": [ + [ + 12.361165523468637, + -11.412117074963060, + 2.7568536488623963 + ], + [ + 12.361165523468637, + -11.412117074963060, + 0.54314635113760423 + ], + [ + 12.873707174319163, + -8.5053489286976198, + 0.54314635113760423 + ], + [ + 12.873707174319163, + -8.5053489286976198, + 2.7568536488623963 + ] + ] + }, + "is_operable": false, + "identifier": "Room_4_33d6ae6b..Face1_Glz0", + "display_name": "Room_4_33d6ae6b..Face1_Glz0", + "boundary_condition": { + "type": "Outdoors", + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" + }, + "sun_exposure": true + } + } + ], + "properties": { + "type": "FacePropertiesAbridged", + "ph": { + "type": "FacePhPropertiesAbridged", + "id_num": 0 + }, + "energy": { + "type": "FaceEnergyPropertiesAbridged" + }, + "ph_hvac": { + "type": "FacePhHvacProperties" + }, + "radiance": { + "type": "FaceRadiancePropertiesAbridged" + } + }, + "geometry": { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + -0.17364817766693064, + -0.98480775301220802, + 0.0 + ], + "n": [ + 0.98480775301220802, + -0.17364817766693064, + 0.0 + ], + "o": [ + 12.999462339761147, + -7.7921559452034819, + 3.3000000000000003 + ] + }, + "boundary": [ + [ + 12.235410358026652, + -12.125310058457197, + 3.3000000000000003 + ], + [ + 12.235410358026652, + -12.125310058457197, + 0.0 + ], + [ + 12.999462339761147, + -7.7921559452034819, + 0.0 + ], + [ + 12.999462339761147, + -7.7921559452034819, + 3.3000000000000003 + ] + ] + }, + "identifier": "Room_4_33d6ae6b..Face1", + "display_name": "Room_4_33d6ae6b..Face1", + "boundary_condition": { + "type": "Outdoors", + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" + }, + "sun_exposure": true + } + }, + { + "type": "Face", + "face_type": "Wall", + "apertures": [ + { + "type": "Aperture", + "properties": { + "type": "AperturePropertiesAbridged", + "ph": { + "type": "AperturePhPropertiesAbridged", + "install_depth": 0.1016, + "winter_shading_factor": 0.75, + "summer_shading_factor": 0.75, + "id_num": 0, + "default_monthly_shading_correction_factor": 1.0, + "variant_type": "_unnamed_type_" + }, + "energy": { + "type": "ApertureEnergyPropertiesAbridged" + }, + "ph_hvac": { + "type": "AperturePhHvacProperties" + }, + "radiance": { + "type": "ApertureRadiancePropertiesAbridged" + } + }, + "geometry": { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + -0.98480775301220802, + 0.17364817766693069, + 0.0 + ], + "n": [ + -0.17364817766693069, + -0.98480775301220802, + 0.0 + ], + "o": [ + 10.987322636911911, + -11.905238518933727, + 2.7568536488623963 + ] + }, + "boundary": [ + [ + 5.9004783809473924, + -11.008290629945304, + 2.7568536488623963 + ], + [ + 5.9004783809473924, + -11.008290629945304, + 0.54314635113760423 + ], + [ + 10.987322636911911, + -11.905238518933727, + 0.54314635113760423 + ], + [ + 10.987322636911911, + -11.905238518933727, + 2.7568536488623963 + ] + ] + }, + "is_operable": false, + "identifier": "Room_4_33d6ae6b..Face2_Glz0", + "display_name": "Room_4_33d6ae6b..Face2_Glz0", + "boundary_condition": { + "type": "Outdoors", + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" + }, + "sun_exposure": true + } + } + ], + "properties": { + "type": "FacePropertiesAbridged", + "ph": { + "type": "FacePhPropertiesAbridged", + "id_num": 0 + }, + "energy": { + "type": "FaceEnergyPropertiesAbridged" + }, + "ph_hvac": { + "type": "FacePhHvacProperties" + }, + "radiance": { + "type": "FaceRadiancePropertiesAbridged" + } + }, + "geometry": { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + -0.98480775301220802, + 0.17364817766693064, + 0.0 + ], + "n": [ + -0.17364817766693064, + -0.98480775301220802, + 0.0 + ], + "o": [ + 12.235410358026652, + -12.125310058457197, + 3.3000000000000003 + ] + }, + "boundary": [ + [ + 4.6523906598326512, + -10.788219090421832, + 3.3000000000000003 + ], + [ + 4.6523906598326512, + -10.788219090421832, + 0.0 + ], + [ + 12.235410358026652, + -12.125310058457197, + 0.0 + ], + [ + 12.235410358026652, + -12.125310058457197, + 3.3000000000000003 + ] + ] + }, + "identifier": "Room_4_33d6ae6b..Face2", + "display_name": "Room_4_33d6ae6b..Face2", + "boundary_condition": { + "type": "Outdoors", + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" + }, + "sun_exposure": true + } + }, + { + "type": "Face", + "face_type": "Wall", + "properties": { + "type": "FacePropertiesAbridged", + "ph": { + "type": "FacePhPropertiesAbridged", + "id_num": 0 + }, + "energy": { + "type": "FaceEnergyPropertiesAbridged" + }, + "ph_hvac": { + "type": "FacePhHvacProperties" + }, + "radiance": { + "type": "FaceRadiancePropertiesAbridged" + } + }, + "geometry": { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + 0.1736481776669303, + 0.98480775301220813, + 0.0 + ], + "n": [ + -0.98480775301220813, + 0.1736481776669303, + 0.0 + ], + "o": [ + 4.6523906598326512, + -10.788219090421832, + 3.3000000000000003 + ] + }, + "boundary": [ + [ + 5.4164426415671443, + -6.4550649771681172, + 3.3000000000000003 + ], + [ + 5.4164426415671443, + -6.4550649771681172, + 0.0 + ], + [ + 4.6523906598326512, + -10.788219090421832, + 0.0 + ], + [ + 4.6523906598326512, + -10.788219090421832, + 3.3000000000000003 + ] + ] + }, + "identifier": "Room_4_33d6ae6b..Face3", + "display_name": "Room_4_33d6ae6b..Face3", + "boundary_condition": { + "type": "Surface", + "boundary_condition_objects": [ + "Room_3_e338eb50..Face1", + "Room_3_e338eb50" + ] + } + }, + { + "type": "Face", + "face_type": "Floor", + "properties": { + "type": "FacePropertiesAbridged", + "ph": { + "type": "FacePhPropertiesAbridged", + "id_num": 0 + }, + "energy": { + "type": "FaceEnergyPropertiesAbridged" + }, + "ph_hvac": { + "type": "FacePhHvacProperties" + }, + "radiance": { + "type": "FaceRadiancePropertiesAbridged" + } + }, + "geometry": { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + 1.0, + 0.0, + 0.0 + ], + "n": [ + 0.0, + 0.0, + -1.0 + ], + "o": [ + 12.999462339761147, + -7.7921559452034819, + 0.0 + ] + }, + "boundary": [ + [ + 12.999462339761147, + -7.7921559452034819, + 0.0 + ], + [ + 12.235410358026652, + -12.125310058457197, + 0.0 + ], + [ + 4.6523906598326512, + -10.788219090421832, + 0.0 + ], + [ + 5.4164426415671443, + -6.4550649771681172, + 0.0 + ] + ] + }, + "identifier": "Room_4_33d6ae6b..Face4", + "display_name": "Room_4_33d6ae6b..Face4", + "boundary_condition": { + "type": "Ground" + } + }, + { + "type": "Face", + "face_type": "RoofCeiling", + "apertures": [ + { + "type": "Aperture", + "properties": { + "type": "AperturePropertiesAbridged", + "ph": { + "type": "AperturePhPropertiesAbridged", + "install_depth": 0.1016, + "winter_shading_factor": 0.75, + "summer_shading_factor": 0.75, + "id_num": 0, + "default_monthly_shading_correction_factor": 1.0, + "variant_type": "_unnamed_type_" + }, + "energy": { + "type": "ApertureEnergyPropertiesAbridged" + }, + "ph_hvac": { + "type": "AperturePhHvacProperties" + }, + "radiance": { + "type": "ApertureRadiancePropertiesAbridged" + } + }, + "geometry": { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + 1.0, + 0.0, + 0.0 + ], + "n": [ + 0.0, + 0.0, + 1.0 + ], + "o": [ + 11.236795656297232, + -11.294921891797244, + 3.3000000000000003 + ] + }, + "boundary": [ + [ + 6.4150573432965654, + -7.2854531438280699, + 3.3000000000000003 + ], + [ + 5.8747910058330852, + -10.349455801236152, + 3.3000000000000003 + ], + [ + 11.236795656297232, + -11.294921891797244, + 3.3000000000000003 + ], + [ + 11.777061993760713, + -8.2309192343891606, + 3.3000000000000003 + ] + ] + }, + "is_operable": false, + "identifier": "Room_4_33d6ae6b..Face5_Glz0", + "display_name": "Room_4_33d6ae6b..Face5_Glz0", + "boundary_condition": { + "type": "Outdoors", + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" + }, + "sun_exposure": true + } + } + ], + "properties": { + "type": "FacePropertiesAbridged", + "ph": { + "type": "FacePhPropertiesAbridged", + "id_num": 0 + }, + "energy": { + "type": "FaceEnergyPropertiesAbridged" + }, + "ph_hvac": { + "type": "FacePhHvacProperties" + }, + "radiance": { + "type": "FaceRadiancePropertiesAbridged" + } + }, + "geometry": { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + 1.0, + 0.0, + 0.0 + ], + "n": [ + 0.0, + 0.0, + 1.0 + ], + "o": [ + 4.6523906598326512, + -10.788219090421832, + 3.3000000000000003 + ] + }, + "boundary": [ + [ + 5.4164426415671443, + -6.4550649771681172, + 3.3000000000000003 + ], + [ + 4.6523906598326512, + -10.788219090421832, + 3.3000000000000003 + ], + [ + 12.235410358026652, + -12.125310058457197, + 3.3000000000000003 + ], + [ + 12.999462339761147, + -7.7921559452034819, + 3.3000000000000003 + ] + ] + }, + "identifier": "Room_4_33d6ae6b..Face5", + "display_name": "Room_4_33d6ae6b..Face5", + "boundary_condition": { + "type": "Outdoors", + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" + }, + "sun_exposure": true + } + } + ], + "properties": { + "type": "RoomPropertiesAbridged", + "ph": { + "type": "RoomPhPropertiesAbridged", + "ph_foundations": [], + "ph_bldg_segment_id": "d2163927-f397-4b3f-9b0e-86123854ae83", + "spaces": [ + { + "user_data": {}, + "number": "102", + "wufi_type": 99, + "properties": { + "type": "SpaceProperties", + "ph": { + "type": "SpacePhProperties", + "_v_eta": null, + "id_num": 0, + "_v_tran": null, + "_v_sup": null + }, + "energy": { + "type": "SpaceEnergyProperties", + "id_num": 0 + } + }, + "name": "Room_4", + "quantity": 1, + "identifier": "1e0c2c23-a3eb-45ec-8c0e-08e0772c7d14", + "volumes": [ + { + "user_data": {}, + "geometry": [ + { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + 0.17364817766693044, + 0.98480775301220813, + 0.0 + ], + "n": [ + -0.98480775301220813, + 0.17364817766693044, + 0.0 + ], + "o": [ + 5.2895414217061774, + -10.342081323981931, + 2.75 + ] + }, + "boundary": [ + [ + 5.2895414217061774, + -10.342081323981931, + 2.75 + ], + [ + 5.8625804080070480, + -7.0922157390416434, + 2.75 + ], + [ + 5.8625804080070480, + -7.0922157390416434, + 0.0 + ], + [ + 5.2895414217061774, + -10.342081323981931, + 0.0 + ] + ] + }, + { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + 0.98480775301220802, + -0.17364817766693053, + 0.0 + ], + "n": [ + 0.17364817766693053, + 0.98480775301220802, + 0.0 + ], + "o": [ + 5.8625804080070480, + -7.0922157390416434, + 2.75 + ] + }, + "boundary": [ + [ + 5.8625804080070480, + -7.0922157390416434, + 2.75 + ], + [ + 9.1124459929473343, + -7.6652547253425141, + 2.75 + ], + [ + 9.1124459929473343, + -7.6652547253425141, + 0.0 + ], + [ + 5.8625804080070480, + -7.0922157390416434, + 0.0 + ] + ] + }, + { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + -0.17364817766693053, + -0.98480775301220802, + 0.0 + ], + "n": [ + 0.98480775301220802, + -0.17364817766693053, + 0.0 + ], + "o": [ + 9.1124459929473343, + -7.6652547253425141, + 2.75 + ] + }, + "boundary": [ + [ + 9.1124459929473343, + -7.6652547253425141, + 2.75 + ], + [ + 8.5394070066464636, + -10.915120310282800, + 2.75 + ], + [ + 8.5394070066464636, + -10.915120310282800, + 0.0 + ], + [ + 9.1124459929473343, + -7.6652547253425141, + 0.0 + ] + ] + }, + { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + -0.98480775301220813, + 0.17364817766693003, + 0.0 + ], + "n": [ + -0.17364817766693003, + -0.98480775301220813, + 0.0 + ], + "o": [ + 8.5394070066464636, + -10.915120310282800, + 2.75 + ] + }, + "boundary": [ + [ + 8.5394070066464636, + -10.915120310282800, + 2.75 + ], + [ + 5.2895414217061774, + -10.342081323981931, + 2.75 + ], + [ + 5.2895414217061774, + -10.342081323981931, + 0.0 + ], + [ + 8.5394070066464636, + -10.915120310282800, + 0.0 + ] + ] + }, + { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + 1.0, + 0.0, + 0.0 + ], + "n": [ + 0.0, + 0.0, + -1.0 + ], + "o": [ + 5.8625804080070480, + -7.0922157390416434, + 0.0 + ] + }, + "boundary": [ + [ + 5.8625804080070480, + -7.0922157390416434, + 0.0 + ], + [ + 9.1124459929473343, + -7.6652547253425141, + 0.0 + ], + [ + 8.5394070066464636, + -10.915120310282800, + 0.0 + ], + [ + 5.2895414217061774, + -10.342081323981931, + 0.0 + ] + ] + }, + { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + 1.0, + 0.0, + 0.0 + ], + "n": [ + 0.0, + 0.0, + 1.0 + ], + "o": [ + 8.5394070066464636, + -10.915120310282800, + 2.75 + ] + }, + "boundary": [ + [ + 8.5394070066464636, + -10.915120310282800, + 2.75 + ], + [ + 9.1124459929473343, + -7.6652547253425141, + 2.75 + ], + [ + 5.8625804080070480, + -7.0922157390416434, + 2.75 + ], + [ + 5.2895414217061774, + -10.342081323981931, + 2.75 + ] + ] + } ], - [ - 0.82294901687515765, - 0.0, - 0.49376941012509468 - ] - ] - }, - "display_name": "_unnamed_bldg_segment__2434f508", - "user_data": {}, - "id_num": 0, - "psi_value": 0.01 + "floor": { + "user_data": {}, + "floor_segments": [ + { + "user_data": {}, + "weighting_factor": 1.0, + "reference_point": { + "type": "Point3D", + "x": 7.2009937073267549, + "z": 0.11000000000000001, + "y": -9.0036680246622218 + }, + "floor_area": 10.890000000000001, + "geometry": { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + 1.0, + 0.0, + 0.0 + ], + "n": [ + 0.0, + 0.0, + 1.0 + ], + "o": [ + 5.2895414217061774, + -10.342081323981931, + 0.0 + ] + }, + "boundary": [ + [ + 5.2895414217061774, + -10.342081323981931, + 0.0 + ], + [ + 8.5394070066464636, + -10.915120310282800, + 0.0 + ], + [ + 9.1124459929473343, + -7.6652547253425141, + 0.0 + ], + [ + 5.8625804080070480, + -7.0922157390416434, + 0.0 + ] + ] + }, + "identifier": "a42f6c91-e661-4dc8-b8fc-031ff8e3358c", + "display_name": "a42f6c91-e661-4dc8-b8fc-031ff8e3358c", + "weighted_floor_area": 10.890000000000001 + } + ], + "geometry": { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + 1.0, + 0.0, + 0.0 + ], + "n": [ + 0.0, + 0.0, + 1.0 + ], + "o": [ + 5.2895414217061774, + -10.342081323981931, + 0.0 + ] + }, + "boundary": [ + [ + 5.2895414217061774, + -10.342081323981931, + 0.0 + ], + [ + 8.5394070066464636, + -10.915120310282800, + 0.0 + ], + [ + 9.1124459929473343, + -7.6652547253425141, + 0.0 + ], + [ + 5.8625804080070480, + -7.0922157390416434, + 0.0 + ] + ] + }, + "identifier": "47d6cbd3-de5a-42f3-9b69-67fc1ad7ec93", + "display_name": "47d6cbd3-de5a-42f3-9b69-67fc1ad7ec93" + }, + "identifier": "ba0863bc-e064-44a2-b59d-43db62d4f54a", + "display_name": "ba0863bc-e064-44a2-b59d-43db62d4f54a", + "avg_ceiling_height": 2.75 + } + ] + } + ], + "specific_heat_capacity": "1-LIGHTWEIGHT" + }, + "energy": { + "type": "RoomEnergyPropertiesAbridged", + "people": { + "type": "PeopleAbridged", + "properties": { + "type": "PeopleProperties", + "ph": { + "type": "PeoplePhProperties", + "dwellings": { + "num_dwellings": 2, + "identifier": "075b79ab-bd35-4acc-a929-50d92f460167" + }, + "number_people": 2, + "id_num": 0, + "number_bedrooms": 2 + } }, - "51ad935b-64ad-44b4-9a66-9551426c3bbb": { - "quantity": 1.0, - "identifier": "51ad935b-64ad-44b4-9a66-9551426c3bbb", - "_group_type": { - "value": "15-AMBIENT" - }, - "fRsi_value": 0.75, - "geometry": { - "type": "Polyline3D", - "vertices": [ - [ - 6.1521286236252202, - 0.0, - 0.49376941012509468 - ], - [ - 10.847871376374780, - 0.0, - 0.49376941012509468 - ], - [ - 10.847871376374780, - 0.0, - 2.5062305898749053 - ], - [ - 6.1521286236252202, - 0.0, - 2.5062305898749053 - ], - [ - 6.1521286236252202, - 0.0, - 0.49376941012509468 - ] - ] - }, - "display_name": "_unnamed_bldg_segment__69ac0b9a", - "user_data": {}, - "id_num": 0, - "psi_value": 0.01 + "people_per_area": 0.071428571428571425, + "occupancy_schedule": "Generic Office Occupancy", + "latent_fraction": { + "type": "Autocalculate" }, - "08e73269-2fff-4eef-9ed9-353242f446aa": { - "quantity": 1.0, - "identifier": "08e73269-2fff-4eef-9ed9-353242f446aa", - "_group_type": { - "value": "15-AMBIENT" - }, - "fRsi_value": 0.75, - "geometry": { - "type": "Polyline3D", - "vertices": [ - [ - 12.0, - 0.0, - 0.0 - ], - [ - 12.0, - 4.0, - 0.0 - ], - [ - 12.0, - 4.0, - 3.0 - ], - [ - 12.0, - 0.0, - 3.0 - ], - [ - 12.0, - 0.0, - 0.0 - ] - ] - }, - "display_name": "_unnamed_bldg_segment__74c030c5", - "user_data": {}, - "id_num": 0, - "psi_value": 0.01 + "radiant_fraction": 0.29999999999999999, + "identifier": "Generic Office People", + "activity_schedule": "Seated Adult Activity" + }, + "electric_equipment": { + "type": "ElectricEquipmentAbridged", + "properties": { + "type": "ElectricEquipmentProperties", + "ph": { + "type": "ElectricEquipmentPhProperties", + "equipment_collection": { + "equipment_set": { + "88ec8875-b200-4979-a9fe-8e98e0807360": { + "user_data": {}, + "reference_quantity": 6, + "energy_demand": 0, + "in_conditioned_space": true, + "comment": "default", + "quantity": 1, + "identifier": "88ec8875-b200-4979-a9fe-8e98e0807360", + "equipment_type": "PhPhiusLightingInterior", + "display_name": "PHIUS+ Interior Lighting", + "reference_energy_norm": 1, + "combined_energy_factor": 0, + "frac_high_efficiency": 1.0, + "energy_demand_per_use": 0 + }, + "1b417caa-8c04-4cc9-b887-5c689a3d92be": { + "user_data": {}, + "reference_quantity": 4, + "energy_demand": 1.2200000000000000, + "in_conditioned_space": true, + "comment": "default", + "quantity": 1, + "identifier": "1b417caa-8c04-4cc9-b887-5c689a3d92be", + "equipment_type": "PhFridgeFreezer", + "display_name": "Kitchen fridge/freeze combo", + "reference_energy_norm": 1, + "combined_energy_factor": 0, + "energy_demand_per_use": 0 + }, + "8846c5a2-0380-4457-8730-c5accd772e44": { + "user_data": {}, + "reference_quantity": 1, + "energy_demand": 269, + "capacity_type": 1, + "in_conditioned_space": true, + "comment": "default", + "quantity": 1, + "identifier": "8846c5a2-0380-4457-8730-c5accd772e44", + "equipment_type": "PhDishwasher", + "display_name": "Kitchen dishwasher", + "reference_energy_norm": 2, + "combined_energy_factor": 0, + "capacity": 12, + "energy_demand_per_use": 0, + "_water_connection": { + "value": "2-COLD WATER CONNECTION" + } + }, + "7f175024-965b-4b78-be94-c1af45ff5ae7": { + "user_data": {}, + "gas_efficiency_factor": 2.6699999999999999, + "reference_quantity": 1, + "energy_demand": 0, + "field_utilization_factor": 1.1799999999999999, + "_dryer_type": { + "value": "5-ELECTRIC EXHAUST AIR DRYER" + }, + "in_conditioned_space": true, + "comment": "default", + "quantity": 1, + "field_utilization_factor_type": 1, + "identifier": "7f175024-965b-4b78-be94-c1af45ff5ae7", + "equipment_type": "PhClothesDryer", + "display_name": "Laundry - dryer", + "reference_energy_norm": 2, + "combined_energy_factor": 3.9300000000000002, + "gas_consumption": 0, + "energy_demand_per_use": 0 + }, + "d184d6c5-caf6-4a1a-b5fd-9070fd9cbcda": { + "user_data": {}, + "reference_quantity": 3, + "energy_demand": 0, + "in_conditioned_space": true, + "comment": "default", + "quantity": 1, + "identifier": "d184d6c5-caf6-4a1a-b5fd-9070fd9cbcda", + "equipment_type": "PhPhiusMEL", + "display_name": "PHIUS+ MELS", + "reference_energy_norm": 1, + "combined_energy_factor": 0, + "energy_demand_per_use": 0 + }, + "7241c6fe-744b-4896-afa8-3ce1abdf76c5": { + "user_data": {}, + "reference_quantity": 1, + "modified_energy_factor": 2.7000000000000002, + "energy_demand": 120, + "utilization_factor": 1.0, + "in_conditioned_space": true, + "comment": "default", + "quantity": 1, + "identifier": "7241c6fe-744b-4896-afa8-3ce1abdf76c5", + "equipment_type": "PhClothesWasher", + "display_name": "Laundry - washer", + "reference_energy_norm": 2, + "combined_energy_factor": 0, + "capacity": 0.12740000000000001, + "energy_demand_per_use": 0, + "_water_connection": { + "value": "2-COLD WATER CONNECTION" + } + }, + "ee0f7146-fb06-481a-ae53-f0095de4b480": { + "user_data": {}, + "reference_quantity": 6, + "energy_demand": 0, + "in_conditioned_space": false, + "comment": "default", + "quantity": 1, + "identifier": "ee0f7146-fb06-481a-ae53-f0095de4b480", + "equipment_type": "PhPhiusLightingExterior", + "display_name": "PHIUS+ Exterior Lighting", + "reference_energy_norm": 1, + "combined_energy_factor": 0, + "frac_high_efficiency": 1.0, + "energy_demand_per_use": 0 + }, + "5473b789-ea48-4710-a78b-1c80e3352f78": { + "user_data": {}, + "reference_quantity": 1, + "energy_demand": 0.20000000000000001, + "in_conditioned_space": true, + "comment": "default", + "quantity": 1, + "identifier": "5473b789-ea48-4710-a78b-1c80e3352f78", + "equipment_type": "PhCooktop", + "display_name": "Kitchen cooking", + "reference_energy_norm": 1, + "combined_energy_factor": 0, + "_cooktop_type": { + "value": "1-ELECTRICITY" + }, + "energy_demand_per_use": 0 + } + } + } + } }, - "3958808f-abe9-4795-8c7c-ee3c3bbda919": { - "quantity": 1.0, - "identifier": "3958808f-abe9-4795-8c7c-ee3c3bbda919", - "_group_type": { - "value": "15-AMBIENT" - }, - "fRsi_value": 0.75, - "geometry": { - "type": "Polyline3D", - "vertices": [ - [ - 5.0, - 0.0, - 0.0 - ], - [ - 12.0, - 0.0, - 0.0 - ], - [ - 12.0, - 0.0, - 3.0 - ], - [ - 5.0, - 0.0, - 3.0 - ], - [ - 5.0, - 0.0, - 0.0 - ] - ] - }, - "display_name": "_unnamed_bldg_segment__a1570bbe", + "lost_fraction": 0.0, + "latent_fraction": 0.0, + "radiant_fraction": 0.5, + "identifier": "Generic Office Equipment_e413bab8", + "watts_per_area": 10.330000000000000, + "schedule": "Generic Office Equipment" + }, + "construction_set": "ConstructionSet_33119ef8", + "service_hot_water": { + "type": "ServiceHotWaterAbridged", + "sensible_fraction": 0.20000000000000001, + "latent_fraction": 0.050000000000000003, + "identifier": "Room_4_33d6ae6b_service_hot_water", + "target_temperature": 60.0, + "flow_per_area": 3.5714285714285717e-05, + "schedule": "Always On" + }, + "hvac": "Room_4_33d6ae6b Ideal Loads Air System", + "program_type": "Generic Office Program" + }, + "ph_hvac": { + "type": "RoomPhHvacPropertiesAbridged", + "supportive_devices": [ + { "user_data": {}, - "id_num": 0, - "psi_value": 0.01 - }, - "e610e66f-e672-4b31-a757-ac84ac8636f7": { - "quantity": 1.0, - "identifier": "e610e66f-e672-4b31-a757-ac84ac8636f7", - "_group_type": { - "value": "15-AMBIENT" - }, - "fRsi_value": 0.75, - "geometry": { - "type": "Polyline3D", - "vertices": [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 5.0, - 0.0, - 0.0 - ], - [ - 5.0, - 0.0, - 3.0 - ], - [ - 0.0, - 0.0, - 3.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ] - }, - "display_name": "_unnamed_bldg_segment__fa2f7100", + "device_class_name": "PhSupportiveDevice", + "annual_period_operation_khrs": 6.5, + "device_type": 10, + "in_conditioned_space": false, + "quantity": 3, + "norm_energy_demand_W": 123.0, + "identifier": "8cbb0678-6745-4782-868c-5e6352f8f2bc", + "display_name": "Example Device" + } + ], + "renewable_devices": [ + { "user_data": {}, - "id_num": 0, - "psi_value": 0.01 - }, - "060e9917-05d9-48b8-9f3f-a8f4510db81a": { - "quantity": 1.0, - "identifier": "060e9917-05d9-48b8-9f3f-a8f4510db81a", - "_group_type": { - "value": "15-AMBIENT" - }, - "fRsi_value": 0.75, - "geometry": { - "type": "Polyline3D", - "vertices": [ - [ - 5.0, - 4.0, - 0.0 - ], - [ - 5.0, - 0.0, - 0.0 - ], - [ - 5.0, - 0.0, - 3.0 - ], - [ - 5.0, - 4.0, - 3.0 - ], - [ - 5.0, - 4.0, - 0.0 - ] - ] - }, - "display_name": "_unnamed_bldg_segment__5908386a", + "device_typename": "PhPhotovoltaicDevice", + "percent_coverage": 1.0, + "utilization_factor": 1.0, + "photovoltaic_renewable_energy": 1000.0, + "identifier": "1695ef78-f15f-4ab4-b058-08cb6990bbf9", + "display_name": "my_PV_system", + "array_size": 0.0 + } + ], + "heating_systems": [], + "heat_pump_systems": [ + { "user_data": {}, - "id_num": 0, - "psi_value": 0.01 - }, - "4abbd33b-d8ef-4aee-bf75-79187a18b603": { - "quantity": 1.0, - "identifier": "4abbd33b-d8ef-4aee-bf75-79187a18b603", - "_group_type": { - "value": "15-AMBIENT" - }, - "fRsi_value": 0.75, - "geometry": { - "type": "Polyline3D", - "vertices": [ - [ - 5.0, - 0.0, - 0.0 - ], - [ - 5.0, - 4.0, - 0.0 - ], - [ - 5.0, - 4.0, - 3.0 - ], - [ - 5.0, - 0.0, - 3.0 - ], - [ - 5.0, - 0.0, - 0.0 - ] - ] + "cooling_params": { + "panel": { + "user_data": {}, + "used": false, + "identifier": "c7a0f141-1c17-44f0-992a-e3f3b4816e45", + "display_name": "c7a0f141-1c17-44f0-992a-e3f3b4816e45", + "annual_COP": 4.0 + }, + "percent_coverage": 1.0, + "dehumidification": { + "user_data": {}, + "useful_heat_loss": false, + "used": true, + "identifier": "83bd709f-56c0-4a59-94f8-a5a383896850", + "display_name": "_unnamed_dehumidification_cooling__0665d18a", + "annual_COP": 2.0 + }, + "ventilation": { + "user_data": {}, + "used": false, + "identifier": "958a1349-5351-4f58-a9d6-e205eb4fb726", + "display_name": "958a1349-5351-4f58-a9d6-e205eb4fb726", + "capacity": 10.0, + "min_coil_temp": 12.0, + "single_speed": false, + "annual_COP": 4.0 + }, + "recirculation": { + "user_data": {}, + "flow_rate_variable": true, + "flow_rate_m3_hr": 100.08000000000000, + "used": true, + "identifier": "38849a9e-9f17-4d1d-9dfb-707be5451850", + "display_name": "_unnamed_recirculation_cooling__9d808675", + "capacity": 10.0, + "min_coil_temp": 12.0, + "single_speed": false, + "annual_COP": 2.0 + } }, - "display_name": "_unnamed_bldg_segment__bdb6b2f6", - "user_data": {}, - "id_num": 0, - "psi_value": 0.01 + "COP_2": 4.1200000000000001, + "heat_pump_class_name": "PhHeatPumpRatedMonthly", + "percent_coverage": 1.0, + "ambient_temp_2": 12.0, + "identifier": "3e8db61c-3dd1-4204-9aef-167fff4e610a", + "display_name": "Example_Heat_Pump", + "COP_1": 3.3999999999999999, + "ambient_temp_1": -3.3300000000000001 }, - "482acea1-cadc-45fb-8751-3f1f610b1809": { - "quantity": 1.0, - "identifier": "482acea1-cadc-45fb-8751-3f1f610b1809", - "_group_type": { - "value": "15-AMBIENT" - }, - "fRsi_value": 0.75, - "geometry": { - "type": "Polyline3D", - "vertices": [ - [ - 0.0, - 0.0, - 3.0 - ], - [ - 5.0, - 0.0, - 3.0 - ], - [ - 5.0, - 4.0, - 3.0 - ], - [ - 0.0, - 4.0, - 3.0 - ], - [ - 0.0, - 0.0, - 3.0 - ] - ] - }, - "display_name": "_unnamed_bldg_segment__842a3686", + { "user_data": {}, - "id_num": 0, - "psi_value": 0.01 - }, - "d5fbb9b2-e8ef-4974-a8d3-3e949e0b0526": { - "quantity": 1.0, - "identifier": "d5fbb9b2-e8ef-4974-a8d3-3e949e0b0526", - "_group_type": { - "value": "15-AMBIENT" + "cooling_params": { + "panel": { + "user_data": {}, + "used": false, + "identifier": "4956f9c3-ab6e-4cb6-b815-ff769f5fddd1", + "display_name": "4956f9c3-ab6e-4cb6-b815-ff769f5fddd1", + "annual_COP": 4.0 + }, + "percent_coverage": 1.0, + "dehumidification": { + "user_data": {}, + "useful_heat_loss": false, + "used": false, + "identifier": "957ab54c-170e-4731-83d6-0fe90598c99b", + "display_name": "957ab54c-170e-4731-83d6-0fe90598c99b", + "annual_COP": 4.0 + }, + "ventilation": { + "user_data": {}, + "used": false, + "identifier": "b4a9d07b-874c-4d38-99cd-1d99aec75a36", + "display_name": "b4a9d07b-874c-4d38-99cd-1d99aec75a36", + "capacity": 10.0, + "min_coil_temp": 12.0, + "single_speed": false, + "annual_COP": 4.0 + }, + "recirculation": { + "user_data": {}, + "flow_rate_variable": true, + "flow_rate_m3_hr": 100.0, + "used": false, + "identifier": "940b0585-a9d5-4217-a6ab-0ee158ec1011", + "display_name": "940b0585-a9d5-4217-a6ab-0ee158ec1011", + "capacity": 10.0, + "min_coil_temp": 12.0, + "single_speed": false, + "annual_COP": 4.0 + } }, - "fRsi_value": 0.75, - "geometry": { - "type": "Polyline3D", - "vertices": [ - [ - 0.0, - 3.3416407864998741, - 0.49376941012509468 - ], - [ - 0.0, - 0.65835921350012616, - 0.49376941012509468 - ], - [ - 0.0, - 0.65835921350012616, - 2.5062305898749053 - ], - [ - 0.0, - 3.3416407864998741, - 2.5062305898749053 - ], - [ - 0.0, - 3.3416407864998741, - 0.49376941012509468 - ] - ] + "COP_2": 2.5, + "heat_pump_class_name": "PhHeatPumpRatedMonthly", + "percent_coverage": 1.0, + "ambient_temp_2": 8.3330000000000002, + "identifier": "7faeabb6-e1bf-460d-a379-cde6ff1f2130", + "display_name": "None", + "COP_1": 2.5, + "ambient_temp_1": -8.3330000000000002 + } + ], + "hot_water_system": { + "type": "PhHvacHotWaterSystemPh", + "recirc_piping": { + "39fb6b4c-e36a-48ab-a787-345479fe55e7": { + "user_data": {}, + "segments": { + "c6beb3cf-8828-4d46-918d-20cf716874e6": { + "user_data": {}, + "insulation_thickness_mm": 25.399999999999999, + "insulation_conductivity": 0.040000000000000001, + "insulation_reflective": true, + "diameter_mm": 25.399999999999999, + "material_value": "2-COPPER_L", + "water_temp_c": 48.0, + "geometry": { + "p": [ + 0.0, + -5.5, + 0.0 + ], + "v": [ + 0.0, + 0.0, + 1.1000000000000001 + ], + "type": "LineSegment3D" + }, + "daily_period": 23.0, + "identifier": "c6beb3cf-8828-4d46-918d-20cf716874e6", + "display_name": "c6beb3cf-8828-4d46-918d-20cf716874e6", + "insulation_quality": null + } + }, + "display_name": "_unnamed_", + "identifier": "39fb6b4c-e36a-48ab-a787-345479fe55e7" + } + }, + "number_tap_points": 1, + "heaters": { + "f7df863e-316f-4bea-9b2f-0570e386469e": { + "user_data": {}, + "total_system_perf_ratio": null, + "percent_coverage": 1.0, + "in_conditioned_space": true, + "identifier": "f7df863e-316f-4bea-9b2f-0570e386469e", + "display_name": "f7df863e-316f-4bea-9b2f-0570e386469e", + "heater_type": "PhHvacHotWaterHeaterHeatPump_Annual", + "annual_COP": null + } + }, + "recirc_hours": 23, + "id_num": 0, + "recirc_temp": 48.0, + "distribution_piping": { + "4eda909a-b991-4f73-aa0e-de3d28345057": { + "user_data": {}, + "branches": { + "a37d25f2-7fdb-43e3-ac55-8d2be4620fb6": { + "user_data": {}, + "fixtures": { + "fd5e311f-2185-44fd-82a8-81301b5234d2": { + "user_data": {}, + "segments": { + "62a069b8-954e-4b73-b480-8145bda874cf": { + "user_data": {}, + "insulation_thickness_mm": 0.0, + "insulation_conductivity": 0.040000000000000001, + "insulation_reflective": false, + "diameter_mm": 9.5249999999999986, + "material_value": "1-COPPER_M", + "water_temp_c": 55.0, + "geometry": { + "p": [ + 0.0, + -5.5, + 0.0 + ], + "v": [ + 0.0, + 0.0, + 5.5 + ], + "type": "LineSegment3D" + }, + "daily_period": 24, + "identifier": "62a069b8-954e-4b73-b480-8145bda874cf", + "display_name": "62a069b8-954e-4b73-b480-8145bda874cf", + "insulation_quality": null + } + }, + "display_name": "Test_Fixture", + "identifier": "fd5e311f-2185-44fd-82a8-81301b5234d2" + } + }, + "identifier": "a37d25f2-7fdb-43e3-ac55-8d2be4620fb6", + "display_name": "Test_Branch", + "pipe_element": { + "user_data": {}, + "segments": { + "18a0964f-a3e8-41ac-a168-2b0b25207868": { + "user_data": {}, + "insulation_thickness_mm": 0.0, + "insulation_conductivity": 0.040000000000000001, + "insulation_reflective": false, + "diameter_mm": 19.049999999999997, + "material_value": "3-COPPER_K", + "water_temp_c": 60.0, + "geometry": { + "p": [ + 0.0, + -5.5, + 0.0 + ], + "v": [ + 0.0, + 0.0, + 5.5 + ], + "type": "LineSegment3D" + }, + "daily_period": 24, + "identifier": "18a0964f-a3e8-41ac-a168-2b0b25207868", + "display_name": "18a0964f-a3e8-41ac-a168-2b0b25207868", + "insulation_quality": null + } + }, + "display_name": "b77694c3-0cea-4ec9-89c2-208e9027f33c", + "identifier": "b77694c3-0cea-4ec9-89c2-208e9027f33c" + } + } + }, + "multiplier": 1, + "identifier": "4eda909a-b991-4f73-aa0e-de3d28345057", + "display_name": "Test_Trunk", + "pipe_element": { + "user_data": {}, + "segments": { + "b869a0ca-884d-4789-a6fb-7542f7c2fdf9": { + "user_data": {}, + "insulation_thickness_mm": 0.0, + "insulation_conductivity": 0.040000000000000001, + "insulation_reflective": false, + "diameter_mm": 38.099999999999994, + "material_value": "6-PEX", + "water_temp_c": 60.0, + "geometry": { + "p": [ + 0.0, + -5.5, + 0.0 + ], + "v": [ + 0.0, + 0.0, + 5.5 + ], + "type": "LineSegment3D" + }, + "daily_period": 24, + "identifier": "b869a0ca-884d-4789-a6fb-7542f7c2fdf9", + "display_name": "b869a0ca-884d-4789-a6fb-7542f7c2fdf9", + "insulation_quality": null + } + }, + "display_name": "5fa1e31f-c96a-4539-9d02-31a1f9e5f440", + "identifier": "5fa1e31f-c96a-4539-9d02-31a1f9e5f440" + } + } + }, + "identifier": "0171dd67-a10c-472c-add4-c98335e45f1a", + "display_name": "SHW System_0d847320", + "tank_solar": { + "user_data": {}, + "standby_losses": 4.0, + "solar_connection": false, + "in_conditioned_space": true, + "quantity": 1, + "solar_losses": 0.0, + "identifier": "b428d0d5-8ce9-4ef6-8596-c2708261f67b", + "display_name": "_unnamed_hw_tank_", + "storage_capacity": 300, + "storage_loss_rate": 0.0, + "standby_fraction": 0.29999999999999999, + "room_temp": 20, + "_tank_type": { + "value": "2-DHW ONLY" }, - "display_name": "_unnamed_bldg_segment__a75ccf2b", + "water_temp": 60 + } + }, + "id_num": 0, + "exhaust_vent_devices": [ + { "user_data": {}, - "id_num": 0, - "psi_value": 0.01 + "device_class_name": "ExhaustVentDryer", + "quantity": 1, + "annual_runtime_minutes": 7.625, + "identifier": "c60732dc-8385-4ca1-b2b4-0c1c55fd0983", + "display_name": "example_dryer_vent", + "exhaust_flow_rate_m3s": 123.0 + } + ], + "ventilation_system": { + "user_data": {}, + "id_num": 0, + "sys_type": 1, + "exhaust_ducting": [ + { + "user_data": {}, + "duct_type": 2, + "segments": { + "0237d114-614d-4775-b300-622297e81889": { + "user_data": {}, + "diameter": 0.17600000000000002, + "insulation_conductivity": 0.040000000000000001, + "insulation_thickness": 0.02794, + "insulation_reflective": true, + "geometry": { + "p": [ + 0.0, + -5.5, + 0.0 + ], + "v": [ + 1.0832885283134288, + -0.19101299543362338, + 0.0 + ], + "type": "LineSegment3D" + }, + "height": null, + "identifier": "0237d114-614d-4775-b300-622297e81889", + "display_name": "0237d114-614d-4775-b300-622297e81889", + "width": null + } + }, + "identifier": "ece37742-6c86-40bc-97fd-0d4933fd1a38", + "display_name": "Test_Vent_System_exhaust" + } + ], + "supply_ducting": [ + { + "user_data": {}, + "duct_type": 1, + "segments": { + "fac12925-7f54-411c-995b-60045857b4b4": { + "user_data": {}, + "diameter": 0.17600000000000002, + "insulation_conductivity": 0.040000000000000001, + "insulation_thickness": 0.02794, + "insulation_reflective": true, + "geometry": { + "p": [ + 0.0, + -5.5, + 0.0 + ], + "v": [ + 0.0, + 0.0, + 1.1000000000000001 + ], + "type": "LineSegment3D" + }, + "height": null, + "identifier": "fac12925-7f54-411c-995b-60045857b4b4", + "display_name": "fac12925-7f54-411c-995b-60045857b4b4", + "width": null + } + }, + "identifier": "4ac95cb1-332b-4e97-839d-2433cc97aa81", + "display_name": "__unnamed_vent_duct__" + } + ], + "identifier": "69aa69e2-6599-4401-b0c6-c12db6a521da", + "display_name": "Test_Vent_System", + "ventilation_unit": { + "user_data": {}, + "electric_efficiency": 0.33300000000000002, + "sensible_heat_recovery": 0.82999999999999996, + "latent_heat_recovery": 0.0, + "in_conditioned_space": true, + "temperature_below_defrost_used": -5.0, + "quantity": 1, + "frost_protection_reqd": true, + "identifier": "3ffe784d-dcaf-4006-b7e6-8cb4a91e8d1b", + "display_name": "Test_Unit" } } + }, + "radiance": { + "type": "RoomRadiancePropertiesAbridged" } - ], - "type": "ModelPhPropertiesAbridged", - "id_num": 0, - "team": { - "owner": { - "post_code": null, - "email": null, - "identifier": "e7d000d2-59fc-4dbe-b7cb-0fb5d914a1e3", - "city": null, - "license_number": null, - "street": null, - "name": null, - "user_data": {}, - "display_name": "e7d000d2-59fc-4dbe-b7cb-0fb5d914a1e3", - "telephone": null + }, + "identifier": "Room_4_33d6ae6b", + "display_name": "Room_4" + } + ], + "orphaned_shades": [ + { + "type": "Shade", + "is_detached": true, + "properties": { + "type": "ShadePropertiesAbridged", + "ph": { + "type": "ShadePhPropertiesAbridged", + "id_num": 0 }, - "building": { - "post_code": null, - "email": null, - "identifier": "45d5f07d-c8dc-4f81-8deb-2e09fac2271c", - "city": null, - "license_number": null, - "street": null, - "name": null, - "user_data": {}, - "display_name": "45d5f07d-c8dc-4f81-8deb-2e09fac2271c", - "telephone": null + "energy": { + "type": "ShadeEnergyPropertiesAbridged" }, - "identifier": "5b2affbe-1ea2-42f8-9146-9a17e88e9a86", - "designer": { - "post_code": null, - "email": null, - "identifier": "783ac1ab-97a4-4588-81f4-ba80e008ef9b", - "city": null, - "license_number": null, - "street": null, - "name": null, - "user_data": {}, - "display_name": "783ac1ab-97a4-4588-81f4-ba80e008ef9b", - "telephone": null + "ph_hvac": { + "type": "ShadePhHvacProperties" }, - "customer": { - "post_code": null, - "email": null, - "identifier": "abf26c2c-627c-424a-a851-c04cb981fea7", - "city": null, - "license_number": null, - "street": null, - "name": null, - "user_data": {}, - "display_name": "abf26c2c-627c-424a-a851-c04cb981fea7", - "telephone": null + "radiance": { + "type": "ShadeRadiancePropertiesAbridged" + } + }, + "geometry": { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + 1.0, + 0.0, + 0.0 + ], + "n": [ + 0.0, + 0.0, + 1.0 + ], + "o": [ + 5.4164426415671443, + -6.4550649771681172, + 3.3000000000000003 + ] }, - "display_name": "5b2affbe-1ea2-42f8-9146-9a17e88e9a86", - "user_data": {} - } + "boundary": [ + [ + 0.19101299543362338, + -4.4167114716865719, + 3.3000000000000003 + ], + [ + 0.0, + -5.5, + 3.3000000000000003 + ], + [ + 5.4164426415671443, + -6.4550649771681172, + 3.3000000000000003 + ], + [ + 5.6074556370007675, + -5.3717764488546882, + 3.3000000000000003 + ] + ] + }, + "identifier": "Shade_806f784c", + "display_name": "Shade_806f784c" }, - "ph_hvac": { - "type": "ModelPhHvacPropertiesAbridged" + { + "type": "Shade", + "is_detached": true, + "properties": { + "type": "ShadePropertiesAbridged", + "ph": { + "type": "ShadePhPropertiesAbridged", + "id_num": 0 + }, + "energy": { + "type": "ShadeEnergyPropertiesAbridged" + }, + "ph_hvac": { + "type": "ShadePhHvacProperties" + }, + "radiance": { + "type": "ShadeRadiancePropertiesAbridged" + } + }, + "geometry": { + "type": "Face3D", + "plane": { + "type": "Plane", + "x": [ + 1.0, + 0.0, + 0.0 + ], + "n": [ + 0.0, + 0.0, + 1.0 + ], + "o": [ + 12.999462339761147, + -7.7921559452034819, + 3.3000000000000003 + ] + }, + "boundary": [ + [ + 5.6074556370007675, + -5.3717764488546882, + 3.3000000000000003 + ], + [ + 5.4164426415671443, + -6.4550649771681172, + 3.3000000000000003 + ], + [ + 12.999462339761147, + -7.7921559452034819, + 3.3000000000000003 + ], + [ + 13.190475335194769, + -6.7088674168900519, + 3.3000000000000003 + ] + ] + }, + "identifier": "Shade_b3065773", + "display_name": "Shade_b3065773" } - } + ] } \ No newline at end of file diff --git a/tests/_test_reference_files_xml/Default_Model_Single_Zone.xml b/tests/_test_reference_files_xml/Default_Model_Single_Zone.xml index 6cf1488..c7894ac 100644 --- a/tests/_test_reference_files_xml/Default_Model_Single_Zone.xml +++ b/tests/_test_reference_files_xml/Default_Model_Single_Zone.xml @@ -12,8 +12,8 @@ 2024 6 17 - 12 - 6 + 17 + 33 @@ -268,7 +268,7 @@ - 6 + 7 60.0 6 0 diff --git a/tests/_test_reference_files_xml/Multi_Room_Complete.xml b/tests/_test_reference_files_xml/Multi_Room_Complete.xml index 5b7eeb0..ae8c692 100644 --- a/tests/_test_reference_files_xml/Multi_Room_Complete.xml +++ b/tests/_test_reference_files_xml/Multi_Room_Complete.xml @@ -12,8 +12,8 @@ 2024 6 17 - 12 - 6 + 17 + 33 @@ -654,7 +654,7 @@ 44 - PhWindowConstruction_e3f97648 + PhWindowConstruction_93d72626 true 2 4 @@ -676,7 +676,7 @@ 49 - PhWindowConstruction_e3f97648 + PhWindowConstruction_93d72626 true 2 4 @@ -702,7 +702,7 @@ 50 - Shade_de34f9c1 + Shade_806f784c true 1 1 @@ -718,7 +718,7 @@ 51 - Shade_c07daf16 + Shade_b3065773 true 1 1 @@ -742,7 +742,7 @@ 1 - 101-Room_7 + 101-Room_3 99 1 1 @@ -753,7 +753,7 @@ 16.58 - 102-Room_8 + 102-Room_4 99 1 1 @@ -766,14 +766,14 @@ - 101-Room_7 + 101-Room_3 1 3 0.0 10.89 - 102-Room_8 + 102-Room_4 1 3 0.0 @@ -782,7 +782,7 @@ - 101-Room_7 + 101-Room_3 1 1 1 @@ -800,7 +800,7 @@ 8760 - 102-Room_8 + 102-Room_4 1 1 1 @@ -818,7 +818,7 @@ 8760 - 6 + 7 191.664 6 59.895 @@ -946,72 +946,72 @@ - _unnamed_bldg_segment__04c2e417 + _unnamed_bldg_segment__05b819b1 -15 - 14.0 + 10.733126291998989 0.01 -1 - _unnamed_bldg_segment__2434f508 + _unnamed_bldg_segment__0b896a30 -15 - 10.733126291998989 + 14.0 0.01 -1 - _unnamed_bldg_segment__5908386a + _unnamed_bldg_segment__21c73d25 -15 - 14.0 + 18.0 0.01 -1 - _unnamed_bldg_segment__69ac0b9a + _unnamed_bldg_segment__510c027f -15 - 13.416407864998739 + 14.0 0.01 -1 - _unnamed_bldg_segment__74c030c5 + _unnamed_bldg_segment__5473df73 -15 14.0 0.01 -1 - _unnamed_bldg_segment__842a3686 + _unnamed_bldg_segment__9533e047 -15 - 18.0 + 13.416407864998739 0.01 -1 - _unnamed_bldg_segment__a1570bbe + _unnamed_bldg_segment__b5fb3642 -15 - 20.0 + 16.0 0.01 -1 - _unnamed_bldg_segment__a75ccf2b + _unnamed_bldg_segment__bebb668a -15 9.391485505499118 0.01 -1 - _unnamed_bldg_segment__bdb6b2f6 + _unnamed_bldg_segment__c1c6cf59 -15 14.0 0.01 -1 - _unnamed_bldg_segment__fa2f7100 + _unnamed_bldg_segment__d481e047 -15 - 16.0 + 20.0 0.01 -1 @@ -1279,41 +1279,6 @@ - 9435601e-67e4-413f-9696-2a65e338c5d5 - 1 - 5 - 5 - false - true - false - false - false - false - - - - true - - - 3 - - - 1.0 - 0.0 - 1 - - - 0.0 - 0.0 - 1 - - - 0.0 - 0.0 - 1 - - - Example_Heat_Pump 1 5 @@ -1350,7 +1315,7 @@ 1 - + None 2 5 @@ -1387,7 +1352,7 @@ 1 - + Test_Unit 1 1 @@ -1413,7 +1378,7 @@ false - + _unnamed_hw_tank_ 1 8 @@ -1438,6 +1403,41 @@ true + + f7df863e-316f-4bea-9b2f-0570e386469e + 1 + 5 + 5 + false + true + false + false + false + false + + + + true + + + 3 + + + 1.0 + 0.0 + 1 + + + 0.0 + 0.0 + 1 + + + 0.0 + 0.0 + 1 + + my_PV_system 1 @@ -1934,7 +1934,7 @@ 1 - PhWindowConstruction_e3f97648 + PhWindowConstruction_93d72626 true true 0.7242364315535045 @@ -1963,7 +1963,7 @@ 2 - PhWindowConstruction_bb09979d + PhWindowConstruction_40ea049d true true 0.7242364315535045 diff --git a/tests/test_to_WUFI_xml/test_building/test_PhxZone.py b/tests/test_to_WUFI_xml/test_building/test_PhxZone.py index 7deac88..352c4cc 100644 --- a/tests/test_to_WUFI_xml/test_building/test_PhxZone.py +++ b/tests/test_to_WUFI_xml/test_building/test_PhxZone.py @@ -15,7 +15,7 @@ def test_default_PhxProject(reset_class_counters): '', '', '', - "6", + "7", "0.0", "6", "0.0",