diff --git a/PHX/from_HBJSON/create_shw_devices.py b/PHX/from_HBJSON/create_shw_devices.py
index 4c9f8b7..809f0c1 100644
--- a/PHX/from_HBJSON/create_shw_devices.py
+++ b/PHX/from_HBJSON/create_shw_devices.py
@@ -87,7 +87,9 @@ def build_phx_hw_heater(
"PhHvacHotWaterHeaterBoiler": hvac.PhxHeaterBoilerFossil,
"PhHvacHotWaterHeaterBoilerWood": hvac.PhxHeaterBoilerWood,
"PhHvacHotWaterHeaterDistrict": hvac.PhxHeaterDistrictHeat,
- "PhHvacHotWaterHeaterHeatPump": hvac.PhxHeatPumpHotWater,
+ "PhHvacHotWaterHeaterHeatPump_Annual": hvac.PhxHeatPumpAnnual,
+ "PhHvacHotWaterHeaterHeatPump_Monthly": hvac.PhxHeatPumpMonthly,
+ "PhHvacHotWaterHeaterHeatPump_Inside": hvac.PhxHeatPumpHotWater,
}
# -- Build the basic heater and set basic data
diff --git a/PHX/from_WUFI_XML/phx_schemas.py b/PHX/from_WUFI_XML/phx_schemas.py
index e0ffa6e..aff0e79 100644
--- a/PHX/from_WUFI_XML/phx_schemas.py
+++ b/PHX/from_WUFI_XML/phx_schemas.py
@@ -1549,7 +1549,7 @@ def _PhxDevice_HeatPump_HotWater(_data: wufi_xml.WufiDevice) -> PhxHeatPumpHotWa
phx_obj.display_name = _data.Name or "unnamed_hot_water_heat_pump"
phx_obj.params.annual_COP = _data.PH_Parameters.AnnualCOP
- phx_obj.params.annual_system_perf_ratio = _data.PH_Parameters.TotalSystemPerformanceRatioHeatGenerator
+ phx_obj.params.total_system_perf_ratio = _data.PH_Parameters.TotalSystemPerformanceRatioHeatGenerator
phx_obj.params.annual_energy_factor = _data.PH_Parameters.HPWH_EF
return phx_obj
diff --git a/PHX/model/hvac/heat_pumps.py b/PHX/model/hvac/heat_pumps.py
index 9181dd7..3d03be6 100644
--- a/PHX/model/hvac/heat_pumps.py
+++ b/PHX/model/hvac/heat_pumps.py
@@ -114,7 +114,7 @@ def ambient_temp_2(self, value: Optional[float]) -> None:
class PhxHeatPumpHotWaterParams(_base.PhxMechanicalDeviceParams):
hp_type: HeatPumpType = field(init=False, default=HeatPumpType.HOT_WATER)
annual_COP: Optional[float] = None
- annual_system_perf_ratio: Optional[float] = None
+ total_system_perf_ratio: Optional[float] = None
annual_energy_factor: Optional[float] = None
diff --git a/PHX/to_WUFI_XML/xml_schemas.py b/PHX/to_WUFI_XML/xml_schemas.py
index 0cceee6..1777b79 100644
--- a/PHX/to_WUFI_XML/xml_schemas.py
+++ b/PHX/to_WUFI_XML/xml_schemas.py
@@ -1261,7 +1261,7 @@ def _DeviceHeaterHeatPumpPhParamsHotWater(
XML_Node("AuxiliaryEnergyDHW", _p.aux_energy_dhw),
XML_Node("InConditionedSpace", _p.in_conditioned_space),
XML_Node("AnnualCOP", _p.annual_COP),
- XML_Node("TotalSystemPerformanceRatioHeatGenerator", _p.annual_system_perf_ratio),
+ XML_Node("TotalSystemPerformanceRatioHeatGenerator", _p.total_system_perf_ratio),
XML_Node("HPWH_EF", _p.annual_energy_factor),
XML_Node("HPType", _p.hp_type.value),
]
diff --git a/requirements.txt b/requirements.txt
index 29c3dfd..e6f4394 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,8 +1,8 @@
honeybee-core>=1.58.14
-honeybee-energy>=1.105.64
-honeybee-ph>=1.28.6
+honeybee-energy>=1.106.2
+honeybee-ph>=1.28.10
pydantic<2.0
-PH-units>=1.5.8
+PH-units>=1.5.9
rich
xlwings
lxml
\ No newline at end of file
diff --git a/tests/_source_gh/hbph_test_models.gh b/tests/_source_gh/hbph_test_models.gh
index 9cb7b3a..4323b1f 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 146c29d..4965c76 100644
--- a/tests/_test_reference_files_hbjson/Default_Model_Single_Zone.hbjson
+++ b/tests/_test_reference_files_hbjson/Default_Model_Single_Zone.hbjson
@@ -1,960 +1,778 @@
{
+ "version": "1.55.0",
+ "identifier": "unnamed_b403f2d1",
"angle_tolerance": 1.0,
- "properties": {
- "type": "ModelProperties",
- "radiance": {
- "global_modifier_set": {
- "wall_set": {
- "exterior_modifier": "generic_wall_0.50",
- "interior_modifier": "generic_wall_0.50",
- "type": "WallModifierSetAbridged"
- },
- "door_set": {
- "exterior_modifier": "generic_opaque_door_0.50",
- "exterior_glass_modifier": "generic_exterior_window_vis_0.64",
- "overhead_modifier": "generic_opaque_door_0.50",
- "type": "DoorModifierSetAbridged",
- "interior_modifier": "generic_opaque_door_0.50",
- "interior_glass_modifier": "generic_interior_window_vis_0.88"
- },
- "modifiers": [
- {
- "identifier": "generic_interior_window_vis_0.88",
- "refraction_index": null,
- "g_transmissivity": 0.95841543286105957,
- "type": "Glass",
- "b_transmissivity": 0.95841543286105957,
- "dependencies": [],
- "r_transmissivity": 0.95841543286105957,
- "modifier": null
- },
- {
- "modifier": null,
- "r_reflectance": 0.5,
- "roughness": 0.0,
- "dependencies": [],
- "b_reflectance": 0.5,
- "identifier": "generic_wall_0.50",
- "type": "Plastic",
- "g_reflectance": 0.5,
- "specularity": 0.0
- },
- {
- "modifier": null,
- "r_reflectance": 0.20000000000000001,
- "roughness": 0.0,
- "dependencies": [],
- "b_reflectance": 0.20000000000000001,
- "identifier": "generic_floor_0.20",
- "type": "Plastic",
- "g_reflectance": 0.20000000000000001,
- "specularity": 0.0
- },
- {
- "modifier": null,
- "r_reflectance": 0.5,
- "roughness": 0.0,
- "dependencies": [],
- "b_reflectance": 0.5,
- "identifier": "generic_opaque_door_0.50",
- "type": "Plastic",
- "g_reflectance": 0.5,
- "specularity": 0.0
- },
- {
- "modifier": null,
- "r_reflectance": 0.34999999999999998,
- "roughness": 0.0,
- "dependencies": [],
- "b_reflectance": 0.34999999999999998,
- "identifier": "generic_exterior_shade_0.35",
- "type": "Plastic",
- "g_reflectance": 0.34999999999999998,
- "specularity": 0.0
- },
- {
- "modifier": null,
- "r_reflectance": 0.5,
- "roughness": 0.0,
- "dependencies": [],
- "b_reflectance": 0.5,
- "identifier": "generic_interior_shade_0.50",
- "type": "Plastic",
- "g_reflectance": 0.5,
- "specularity": 0.0
- },
- {
- "identifier": "air_boundary",
- "transmitted_spec": 1.0,
- "roughness": 0.0,
- "transmitted_diff": 1.0,
- "dependencies": [],
- "specularity": 0.0,
- "modifier": null,
- "type": "Trans",
- "g_reflectance": 1.0,
- "b_reflectance": 1.0,
- "r_reflectance": 1.0
- },
- {
- "identifier": "generic_exterior_window_vis_0.64",
- "refraction_index": null,
- "g_transmissivity": 0.69757618153843315,
- "type": "Glass",
- "b_transmissivity": 0.69757618153843315,
- "dependencies": [],
- "r_transmissivity": 0.69757618153843315,
- "modifier": null
+ "type": "Model",
+ "units": "Meters",
+ "display_name": "unnamed",
+ "rooms": [
+ {
+ "identifier": "Room_5_6eedca30",
+ "type": "Room",
+ "display_name": "Room_5",
+ "faces": [
+ {
+ "boundary_condition": {
+ "type": "Outdoors",
+ "sun_exposure": true,
+ "wind_exposure": true,
+ "view_factor": {
+ "type": "Autocalculate"
+ }
},
- {
- "modifier": null,
- "r_reflectance": 0.80000000000000004,
- "roughness": 0.0,
- "dependencies": [],
- "b_reflectance": 0.80000000000000004,
- "identifier": "generic_ceiling_0.80",
- "type": "Plastic",
- "g_reflectance": 0.80000000000000004,
- "specularity": 0.0
+ "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
+ ]
+ },
+ "type": "Face3D"
},
- {
- "modifier": null,
- "r_reflectance": 0.20000000000000001,
- "roughness": 0.0,
- "dependencies": [],
- "b_reflectance": 0.20000000000000001,
- "identifier": "generic_context_0.20",
- "type": "Plastic",
- "g_reflectance": 0.20000000000000001,
- "specularity": 0.0
+ "display_name": "Room_5_6eedca30..Face0",
+ "properties": {
+ "radiance": {
+ "type": "FaceRadiancePropertiesAbridged"
+ },
+ "type": "FacePropertiesAbridged",
+ "energy": {
+ "type": "FaceEnergyPropertiesAbridged"
+ },
+ "ph": {
+ "type": "FacePhPropertiesAbridged",
+ "id_num": 0
+ },
+ "ph_hvac": {
+ "type": "FacePhHvacProperties"
+ }
}
- ],
- "roof_ceiling_set": {
- "exterior_modifier": "generic_ceiling_0.80",
- "interior_modifier": "generic_ceiling_0.80",
- "type": "RoofCeilingModifierSetAbridged"
- },
- "floor_set": {
- "exterior_modifier": "generic_floor_0.20",
- "interior_modifier": "generic_floor_0.20",
- "type": "FloorModifierSetAbridged"
- },
- "shade_set": {
- "exterior_modifier": "generic_exterior_shade_0.35",
- "interior_modifier": "generic_interior_shade_0.50",
- "type": "ShadeModifierSetAbridged"
- },
- "air_boundary_modifier": "air_boundary",
- "context_modifier": "generic_context_0.20",
- "aperture_set": {
- "operable_modifier": "generic_exterior_window_vis_0.64",
- "skylight_modifier": "generic_exterior_window_vis_0.64",
- "type": "ApertureModifierSetAbridged",
- "interior_modifier": "generic_interior_window_vis_0.88",
- "window_modifier": "generic_exterior_window_vis_0.64"
- },
- "type": "GlobalModifierSet"
- },
- "type": "ModelRadianceProperties",
- "modifier_sets": [],
- "modifiers": []
- },
- "energy": {
- "materials": [],
- "ventilation_simulation_control": {
- "reference_temperature": 20.0,
- "reference_humidity_ratio": 0.0,
- "long_axis_angle": 0.0,
- "building_type": "LowRise",
- "vent_control_type": "SingleZone",
- "aspect_ratio": 1.0,
- "type": "VentilationSimulationControl",
- "reference_pressure": 101325.0
- },
- "shws": [],
- "schedule_type_limits": [
- {
- "lower_limit": 0.0,
- "upper_limit": {
- "type": "NoLimit"
- },
- "identifier": "Activity Level",
- "unit_type": "ActivityLevel",
- "numeric_type": "Continuous",
- "type": "ScheduleTypeLimit"
},
{
- "lower_limit": 0.0,
- "upper_limit": 1.0,
- "identifier": "Fractional",
- "unit_type": "Dimensionless",
- "numeric_type": "Continuous",
- "type": "ScheduleTypeLimit"
- },
- {
- "lower_limit": -273.14999999999998,
- "upper_limit": {
- "type": "NoLimit"
- },
- "identifier": "Temperature",
- "unit_type": "Temperature",
- "numeric_type": "Continuous",
- "type": "ScheduleTypeLimit"
- }
- ],
- "construction_sets": [],
- "global_construction_set": {
- "materials": [
- {
- "identifier": "Generic 50mm Insulation",
- "visible_absorptance": 0.69999999999999996,
- "conductivity": 0.029999999999999999,
- "solar_absorptance": 0.69999999999999996,
- "specific_heat": 1210.0,
- "thickness": 0.050000000000000003,
- "density": 43.0,
- "type": "EnergyMaterial",
- "roughness": "MediumRough",
- "thermal_absorptance": 0.90000000000000002,
- "properties": {
- "type": "EnergyMaterialProperties",
- "ph": {
- "id_num": 0,
- "user_data": {},
- "divisions": {
- "row_heights": [],
- "cells": [],
- "column_widths": []
- }
- }
- }
- },
- {
- "identifier": "Generic 25mm Wood",
- "visible_absorptance": 0.5,
- "conductivity": 0.14999999999999999,
- "solar_absorptance": 0.5,
- "specific_heat": 1630.0,
- "thickness": 0.025399999999999999,
- "density": 608.0,
- "type": "EnergyMaterial",
- "roughness": "MediumSmooth",
- "thermal_absorptance": 0.90000000000000002,
- "properties": {
- "type": "EnergyMaterialProperties",
- "ph": {
- "id_num": 0,
- "user_data": {},
- "divisions": {
- "row_heights": [],
- "cells": [],
- "column_widths": []
- }
- }
- }
- },
- {
- "identifier": "Generic Roof Membrane",
- "visible_absorptance": 0.65000000000000002,
- "conductivity": 0.16,
- "solar_absorptance": 0.65000000000000002,
- "specific_heat": 1460.0,
- "thickness": 0.01,
- "density": 1120.0,
- "type": "EnergyMaterial",
- "roughness": "MediumRough",
- "thermal_absorptance": 0.90000000000000002,
- "properties": {
- "type": "EnergyMaterialProperties",
- "ph": {
- "id_num": 0,
- "user_data": {},
- "divisions": {
- "row_heights": [],
- "cells": [],
- "column_widths": []
- }
- }
+ "boundary_condition": {
+ "type": "Outdoors",
+ "sun_exposure": true,
+ "wind_exposure": true,
+ "view_factor": {
+ "type": "Autocalculate"
}
},
- {
- "thickness": 0.0060000000000000001,
- "solar_reflectance": 0.35999999999999999,
- "visible_transmittance": 0.70999999999999996,
- "solar_diffusing": false,
- "visible_reflectance": 0.20999999999999999,
- "conductivity": 1.0,
- "type": "EnergyWindowMaterialGlazing",
- "emissivity_back": 0.047,
- "identifier": "Generic Low-e Glass",
- "solar_transmittance": 0.45000000000000001,
- "solar_reflectance_back": 0.35999999999999999,
- "visible_reflectance_back": 0.20999999999999999,
- "infrared_transmittance": 0.0,
- "dirt_correction": 1.0,
- "emissivity": 0.83999999999999997
- },
- {
- "identifier": "Generic LW Concrete",
- "visible_absorptance": 0.80000000000000004,
- "conductivity": 0.53000000000000003,
- "solar_absorptance": 0.80000000000000004,
- "specific_heat": 840.0,
- "thickness": 0.10000000000000001,
- "density": 1280.0,
- "type": "EnergyMaterial",
- "roughness": "MediumRough",
- "thermal_absorptance": 0.90000000000000002,
- "properties": {
- "type": "EnergyMaterialProperties",
- "ph": {
- "id_num": 0,
- "user_data": {},
- "divisions": {
- "row_heights": [],
- "cells": [],
- "column_widths": []
- }
- }
- }
+ "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"
},
- {
- "identifier": "Generic Ceiling Air Gap",
- "visible_absorptance": 0.69999999999999996,
- "conductivity": 0.55600000000000005,
- "solar_absorptance": 0.69999999999999996,
- "specific_heat": 1000.0,
- "thickness": 0.10000000000000001,
- "density": 1.2800000000000000,
- "type": "EnergyMaterial",
- "roughness": "Smooth",
- "thermal_absorptance": 0.90000000000000002,
- "properties": {
- "type": "EnergyMaterialProperties",
- "ph": {
- "id_num": 0,
- "user_data": {},
- "divisions": {
- "row_heights": [],
- "cells": [],
- "column_widths": []
- }
- }
+ "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"
}
- },
- {
- "identifier": "Generic HW Concrete",
- "visible_absorptance": 0.80000000000000004,
- "conductivity": 1.9500000000000000,
- "solar_absorptance": 0.80000000000000004,
- "specific_heat": 900.0,
- "thickness": 0.20000000000000001,
- "density": 2240.0,
- "type": "EnergyMaterial",
- "roughness": "MediumRough",
- "thermal_absorptance": 0.90000000000000002,
- "properties": {
- "type": "EnergyMaterialProperties",
- "ph": {
- "id_num": 0,
- "user_data": {},
- "divisions": {
- "row_heights": [],
- "cells": [],
- "column_widths": []
- }
- }
+ }
+ },
+ {
+ "boundary_condition": {
+ "type": "Outdoors",
+ "sun_exposure": true,
+ "wind_exposure": true,
+ "view_factor": {
+ "type": "Autocalculate"
}
},
- {
- "identifier": "Generic Painted Metal",
- "visible_absorptance": 0.5,
- "conductivity": 45.0,
- "solar_absorptance": 0.5,
- "specific_heat": 410.0,
- "thickness": 0.0015,
- "density": 7690.0,
- "type": "EnergyMaterial",
- "roughness": "Smooth",
- "thermal_absorptance": 0.90000000000000002,
- "properties": {
- "type": "EnergyMaterialProperties",
- "ph": {
- "id_num": 0,
- "user_data": {},
- "divisions": {
- "row_heights": [],
- "cells": [],
- "column_widths": []
- }
- }
- }
+ "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"
},
- {
- "identifier": "Generic 25mm Insulation",
- "visible_absorptance": 0.69999999999999996,
- "conductivity": 0.029999999999999999,
- "solar_absorptance": 0.69999999999999996,
- "specific_heat": 1210.0,
- "thickness": 0.025000000000000001,
- "density": 43.0,
- "type": "EnergyMaterial",
- "roughness": "MediumRough",
- "thermal_absorptance": 0.90000000000000002,
- "properties": {
- "type": "EnergyMaterialProperties",
- "ph": {
- "id_num": 0,
- "user_data": {},
- "divisions": {
- "row_heights": [],
- "cells": [],
- "column_widths": []
- }
- }
+ "display_name": "Room_5_6eedca30..Face2",
+ "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"
}
},
- {
- "gas_type": "Air",
- "type": "EnergyWindowMaterialGas",
- "thickness": 0.012699999999999999,
- "identifier": "Generic Window Air Gap"
- },
- {
- "thickness": 0.0060000000000000001,
- "solar_reflectance": 0.070000000000000007,
- "visible_transmittance": 0.88,
- "solar_diffusing": false,
- "visible_reflectance": 0.080000000000000002,
- "conductivity": 1.0,
- "type": "EnergyWindowMaterialGlazing",
- "emissivity_back": 0.83999999999999997,
- "identifier": "Generic Clear Glass",
- "solar_transmittance": 0.77000000000000002,
- "solar_reflectance_back": 0.070000000000000007,
- "visible_reflectance_back": 0.080000000000000002,
- "infrared_transmittance": 0.0,
- "dirt_correction": 1.0,
- "emissivity": 0.83999999999999997
+ "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
+ ],
+ "o": [
+ 0.0,
+ 4.0,
+ 0.0
+ ],
+ "x": [
+ 0.0,
+ -1.0,
+ 0.0
+ ]
+ },
+ "type": "Face3D"
},
- {
- "identifier": "Generic Brick",
- "visible_absorptance": 0.65000000000000002,
- "conductivity": 0.90000000000000002,
- "solar_absorptance": 0.65000000000000002,
- "specific_heat": 790.0,
- "thickness": 0.10000000000000001,
- "density": 1920.0,
- "type": "EnergyMaterial",
- "roughness": "MediumRough",
- "thermal_absorptance": 0.90000000000000002,
- "properties": {
- "type": "EnergyMaterialProperties",
- "ph": {
- "id_num": 0,
- "user_data": {},
- "divisions": {
- "row_heights": [],
- "cells": [],
- "column_widths": []
- }
- }
+ "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"
}
+ }
+ },
+ {
+ "boundary_condition": {
+ "type": "Ground"
},
- {
- "identifier": "Generic Gypsum Board",
- "visible_absorptance": 0.5,
- "conductivity": 0.16,
- "solar_absorptance": 0.5,
- "specific_heat": 1090.0,
- "thickness": 0.012699999999999999,
- "density": 800.0,
- "type": "EnergyMaterial",
- "roughness": "MediumSmooth",
- "thermal_absorptance": 0.90000000000000002,
- "properties": {
- "type": "EnergyMaterialProperties",
- "ph": {
- "id_num": 0,
- "user_data": {},
- "divisions": {
- "row_heights": [],
- "cells": [],
- "column_widths": []
- }
- }
- }
+ "identifier": "Room_5_6eedca30..Face4",
+ "type": "Face",
+ "face_type": "Floor",
+ "geometry": {
+ "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
+ ]
+ ],
+ "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"
},
- {
- "identifier": "Generic Acoustic Tile",
- "visible_absorptance": 0.20000000000000001,
- "conductivity": 0.059999999999999998,
- "solar_absorptance": 0.20000000000000001,
- "specific_heat": 590.0,
- "thickness": 0.02,
- "density": 368.0,
- "type": "EnergyMaterial",
- "roughness": "MediumSmooth",
- "thermal_absorptance": 0.90000000000000002,
- "properties": {
- "type": "EnergyMaterialProperties",
- "ph": {
- "id_num": 0,
- "user_data": {},
- "divisions": {
- "row_heights": [],
- "cells": [],
- "column_widths": []
- }
- }
+ "display_name": "Room_5_6eedca30..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": "Generic Wall Air Gap",
- "visible_absorptance": 0.69999999999999996,
- "conductivity": 0.66700000000000004,
- "solar_absorptance": 0.69999999999999996,
- "specific_heat": 1000.0,
- "thickness": 0.10000000000000001,
- "density": 1.2800000000000000,
- "type": "EnergyMaterial",
- "roughness": "Smooth",
- "thermal_absorptance": 0.90000000000000002,
- "properties": {
- "type": "EnergyMaterialProperties",
- "ph": {
- "id_num": 0,
- "user_data": {},
- "divisions": {
- "row_heights": [],
- "cells": [],
- "column_widths": []
- }
- }
+ "identifier": "Room_5_6eedca30..Face5",
+ "type": "Face",
+ "face_type": "RoofCeiling",
+ "geometry": {
+ "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
+ ]
+ ],
+ "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_5_6eedca30..Face5",
+ "properties": {
+ "radiance": {
+ "type": "FaceRadiancePropertiesAbridged"
+ },
+ "type": "FacePropertiesAbridged",
+ "energy": {
+ "type": "FaceEnergyPropertiesAbridged"
+ },
+ "ph": {
+ "type": "FacePhPropertiesAbridged",
+ "id_num": 0
+ },
+ "ph_hvac": {
+ "type": "FacePhHvacProperties"
}
}
- ],
- "wall_set": {
- "ground_construction": "Generic Underground Wall",
- "interior_construction": "Generic Interior Wall",
- "type": "WallConstructionSetAbridged",
- "exterior_construction": "Generic Exterior Wall"
+ }
+ ],
+ "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_construction": "Generic Exterior Door",
- "overhead_construction": "Generic Exterior Door",
- "exterior_glass_construction": "Generic Double Pane",
- "interior_construction": "Generic Interior Door",
- "interior_glass_construction": "Generic Single Pane",
- "type": "DoorConstructionSetAbridged"
+ "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"
},
- "air_boundary_construction": "Generic Air Boundary",
- "roof_ceiling_set": {
- "ground_construction": "Generic Underground Roof",
- "interior_construction": "Generic Interior Ceiling",
- "type": "RoofCeilingConstructionSetAbridged",
- "exterior_construction": "Generic Roof"
+ "type": "GlobalModifierSet",
+ "wall_set": {
+ "interior_modifier": "generic_wall_0.50",
+ "type": "WallModifierSetAbridged",
+ "exterior_modifier": "generic_wall_0.50"
},
- "floor_set": {
- "ground_construction": "Generic Ground Slab",
- "interior_construction": "Generic Interior Floor",
- "type": "FloorConstructionSetAbridged",
- "exterior_construction": "Generic Exposed Floor"
+ "shade_set": {
+ "interior_modifier": "generic_interior_shade_0.50",
+ "type": "ShadeModifierSetAbridged",
+ "exterior_modifier": "generic_exterior_shade_0.35"
},
- "shade_construction": "Generic Shade",
- "context_construction": "Generic Context",
+ "air_boundary_modifier": "air_boundary",
"aperture_set": {
- "operable_construction": "Generic Double Pane",
- "interior_construction": "Generic Single Pane",
- "skylight_construction": "Generic Double Pane",
- "window_construction": "Generic Double Pane",
- "type": "ApertureConstructionSetAbridged"
+ "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"
},
- "type": "GlobalConstructionSet",
- "constructions": [
- {
- "is_specular": false,
- "identifier": "Generic Context",
- "visible_reflectance": 0.20000000000000001,
- "solar_reflectance": 0.20000000000000001,
- "type": "ShadeConstruction"
- },
- {
- "air_mixing_schedule": "Always On",
- "identifier": "Generic Air Boundary",
- "type": "AirBoundaryConstructionAbridged",
- "air_mixing_per_area": 0.10000000000000001
- },
- {
- "identifier": "Generic Exposed Floor",
- "type": "OpaqueConstructionAbridged",
- "materials": [
- "Generic Painted Metal",
- "Generic Ceiling Air Gap",
- "Generic 50mm Insulation",
- "Generic LW Concrete"
- ]
- },
- {
- "identifier": "Generic Interior Floor",
- "type": "OpaqueConstructionAbridged",
- "materials": [
- "Generic Acoustic Tile",
- "Generic Ceiling Air Gap",
- "Generic LW Concrete"
- ]
- },
- {
- "identifier": "Generic Interior Door",
- "type": "OpaqueConstructionAbridged",
- "materials": [
- "Generic 25mm Wood"
- ]
- },
- {
- "identifier": "Generic Ground Slab",
- "type": "OpaqueConstructionAbridged",
- "materials": [
- "Generic 50mm Insulation",
- "Generic HW Concrete"
- ]
- },
+ "modifiers": [
{
- "identifier": "Generic Interior Wall",
- "type": "OpaqueConstructionAbridged",
- "materials": [
- "Generic Gypsum Board",
- "Generic Wall Air Gap",
- "Generic Gypsum Board"
- ]
+ "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
},
{
- "identifier": "Generic Roof",
- "type": "OpaqueConstructionAbridged",
- "materials": [
- "Generic Roof Membrane",
- "Generic 50mm Insulation",
- "Generic LW Concrete",
- "Generic Ceiling Air Gap",
- "Generic Acoustic Tile"
- ]
+ "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
},
{
- "identifier": "Generic Exterior Door",
- "type": "OpaqueConstructionAbridged",
- "materials": [
- "Generic Painted Metal",
- "Generic 25mm Insulation",
- "Generic Painted Metal"
- ]
+ "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
},
{
- "is_specular": false,
- "identifier": "Generic Shade",
- "visible_reflectance": 0.34999999999999998,
- "solar_reflectance": 0.34999999999999998,
- "type": "ShadeConstruction"
+ "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
},
{
- "identifier": "Generic Underground Wall",
- "type": "OpaqueConstructionAbridged",
- "materials": [
- "Generic 50mm Insulation",
- "Generic HW Concrete",
- "Generic Wall Air Gap",
- "Generic Gypsum Board"
- ]
+ "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
},
{
- "properties": {
- "type": "WindowConstructionProperties",
- "ph": {
- "id_num": 0,
- "type": "WindowConstructionPhProperties"
- }
- },
- "identifier": "Generic Double Pane",
- "type": "WindowConstructionAbridged",
- "materials": [
- "Generic Low-e Glass",
- "Generic Window Air Gap",
- "Generic Clear Glass"
- ]
+ "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
},
{
- "identifier": "Generic Underground Roof",
- "type": "OpaqueConstructionAbridged",
- "materials": [
- "Generic 50mm Insulation",
- "Generic HW Concrete",
- "Generic Ceiling Air Gap",
- "Generic Acoustic Tile"
- ]
+ "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
},
{
- "identifier": "Generic Exterior Wall",
- "type": "OpaqueConstructionAbridged",
- "materials": [
- "Generic Brick",
- "Generic LW Concrete",
- "Generic 50mm Insulation",
- "Generic Wall Air Gap",
- "Generic Gypsum Board"
- ]
+ "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
},
{
- "properties": {
- "type": "WindowConstructionProperties",
- "ph": {
- "id_num": 0,
- "type": "WindowConstructionPhProperties"
- }
- },
- "identifier": "Generic Single Pane",
- "type": "WindowConstructionAbridged",
- "materials": [
- "Generic Clear Glass"
- ]
+ "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
},
{
- "identifier": "Generic Interior Ceiling",
- "type": "OpaqueConstructionAbridged",
- "materials": [
- "Generic LW Concrete",
- "Generic Ceiling Air Gap",
- "Generic Acoustic Tile"
- ]
- }
- ]
- },
- "hvacs": [
- {
- "sensible_heat_recovery": 0.0,
- "latent_heat_recovery": 0.0,
- "heating_air_temperature": 50.0,
- "cooling_limit": {
- "type": "Autosize"
- },
- "identifier": "Room_1_81cab59e Ideal Loads Air System",
- "demand_controlled_ventilation": false,
- "cooling_air_temperature": 13.0,
- "economizer_type": "DifferentialDryBulb",
- "type": "IdealAirSystemAbridged",
- "heating_limit": {
- "type": "Autosize"
+ "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
}
- }
- ],
- "schedules": [
- {
- "winter_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn",
- "properties": {
- "type": "ScheduleRulesetProperties",
- "ph": {
- "operating_days_wk": 7.0,
- "id_num": 0,
- "operating_weeks_year": 52.142899999999997,
- "operating_periods": {
- "collection": []
- },
- "type": "ScheduleRulesetPhProperties"
- }
- },
- "day_schedules": [
- {
- "times": [
- [
- 0,
- 0
- ]
- ],
- "interpolate": false,
- "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default",
- "type": "ScheduleDay",
- "values": [
- 26.699999999999999
- ]
- },
- {
- "times": [
- [
- 0,
- 0
- ],
- [
- 5,
- 0
- ],
- [
- 6,
- 0
- ],
- [
- 7,
- 0
- ],
- [
- 22,
- 0
- ]
- ],
- "interpolate": false,
- "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn",
- "type": "ScheduleDay",
- "values": [
- 26.699999999999999,
- 25.699999999999999,
- 25.0,
- 24.0,
- 26.699999999999999
- ]
- },
- {
- "times": [
- [
- 0,
- 0
- ]
- ],
- "interpolate": false,
- "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn",
- "type": "ScheduleDay",
- "values": [
- 26.699999999999999
- ]
- },
- {
- "times": [
- [
- 0,
- 0
- ],
- [
- 5,
- 0
- ],
- [
- 6,
- 0
- ],
- [
- 7,
- 0
- ],
- [
- 22,
- 0
- ]
- ],
- "interpolate": false,
- "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy",
- "type": "ScheduleDay",
- "values": [
- 26.699999999999999,
- 25.600000000000001,
- 25.0,
- 24.0,
- 26.699999999999999
- ]
- },
- {
- "times": [
- [
- 0,
- 0
- ],
- [
- 5,
- 0
- ],
- [
- 6,
- 0
- ],
- [
- 7,
- 0
- ],
- [
- 17,
- 0
- ]
- ],
- "interpolate": false,
- "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat",
- "type": "ScheduleDay",
- "values": [
- 26.699999999999999,
- 25.699999999999999,
- 25.0,
- 24.0,
- 26.699999999999999
- ]
+ ],
+ "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"
}
- ],
- "default_day_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default",
- "identifier": "Generic Office Cooling",
- "holiday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default",
- "summer_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn",
- "type": "ScheduleRulesetAbridged",
+ },
+ "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_monday": true,
- "apply_sunday": false,
"apply_wednesday": true,
+ "apply_saturday": false,
+ "type": "ScheduleRuleAbridged",
"apply_thursday": true,
- "end_date": [
- 12,
- 31
- ],
"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_saturday": false,
- "type": "ScheduleRuleAbridged",
- "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy"
+ "apply_sunday": false
},
{
- "apply_monday": false,
- "apply_sunday": false,
"apply_wednesday": false,
+ "apply_saturday": true,
+ "type": "ScheduleRuleAbridged",
"apply_thursday": false,
- "end_date": [
- 12,
- 31
- ],
"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_saturday": true,
- "type": "ScheduleRuleAbridged",
- "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat"
+ "apply_sunday": false
}
],
- "schedule_type_limit": "Temperature"
- },
- {
- "winter_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn",
- "properties": {
- "type": "ScheduleRulesetProperties",
- "ph": {
- "operating_days_wk": 7.0,
- "id_num": 0,
- "operating_weeks_year": 52.142899999999997,
- "operating_periods": {
- "collection": []
- },
- "type": "ScheduleRulesetPhProperties"
- }
- },
+ "identifier": "Generic Office Equipment",
+ "type": "ScheduleRulesetAbridged",
"day_schedules": [
{
+ "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun",
+ "type": "ScheduleDay",
"times": [
[
0,
@@ -969,44 +787,44 @@
0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun",
- "type": "ScheduleDay",
"values": [
- 0.050000000000000003,
- 0.04311628,
- 0.050000000000000003
- ]
+ 0.2307553806,
+ 0.28810717499999999,
+ 0.2307553806
+ ],
+ "interpolate": false
},
{
+ "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn",
+ "type": "ScheduleDay",
"times": [
[
0,
0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn",
- "type": "ScheduleDay",
"values": [
1.0
- ]
+ ],
+ "interpolate": false
},
{
+ "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn",
+ "type": "ScheduleDay",
"times": [
[
0,
0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn",
- "type": "ScheduleDay",
"values": [
0.0
- ]
+ ],
+ "interpolate": false
},
{
+ "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat",
+ "type": "ScheduleDay",
"times": [
[
0,
@@ -1033,155 +851,150 @@
0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat",
- "type": "ScheduleDay",
"values": [
- 0.050000000000000003,
- 0.08623256,
- 0.25869767999999999,
- 0.12934883999999999,
- 0.04311628,
- 0.050000000000000003
- ]
+ 0.2307553806,
+ 0.38123479599999999,
+ 0.47654349499999998,
+ 0.33358044650000002,
+ 0.28592609699999999,
+ 0.2307553806
+ ],
+ "interpolate": false
},
{
+ "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy",
+ "type": "ScheduleDay",
"times": [
[
0,
0
],
- [
- 5,
- 0
- ],
[
6,
0
],
- [
- 7,
- 0
- ],
[
8,
0
],
[
- 17,
- 0
- ],
- [
- 18,
+ 12,
0
],
[
- 20,
+ 13,
0
],
[
- 22,
+ 17,
0
],
[
- 23,
+ 18,
0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy",
- "type": "ScheduleDay",
"values": [
- 0.050000000000000003,
- 0.10000000000000001,
- 0.08623256,
- 0.25869767999999999,
- 0.77609304000000001,
- 0.43116280000000001,
- 0.25869767999999999,
- 0.17246512,
- 0.08623256,
- 0.04311628
- ]
+ 0.30767384079999999,
+ 0.38123479599999999,
+ 0.85777829100000003,
+ 0.76246959199999997,
+ 0.85777829100000003,
+ 0.47654349499999998,
+ 0.38123479599999999
+ ],
+ "interpolate": false
}
],
- "default_day_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun",
- "identifier": "Generic Office Lighting",
- "holiday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat",
- "summer_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn",
- "type": "ScheduleRulesetAbridged",
+ "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"
+ }
+ },
+ {
+ "default_day_schedule": "OfficeMedium BLDG_OCC_SCH_Default",
+ "winter_designday_schedule": "OfficeMedium BLDG_OCC_SCH_WntrDsn",
+ "schedule_type_limit": "Fractional",
"schedule_rules": [
{
- "apply_monday": true,
- "apply_sunday": false,
"apply_wednesday": true,
+ "apply_saturday": false,
+ "type": "ScheduleRuleAbridged",
"apply_thursday": true,
- "end_date": [
- 12,
- 31
- ],
"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_saturday": false,
- "type": "ScheduleRuleAbridged",
- "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy"
+ "apply_sunday": false
},
{
- "apply_monday": false,
- "apply_sunday": false,
"apply_wednesday": false,
+ "apply_saturday": true,
+ "type": "ScheduleRuleAbridged",
"apply_thursday": false,
- "end_date": [
- 12,
- 31
- ],
"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_saturday": true,
- "type": "ScheduleRuleAbridged",
- "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat"
+ "apply_sunday": false
}
],
- "schedule_type_limit": "Fractional"
- },
- {
- "winter_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn",
- "properties": {
- "type": "ScheduleRulesetProperties",
- "ph": {
- "operating_days_wk": 7.0,
- "id_num": 0,
- "operating_weeks_year": 52.142899999999997,
- "operating_periods": {
- "collection": []
- },
- "type": "ScheduleRulesetPhProperties"
- }
- },
+ "identifier": "Generic Office Occupancy",
+ "type": "ScheduleRulesetAbridged",
"day_schedules": [
{
+ "identifier": "OfficeMedium BLDG_OCC_SCH_Default",
+ "type": "ScheduleDay",
"times": [
[
0,
0
+ ],
+ [
+ 6,
+ 0
+ ],
+ [
+ 18,
+ 0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium INFIL_SCH_PNNL_Default",
- "type": "ScheduleDay",
"values": [
- 1.0
- ]
+ 0.0,
+ 0.050000000000000003,
+ 0.0
+ ],
+ "interpolate": false
},
{
+ "identifier": "OfficeMedium BLDG_OCC_SCH_SmrDsn",
+ "type": "ScheduleDay",
"times": [
[
0,
@@ -1196,40 +1009,30 @@
0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn",
- "type": "ScheduleDay",
"values": [
+ 0.0,
1.0,
- 0.25,
- 1.0
- ]
+ 0.050000000000000003
+ ],
+ "interpolate": false
},
{
+ "identifier": "OfficeMedium BLDG_OCC_SCH_WntrDsn",
+ "type": "ScheduleDay",
"times": [
[
0,
0
- ],
- [
- 6,
- 0
- ],
- [
- 18,
- 0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn",
- "type": "ScheduleDay",
"values": [
- 1.0,
- 0.25,
- 1.0
- ]
+ 0.0
+ ],
+ "interpolate": false
},
{
+ "identifier": "OfficeMedium BLDG_OCC_SCH_Wkdy",
+ "type": "ScheduleDay",
"times": [
[
0,
@@ -1239,21 +1042,51 @@
6,
0
],
+ [
+ 7,
+ 0
+ ],
+ [
+ 8,
+ 0
+ ],
+ [
+ 12,
+ 0
+ ],
+ [
+ 13,
+ 0
+ ],
+ [
+ 17,
+ 0
+ ],
+ [
+ 18,
+ 0
+ ],
[
22,
0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy",
- "type": "ScheduleDay",
"values": [
- 1.0,
- 0.25,
- 1.0
- ]
+ 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_Sat",
+ "type": "ScheduleDay",
"times": [
[
0,
@@ -1264,107 +1097,112 @@
0
],
[
- 18,
+ 8,
+ 0
+ ],
+ [
+ 12,
+ 0
+ ],
+ [
+ 17,
+ 0
+ ],
+ [
+ 19,
0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat",
- "type": "ScheduleDay",
"values": [
- 1.0,
- 0.25,
- 1.0
- ]
+ 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",
- "identifier": "Generic Office Infiltration",
- "holiday_schedule": "OfficeMedium INFIL_SCH_PNNL_Default",
- "summer_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn",
- "type": "ScheduleRulesetAbridged",
+ "winter_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn",
+ "schedule_type_limit": "Fractional",
"schedule_rules": [
{
- "apply_monday": true,
- "apply_sunday": false,
"apply_wednesday": true,
+ "apply_saturday": false,
+ "type": "ScheduleRuleAbridged",
"apply_thursday": true,
- "end_date": [
- 12,
- 31
- ],
"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_saturday": false,
- "type": "ScheduleRuleAbridged",
- "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Wkdy"
+ "apply_sunday": false
},
{
- "apply_monday": false,
- "apply_sunday": false,
"apply_wednesday": false,
+ "apply_saturday": true,
+ "type": "ScheduleRuleAbridged",
"apply_thursday": false,
- "end_date": [
- 12,
- 31
- ],
"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_saturday": true,
- "type": "ScheduleRuleAbridged",
- "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Sat"
+ "apply_sunday": false
}
],
- "schedule_type_limit": "Fractional"
- },
- {
- "winter_designday_schedule": "OfficeMedium BLDG_OCC_SCH_WntrDsn",
- "properties": {
- "type": "ScheduleRulesetProperties",
- "ph": {
- "operating_days_wk": 7.0,
- "id_num": 0,
- "operating_weeks_year": 52.142899999999997,
- "operating_periods": {
- "collection": []
- },
- "type": "ScheduleRulesetPhProperties"
- }
- },
+ "identifier": "Generic Office Infiltration",
+ "type": "ScheduleRulesetAbridged",
"day_schedules": [
{
+ "identifier": "OfficeMedium INFIL_SCH_PNNL_Default",
+ "type": "ScheduleDay",
"times": [
[
0,
0
- ],
- [
- 6,
- 0
- ],
- [
- 18,
- 0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_OCC_SCH_Default",
- "type": "ScheduleDay",
"values": [
- 0.0,
- 0.050000000000000003,
- 0.0
- ]
+ 1.0
+ ],
+ "interpolate": false
},
{
+ "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn",
+ "type": "ScheduleDay",
"times": [
[
0,
@@ -1379,84 +1217,40 @@
0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_OCC_SCH_SmrDsn",
- "type": "ScheduleDay",
"values": [
- 0.0,
1.0,
- 0.050000000000000003
- ]
- },
- {
- "times": [
- [
- 0,
- 0
- ]
+ 0.25,
+ 1.0
],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_OCC_SCH_WntrDsn",
- "type": "ScheduleDay",
- "values": [
- 0.0
- ]
+ "interpolate": false
},
- {
- "times": [
- [
- 0,
- 0
- ],
- [
- 6,
- 0
- ],
- [
- 7,
- 0
- ],
- [
- 8,
- 0
- ],
- [
- 12,
- 0
- ],
+ {
+ "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn",
+ "type": "ScheduleDay",
+ "times": [
[
- 13,
+ 0,
0
],
[
- 17,
+ 6,
0
],
[
18,
0
- ],
- [
- 22,
- 0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_OCC_SCH_Wkdy",
- "type": "ScheduleDay",
"values": [
- 0.0,
- 0.10000000000000001,
- 0.20000000000000001,
- 0.94999999999999996,
- 0.5,
- 0.94999999999999996,
- 0.29999999999999999,
- 0.10000000000000001,
- 0.050000000000000003
- ]
+ 1.0,
+ 0.25,
+ 1.0
+ ],
+ "interpolate": false
},
{
+ "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy",
+ "type": "ScheduleDay",
"times": [
[
0,
@@ -1467,358 +1261,362 @@
0
],
[
- 8,
+ 22,
0
- ],
+ ]
+ ],
+ "values": [
+ 1.0,
+ 0.25,
+ 1.0
+ ],
+ "interpolate": false
+ },
+ {
+ "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat",
+ "type": "ScheduleDay",
+ "times": [
[
- 12,
+ 0,
0
],
[
- 17,
+ 6,
0
],
[
- 19,
+ 18,
0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_OCC_SCH_Sat",
- "type": "ScheduleDay",
"values": [
- 0.0,
- 0.10000000000000001,
- 0.29999999999999999,
- 0.10000000000000001,
- 0.050000000000000003,
- 0.0
- ]
+ 1.0,
+ 0.25,
+ 1.0
+ ],
+ "interpolate": false
}
],
- "default_day_schedule": "OfficeMedium BLDG_OCC_SCH_Default",
- "identifier": "Generic Office Occupancy",
- "holiday_schedule": "OfficeMedium BLDG_OCC_SCH_Default",
- "summer_designday_schedule": "OfficeMedium BLDG_OCC_SCH_SmrDsn",
- "type": "ScheduleRulesetAbridged",
+ "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"
+ }
+ },
+ {
+ "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_monday": true,
- "apply_sunday": false,
"apply_wednesday": true,
+ "apply_saturday": false,
+ "type": "ScheduleRuleAbridged",
"apply_thursday": true,
- "end_date": [
- 12,
- 31
- ],
"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_saturday": false,
- "type": "ScheduleRuleAbridged",
- "schedule_day": "OfficeMedium BLDG_OCC_SCH_Wkdy"
+ "apply_sunday": false
},
{
- "apply_monday": false,
- "apply_sunday": false,
"apply_wednesday": false,
+ "apply_saturday": true,
+ "type": "ScheduleRuleAbridged",
"apply_thursday": false,
- "end_date": [
- 12,
- 31
- ],
"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_saturday": true,
- "type": "ScheduleRuleAbridged",
- "schedule_day": "OfficeMedium BLDG_OCC_SCH_Sat"
+ "apply_sunday": false
}
],
- "schedule_type_limit": "Fractional"
- },
- {
- "properties": {
- "type": "ScheduleRulesetProperties",
- "ph": {
- "operating_days_wk": 7.0,
- "id_num": 0,
- "operating_weeks_year": 52.142899999999997,
- "operating_periods": {
- "collection": []
- },
- "type": "ScheduleRulesetPhProperties"
- }
- },
+ "identifier": "Generic Office Cooling",
+ "type": "ScheduleRulesetAbridged",
"day_schedules": [
{
+ "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default",
+ "type": "ScheduleDay",
"times": [
[
0,
0
]
],
- "interpolate": false,
- "identifier": "Seated Adult Activity_Day Schedule",
- "type": "ScheduleDay",
"values": [
- 120.0
- ]
- }
- ],
- "default_day_schedule": "Seated Adult Activity_Day Schedule",
- "identifier": "Seated Adult Activity",
- "type": "ScheduleRulesetAbridged",
- "schedule_type_limit": "Activity Level"
- },
- {
- "winter_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn",
- "properties": {
- "type": "ScheduleRulesetProperties",
- "ph": {
- "operating_days_wk": 7.0,
- "id_num": 0,
- "operating_weeks_year": 52.142899999999997,
- "operating_periods": {
- "collection": []
- },
- "type": "ScheduleRulesetPhProperties"
- }
- },
- "day_schedules": [
+ 26.699999999999999
+ ],
+ "interpolate": false
+ },
{
+ "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn",
+ "type": "ScheduleDay",
"times": [
[
0,
0
],
+ [
+ 5,
+ 0
+ ],
[
6,
0
],
[
- 18,
+ 7,
0
- ]
- ],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun",
- "type": "ScheduleDay",
- "values": [
- 0.2307553806,
- 0.28810717499999999,
- 0.2307553806
- ]
- },
- {
- "times": [
+ ],
[
- 0,
+ 22,
0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn",
- "type": "ScheduleDay",
"values": [
- 1.0
- ]
+ 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
]
],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn",
- "type": "ScheduleDay",
"values": [
- 0.0
- ]
+ 26.699999999999999
+ ],
+ "interpolate": false
},
{
+ "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy",
+ "type": "ScheduleDay",
"times": [
[
0,
0
],
[
- 6,
- 0
- ],
- [
- 8,
+ 5,
0
],
[
- 12,
+ 6,
0
],
[
- 17,
+ 7,
0
],
[
- 19,
+ 22,
0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat",
- "type": "ScheduleDay",
"values": [
- 0.2307553806,
- 0.38123479599999999,
- 0.47654349499999998,
- 0.33358044650000002,
- 0.28592609699999999,
- 0.2307553806
- ]
+ 26.699999999999999,
+ 25.600000000000001,
+ 25.0,
+ 24.0,
+ 26.699999999999999
+ ],
+ "interpolate": false
},
{
+ "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat",
+ "type": "ScheduleDay",
"times": [
[
0,
0
],
[
- 6,
- 0
- ],
- [
- 8,
+ 5,
0
],
[
- 12,
+ 6,
0
],
[
- 13,
+ 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"
+ }
+ },
+ {
+ "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": [
[
- 18,
+ 0,
0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy",
- "type": "ScheduleDay",
"values": [
- 0.30767384079999999,
- 0.38123479599999999,
- 0.85777829100000003,
- 0.76246959199999997,
- 0.85777829100000003,
- 0.47654349499999998,
- 0.38123479599999999
- ]
+ 120.0
+ ],
+ "interpolate": false
}
],
- "default_day_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun",
- "identifier": "Generic Office Equipment",
- "holiday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat",
- "summer_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn",
- "type": "ScheduleRulesetAbridged",
+ "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 HTGSETP_SCH_YES_OPTIMUM_Default",
+ "winter_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn",
+ "schedule_type_limit": "Temperature",
"schedule_rules": [
{
- "apply_monday": true,
- "apply_sunday": false,
"apply_wednesday": true,
+ "apply_saturday": false,
+ "type": "ScheduleRuleAbridged",
"apply_thursday": true,
- "end_date": [
- 12,
- 31
- ],
"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_saturday": false,
- "type": "ScheduleRuleAbridged",
- "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy"
+ "apply_sunday": false
},
{
- "apply_monday": false,
- "apply_sunday": false,
"apply_wednesday": false,
+ "apply_saturday": true,
+ "type": "ScheduleRuleAbridged",
"apply_thursday": false,
- "end_date": [
- 12,
- 31
- ],
"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_saturday": true,
- "type": "ScheduleRuleAbridged",
- "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat"
+ "apply_sunday": false
}
],
- "schedule_type_limit": "Fractional"
- },
- {
- "winter_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn",
- "properties": {
- "type": "ScheduleRulesetProperties",
- "ph": {
- "operating_days_wk": 7.0,
- "id_num": 0,
- "operating_weeks_year": 52.142899999999997,
- "operating_periods": {
- "collection": []
- },
- "type": "ScheduleRulesetPhProperties"
- }
- },
+ "identifier": "Generic Office Heating",
+ "type": "ScheduleRulesetAbridged",
"day_schedules": [
{
+ "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default",
+ "type": "ScheduleDay",
"times": [
[
0,
0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default",
- "type": "ScheduleDay",
"values": [
15.600000000000000
- ]
+ ],
+ "interpolate": false
},
{
+ "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn",
+ "type": "ScheduleDay",
"times": [
[
0,
0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn",
- "type": "ScheduleDay",
"values": [
15.600000000000000
- ]
+ ],
+ "interpolate": false
},
{
+ "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn",
+ "type": "ScheduleDay",
"times": [
[
0,
@@ -1841,18 +1639,18 @@
0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn",
- "type": "ScheduleDay",
"values": [
15.600000000000000,
17.600000000000001,
19.600000000000001,
21.0,
15.600000000000000
- ]
+ ],
+ "interpolate": false
},
{
+ "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy",
+ "type": "ScheduleDay",
"times": [
[
0,
@@ -1875,18 +1673,18 @@
0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy",
- "type": "ScheduleDay",
"values": [
15.600000000000000,
17.800000000000001,
20.0,
21.0,
15.600000000000000
- ]
+ ],
+ "interpolate": false
},
{
+ "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat",
+ "type": "ScheduleDay",
"times": [
[
0,
@@ -1909,1037 +1707,1239 @@
0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat",
- "type": "ScheduleDay",
"values": [
15.600000000000000,
17.800000000000001,
20.0,
21.0,
15.600000000000000
- ]
+ ],
+ "interpolate": false
}
],
- "default_day_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default",
- "identifier": "Generic Office Heating",
- "holiday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default",
"summer_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn",
- "type": "ScheduleRulesetAbridged",
+ "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"
+ }
+ },
+ {
+ "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_monday": true,
- "apply_sunday": false,
"apply_wednesday": true,
+ "apply_saturday": false,
+ "type": "ScheduleRuleAbridged",
"apply_thursday": true,
- "end_date": [
- 12,
- 31
- ],
"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_saturday": false,
- "type": "ScheduleRuleAbridged",
- "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy"
+ "apply_sunday": false
},
{
- "apply_monday": false,
- "apply_sunday": false,
"apply_wednesday": false,
+ "apply_saturday": true,
+ "type": "ScheduleRuleAbridged",
"apply_thursday": false,
+ "start_date": [
+ 1,
+ 1
+ ],
"end_date": [
12,
31
],
- "start_date": [
- 1,
- 1
+ "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
],
- "apply_tuesday": false,
- "apply_friday": false,
- "apply_saturday": true,
- "type": "ScheduleRuleAbridged",
- "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat"
+ "interpolate": false
}
],
- "schedule_type_limit": "Temperature"
+ "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": "ModelEnergyProperties",
- "constructions": [],
- "program_types": [
- {
- "ventilation": {
- "flow_per_area": 0.00030499999999999999,
- "identifier": "Generic Office Ventilation",
- "type": "VentilationAbridged",
- "flow_per_person": 0.0023600000000000001
+ "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"
+ },
+ "floor_set": {
+ "interior_construction": "Generic Interior Floor",
+ "type": "FloorConstructionSetAbridged",
+ "exterior_construction": "Generic Exposed Floor",
+ "ground_construction": "Generic Ground Slab"
+ },
+ "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"
+ },
+ "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,
+ "thermal_absorptance": 0.90000000000000002,
+ "solar_absorptance": 0.5,
+ "visible_absorptance": 0.5
},
- "setpoint": {
- "cooling_schedule": "Generic Office Cooling",
- "identifier": "Generic Office Setpoints",
- "type": "SetpointAbridged",
- "heating_schedule": "Generic Office Heating"
+ {
+ "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
},
- "people": {
- "people_per_area": 0.056500000000000002,
- "latent_fraction": {
- "type": "Autocalculate"
+ {
+ "identifier": "Generic Window Air Gap",
+ "type": "EnergyWindowMaterialGas",
+ "thickness": 0.012699999999999999,
+ "gas_type": "Air"
+ },
+ {
+ "properties": {
+ "ph": {
+ "user_data": {},
+ "id_num": 0,
+ "divisions": {
+ "column_widths": [],
+ "row_heights": [],
+ "cells": []
+ }
+ },
+ "type": "EnergyMaterialProperties"
},
- "radiant_fraction": 0.29999999999999999,
+ "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
+ },
+ {
"properties": {
- "type": "PeopleProperties",
"ph": {
- "dwellings": {
- "num_dwellings": 0,
- "identifier": "aadff7fd-21de-4274-9396-713b489df06d"
- },
+ "user_data": {},
"id_num": 0,
- "number_people": 0.0,
- "type": "PeoplePhProperties",
- "number_bedrooms": 0
- }
+ "divisions": {
+ "column_widths": [],
+ "row_heights": [],
+ "cells": []
+ }
+ },
+ "type": "EnergyMaterialProperties"
},
- "activity_schedule": "Seated Adult Activity",
- "identifier": "Generic Office People",
- "type": "PeopleAbridged",
- "occupancy_schedule": "Generic Office Occupancy"
+ "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
},
- "identifier": "Generic Office Program",
- "lighting": {
- "radiant_fraction": 0.69999999999999996,
- "watts_per_area": 10.550000000000001,
+ {
+ "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
+ },
+ {
+ "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
+ },
+ {
+ "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
+ },
+ {
"properties": {
- "type": "LightingProperties",
"ph": {
+ "user_data": {},
"id_num": 0,
- "target_lux_height": 0.80000000000000004,
- "type": "LightingPhProperties",
- "target_lux": 300
- }
+ "divisions": {
+ "column_widths": [],
+ "row_heights": [],
+ "cells": []
+ }
+ },
+ "type": "EnergyMaterialProperties"
},
- "identifier": "Generic Office Lighting",
- "return_air_fraction": 0.0,
- "visible_fraction": 0.20000000000000001,
- "schedule": "Generic Office Lighting",
- "type": "LightingAbridged"
- },
- "infiltration": {
- "flow_per_exterior_area": 0.00022660000000000001,
- "identifier": "Generic Office Infiltration",
- "type": "InfiltrationAbridged",
- "schedule": "Generic Office Infiltration"
+ "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": "ProgramTypeAbridged",
- "electric_equipment": {
- "latent_fraction": 0.0,
- "radiant_fraction": 0.5,
- "watts_per_area": 10.330000000000000,
+ {
"properties": {
- "type": "ElectricEquipmentProperties",
"ph": {
- "type": "ElectricEquipmentPhProperties",
- "equipment_collection": {
- "equipment_set": {}
+ "user_data": {},
+ "id_num": 0,
+ "divisions": {
+ "column_widths": [],
+ "row_heights": [],
+ "cells": []
}
- }
- },
- "identifier": "Generic Office Equipment",
- "schedule": "Generic Office Equipment",
- "lost_fraction": 0.0,
- "type": "ElectricEquipmentAbridged"
- }
- }
- ]
- },
- "ph": {
- "id_num": 0,
- "bldg_segments": [
- {
- "set_points": {
- "summer": 25.0,
- "identifier": "b2ba8f50-a32b-4ef0-abf5-413aee9fe1d8",
- "winter": 20.0,
- "user_data": {},
- "display_name": "b2ba8f50-a32b-4ef0-abf5-413aee9fe1d8"
- },
- "source_energy_factors": {
- "factors": []
- },
- "mech_room_temp": 20.0,
- "summer_hrv_bypass_mode": {
- "value": "4-ALWAYS"
- },
- "phi_certification": {
- "attributes": {
- "building_category_type": "1-RESIDENTIAL BUILDING",
- "occupancy_type": "1-STANDARD (ONLY FOR RESIDENTIAL BUILDINGS)",
- "tfa_override": null,
- "retrofit_type": "1-NEW BUILDING",
- "building_use_type": "10-DWELLING",
- "certification_type": "1-PASSIVE HOUSE",
- "enerphit_type": "2-ENERGY DEMAND METHOD",
- "ihg_type": "2-STANDARD",
- "phpp_version": 9,
- "primary_energy_type": "2-PER (RENEWABLE)",
- "certification_class": "1-CLASSIC"
- },
- "identifier": "2aad7346-0eb9-42cc-bd41-b76d9ea52788",
- "user_data": {},
- "display_name": "2aad7346-0eb9-42cc-bd41-b76d9ea52788",
- "phpp_version": 9
- },
- "num_dwelling_units": 1,
- "name": "Unnamed_Bldg_Segment",
- "identifier": "3f06f3de-eef0-41d8-814c-24908ef4fb9a",
- "num_floor_levels": 1,
- "user_data": {},
- "phius_certification": {
- "building_category_type": {
- "value": "1-RESIDENTIAL BUILDING"
- },
- "PHIUS2021_heating_demand": 15.0,
- "certification_program": {
- "value": "7-PHIUS 2021 CORE"
- },
- "building_use_type": {
- "value": "1-RESIDENTIAL"
- },
- "building_status": {
- "value": "1-IN_PLANNING"
- },
- "int_gains_evap_per_person": 15,
- "icfa_override": null,
- "building_type": {
- "value": "1-NEW_CONSTRUCTION"
+ },
+ "type": "EnergyMaterialProperties"
},
- "PHIUS2021_cooling_load": 10.0,
- "int_gains_num_toilets": 1,
- "int_gains_toilet_room_util_pat": null,
- "identifier": "360cdfc9-82df-4630-a913-e0ee947327ee",
- "user_data": {},
- "PHIUS2021_cooling_demand": 15.0,
- "int_gains_use_school_defaults": false,
- "display_name": "360cdfc9-82df-4630-a913-e0ee947327ee",
- "PHIUS2021_heating_load": 10.0,
- "int_gains_dhw_marginal_perf_ratio": null,
- "localization_selection_type": 2,
- "int_gains_flush_heat_loss": true
- },
- "non_combustible_materials": false,
- "display_name": "Unnamed_Bldg_Segment",
- "wind_exposure_type": {
- "value": "1-SEVERAL_SIDES_EXPOSED_NO_SCREENING"
+ "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
},
- "site": {
- "location": {
- "longitude": -73.799999999999997,
- "latitude": 40.600000000000001,
- "identifier": "a3908ed4-4cb6-4054-a852-3946cc3053e3",
- "climate_zone": 1,
- "user_data": {},
- "site_elevation": null,
- "display_name": "a3908ed4-4cb6-4054-a852-3946cc3053e3",
- "hours_from_UTC": -4
- },
- "climate": {
- "peak_loads": {
- "heat_load_2": {
- "rad_north": 0.0,
- "temp": 0.0,
- "rad_east": 0.0,
- "rad_global": 0.0,
- "ground_temp": null,
- "identifier": "0a410767-0df9-45e8-8ff8-78c46a5dea7b",
- "rad_west": 0.0,
- "user_data": {},
- "rad_south": 0.0,
- "sky_temp": null,
- "display_name": "0a410767-0df9-45e8-8ff8-78c46a5dea7b",
- "dewpoint": null
- },
- "cooling_load_1": {
- "rad_north": 0.0,
- "temp": 0.0,
- "rad_east": 0.0,
- "rad_global": 0.0,
- "ground_temp": null,
- "identifier": "b18e4cba-5743-4156-a9ab-8a59766b9c88",
- "rad_west": 0.0,
- "user_data": {},
- "rad_south": 0.0,
- "sky_temp": null,
- "display_name": "b18e4cba-5743-4156-a9ab-8a59766b9c88",
- "dewpoint": null
- },
- "cooling_load_2": {
- "rad_north": 0.0,
- "temp": 0.0,
- "rad_east": 0.0,
- "rad_global": 0.0,
- "ground_temp": null,
- "identifier": "9b68fa92-3988-4292-ab8c-131dbc842c7f",
- "rad_west": 0.0,
- "user_data": {},
- "rad_south": 0.0,
- "sky_temp": null,
- "display_name": "9b68fa92-3988-4292-ab8c-131dbc842c7f",
- "dewpoint": null
- },
- "heat_load_1": {
- "rad_north": 0.0,
- "temp": 0.0,
- "rad_east": 0.0,
- "rad_global": 0.0,
- "ground_temp": null,
- "identifier": "4bcae8a4-571d-48fe-8982-01679a573105",
- "rad_west": 0.0,
- "user_data": {},
- "rad_south": 0.0,
- "sky_temp": null,
- "display_name": "4bcae8a4-571d-48fe-8982-01679a573105",
- "dewpoint": null
- },
- "identifier": "6b05142c-5158-4e11-a354-6bca936e5043",
+ {
+ "properties": {
+ "ph": {
"user_data": {},
- "display_name": "6b05142c-5158-4e11-a354-6bca936e5043"
+ "id_num": 0,
+ "divisions": {
+ "column_widths": [],
+ "row_heights": [],
+ "cells": []
+ }
},
- "station_elevation": 0.0,
- "average_wind_speed": 4.0,
- "identifier": "d1f1057e-0f41-4c05-b961-4e63f10a5bbc",
- "user_data": {},
- "monthly_radiation": {
- "west": {
- "march": 0.0,
- "june": 0.0,
- "september": 0.0,
- "april": 0.0,
- "july": 0.0,
- "december": 0.0,
- "november": 0.0,
- "may": 0.0,
- "february": 0.0,
- "identifier": "4fd170c7-bb90-4849-a9d9-2b14d7d6f5b8",
- "user_data": {},
- "august": 0.0,
- "october": 0.0,
- "display_name": "4fd170c7-bb90-4849-a9d9-2b14d7d6f5b8",
- "january": 0.0
- },
- "south": {
- "march": 0.0,
- "june": 0.0,
- "september": 0.0,
- "april": 0.0,
- "july": 0.0,
- "december": 0.0,
- "november": 0.0,
- "may": 0.0,
- "february": 0.0,
- "identifier": "0fda5c4e-abd5-40f7-9c49-77461b1d2fa4",
- "user_data": {},
- "august": 0.0,
- "october": 0.0,
- "display_name": "0fda5c4e-abd5-40f7-9c49-77461b1d2fa4",
- "january": 0.0
- },
- "east": {
- "march": 0.0,
- "june": 0.0,
- "september": 0.0,
- "april": 0.0,
- "july": 0.0,
- "december": 0.0,
- "november": 0.0,
- "may": 0.0,
- "february": 0.0,
- "identifier": "f1ee0198-efff-4613-bf2b-f00aad5368bf",
- "user_data": {},
- "august": 0.0,
- "october": 0.0,
- "display_name": "f1ee0198-efff-4613-bf2b-f00aad5368bf",
- "january": 0.0
- },
- "identifier": "3c9c008e-1dd0-4d92-a8cc-a69f7baf008b",
- "user_data": {},
- "display_name": "3c9c008e-1dd0-4d92-a8cc-a69f7baf008b",
- "glob": {
- "march": 0.0,
- "june": 0.0,
- "september": 0.0,
- "april": 0.0,
- "july": 0.0,
- "december": 0.0,
- "november": 0.0,
- "may": 0.0,
- "february": 0.0,
- "identifier": "bf239401-4e84-4a9b-adfa-d4f55adcd685",
- "user_data": {},
- "august": 0.0,
- "october": 0.0,
- "display_name": "bf239401-4e84-4a9b-adfa-d4f55adcd685",
- "january": 0.0
- },
- "north": {
- "march": 0.0,
- "june": 0.0,
- "september": 0.0,
- "april": 0.0,
- "july": 0.0,
- "december": 0.0,
- "november": 0.0,
- "may": 0.0,
- "february": 0.0,
- "identifier": "6a9b12e5-f474-4333-850e-1bde9aa3e9e8",
- "user_data": {},
- "august": 0.0,
- "october": 0.0,
- "display_name": "6a9b12e5-f474-4333-850e-1bde9aa3e9e8",
- "january": 0.0
+ "type": "EnergyMaterialProperties"
+ },
+ "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": []
}
},
- "display_name": "New York",
- "summer_daily_temperature_swing": 8.0,
- "monthly_temps": {
- "dewpoints": {
- "march": 0.0,
- "june": 0.0,
- "september": 0.0,
- "april": 0.0,
- "july": 0.0,
- "december": 0.0,
- "november": 0.0,
- "may": 0.0,
- "february": 0.0,
- "identifier": "ae751e90-1128-4bdc-b971-e28491452ed3",
- "user_data": {},
- "august": 0.0,
- "october": 0.0,
- "display_name": "ae751e90-1128-4bdc-b971-e28491452ed3",
- "january": 0.0
- },
- "ground_temps": {
- "march": 0.0,
- "june": 0.0,
- "september": 0.0,
- "april": 0.0,
- "july": 0.0,
- "december": 0.0,
- "november": 0.0,
- "may": 0.0,
- "february": 0.0,
- "identifier": "e01ce652-3d0d-436f-95a7-9e6b8108bbd5",
- "user_data": {},
- "august": 0.0,
- "october": 0.0,
- "display_name": "e01ce652-3d0d-436f-95a7-9e6b8108bbd5",
- "january": 0.0
- },
- "sky_temps": {
- "march": 0.0,
- "june": 0.0,
- "september": 0.0,
- "april": 0.0,
- "july": 0.0,
- "december": 0.0,
- "november": 0.0,
- "may": 0.0,
- "february": 0.0,
- "identifier": "3122188d-24bf-4359-b1a4-b89976056054",
- "user_data": {},
- "august": 0.0,
- "october": 0.0,
- "display_name": "3122188d-24bf-4359-b1a4-b89976056054",
- "january": 0.0
- },
- "identifier": "d8613ec3-67f6-4f48-ab1f-7aa0aa02a192",
+ "type": "EnergyMaterialProperties"
+ },
+ "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
+ },
+ {
+ "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
+ },
+ {
+ "properties": {
+ "ph": {
"user_data": {},
- "display_name": "d8613ec3-67f6-4f48-ab1f-7aa0aa02a192",
- "air_temps": {
- "march": 0.0,
- "june": 0.0,
- "september": 0.0,
- "april": 0.0,
- "july": 0.0,
- "december": 0.0,
- "november": 0.0,
- "may": 0.0,
- "february": 0.0,
- "identifier": "54dfde8d-ca01-4e84-8898-2e293e519f16",
- "user_data": {},
- "august": 0.0,
- "october": 0.0,
- "display_name": "54dfde8d-ca01-4e84-8898-2e293e519f16",
- "january": 0.0
+ "id_num": 0,
+ "divisions": {
+ "column_widths": [],
+ "row_heights": [],
+ "cells": []
}
},
- "ground": {
- "flow_rate_groundwater": 0.050000000000000003,
- "identifier": "61c8340d-fec4-4629-84ce-c5fbaf127668",
- "ground_density": 2000,
- "user_data": {},
- "display_name": "61c8340d-fec4-4629-84ce-c5fbaf127668",
- "ground_heat_capacity": 1000,
- "ground_thermal_conductivity": 2,
- "depth_groundwater": 3
- }
+ "type": "EnergyMaterialProperties"
},
- "identifier": "82e794cc-b7f8-45a6-9bd9-b5533b35e059",
- "user_data": {},
- "display_name": "82e794cc-b7f8-45a6-9bd9-b5533b35e059",
- "phpp_library_codes": {
- "dataset_name": "US0055b-New York",
- "identifier": "0ff6ef60-e3df-4089-a510-de1340017153",
- "user_data": {},
- "display_name": "US0055b-New York",
- "region_code": "New York",
- "country_code": "US-United States of America"
- }
+ "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
+ }
+ ],
+ "constructions": [
+ {
+ "visible_reflectance": 0.20000000000000001,
+ "is_specular": false,
+ "identifier": "Generic Context",
+ "type": "ShadeConstruction",
+ "solar_reflectance": 0.20000000000000001
},
- "co2e_factors": {
- "factors": []
+ {
+ "materials": [
+ "Generic Low-e Glass",
+ "Generic Window Air Gap",
+ "Generic Clear Glass"
+ ],
+ "properties": {
+ "ph": {
+ "type": "WindowConstructionPhProperties",
+ "id_num": 0
+ },
+ "type": "WindowConstructionProperties"
+ },
+ "type": "WindowConstructionAbridged",
+ "identifier": "Generic Double Pane"
},
- "thermal_bridges": {}
- }
- ],
- "team": {
- "designer": {
- "post_code": null,
- "email": null,
- "telephone": null,
- "city": null,
- "name": null,
- "identifier": "bb6b7b3a-39df-41ee-8602-bdb5d1ac0692",
- "user_data": {},
- "license_number": null,
- "display_name": "bb6b7b3a-39df-41ee-8602-bdb5d1ac0692",
- "street": null
- },
- "building": {
- "post_code": null,
- "email": null,
- "telephone": null,
- "city": null,
- "name": null,
- "identifier": "d919126f-1f64-45c8-936a-5d2a8e96ac4f",
- "user_data": {},
- "license_number": null,
- "display_name": "d919126f-1f64-45c8-936a-5d2a8e96ac4f",
- "street": null
- },
- "identifier": "b74ccb5d-18d2-48d4-b9ad-15ded4aaddae",
- "user_data": {},
- "display_name": "b74ccb5d-18d2-48d4-b9ad-15ded4aaddae",
- "customer": {
- "post_code": null,
- "email": null,
- "telephone": null,
- "city": null,
- "name": null,
- "identifier": "5a2400ad-d3ea-48ed-8a06-c86f62cf824e",
- "user_data": {},
- "license_number": null,
- "display_name": "5a2400ad-d3ea-48ed-8a06-c86f62cf824e",
- "street": null
- },
- "owner": {
- "post_code": null,
- "email": null,
- "telephone": null,
- "city": null,
- "name": null,
- "identifier": "c107a556-513e-4ee6-af68-4a64d0f1477d",
- "user_data": {},
- "license_number": null,
- "display_name": "c107a556-513e-4ee6-af68-4a64d0f1477d",
- "street": null
- }
- },
- "type": "ModelPhPropertiesAbridged"
- },
- "ph_hvac": {
- "type": "ModelPhHvacPropertiesAbridged"
- }
- },
- "rooms": [
- {
- "properties": {
- "type": "RoomPropertiesAbridged",
- "radiance": {
- "type": "RoomRadiancePropertiesAbridged"
- },
- "energy": {
- "hvac": "Room_1_81cab59e Ideal Loads Air System",
- "type": "RoomEnergyPropertiesAbridged",
- "program_type": "Generic Office Program"
- },
- "ph": {
- "ph_foundations": [],
- "spaces": [],
- "specific_heat_capacity": "1-LIGHTWEIGHT",
- "ph_bldg_segment_id": "3f06f3de-eef0-41d8-814c-24908ef4fb9a",
- "type": "RoomPhPropertiesAbridged"
- },
- "ph_hvac": {
- "renewable_devices": [],
- "heat_pump_systems": [],
- "id_num": 0,
- "ventilation_system": null,
- "exhaust_vent_devices": [],
- "heating_systems": [],
- "hot_water_system": null,
- "supportive_devices": [],
- "type": "RoomPhHvacPropertiesAbridged"
- }
- },
- "faces": [
- {
- "boundary_condition": {
- "wind_exposure": true,
- "view_factor": {
- "type": "Autocalculate"
+ {
+ "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"
},
- "type": "Outdoors",
- "sun_exposure": true
+ "type": "WindowConstructionAbridged",
+ "identifier": "Generic Single Pane"
+ },
+ {
+ "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"
},
- "properties": {
- "type": "FacePropertiesAbridged",
- "radiance": {
- "type": "FaceRadiancePropertiesAbridged"
- },
- "energy": {
- "type": "FaceEnergyPropertiesAbridged"
- },
- "ph": {
- "id_num": 0,
- "type": "FacePhPropertiesAbridged"
- },
- "ph_hvac": {
- "type": "FacePhHvacProperties"
- }
+ {
+ "materials": [
+ "Generic LW Concrete",
+ "Generic Ceiling Air Gap",
+ "Generic Acoustic Tile"
+ ],
+ "type": "OpaqueConstructionAbridged",
+ "identifier": "Generic Interior Ceiling"
},
- "face_type": "Wall",
- "identifier": "Room_1_81cab59e..Face0",
- "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
- ]
+ {
+ "materials": [
+ "Generic Painted Metal",
+ "Generic Ceiling Air Gap",
+ "Generic 50mm Insulation",
+ "Generic LW Concrete"
],
- "type": "Face3D",
- "plane": {
- "o": [
- 0.0,
- 0.0,
- 0.0
- ],
- "x": [
- 1.0,
- 0.0,
- 0.0
- ],
- "type": "Plane",
- "n": [
- 0.0,
- -1.0,
- 0.0
- ]
- }
+ "type": "OpaqueConstructionAbridged",
+ "identifier": "Generic Exposed Floor"
},
- "display_name": "Room_1_81cab59e..Face0",
- "type": "Face"
- },
- {
- "boundary_condition": {
- "wind_exposure": true,
- "view_factor": {
- "type": "Autocalculate"
- },
- "type": "Outdoors",
- "sun_exposure": true
+ {
+ "materials": [
+ "Generic Acoustic Tile",
+ "Generic Ceiling Air Gap",
+ "Generic LW Concrete"
+ ],
+ "type": "OpaqueConstructionAbridged",
+ "identifier": "Generic Interior Floor"
},
- "properties": {
- "type": "FacePropertiesAbridged",
- "radiance": {
- "type": "FaceRadiancePropertiesAbridged"
- },
- "energy": {
- "type": "FaceEnergyPropertiesAbridged"
- },
- "ph": {
- "id_num": 0,
- "type": "FacePhPropertiesAbridged"
- },
- "ph_hvac": {
- "type": "FacePhHvacProperties"
- }
+ {
+ "materials": [
+ "Generic Gypsum Board",
+ "Generic Wall Air Gap",
+ "Generic Gypsum Board"
+ ],
+ "type": "OpaqueConstructionAbridged",
+ "identifier": "Generic Interior Wall"
},
- "face_type": "Wall",
- "identifier": "Room_1_81cab59e..Face1",
- "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
- ]
+ {
+ "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": "Face3D",
- "plane": {
- "o": [
- 5.0,
- 0.0,
- 0.0
- ],
- "x": [
- 0.0,
- 1.0,
- 0.0
- ],
- "type": "Plane",
- "n": [
- 1.0,
- 0.0,
- -5.5511151231257827e-17
- ]
- }
+ "type": "OpaqueConstructionAbridged",
+ "identifier": "Generic Underground Roof"
},
- "display_name": "Room_1_81cab59e..Face1",
- "type": "Face"
- },
- {
- "boundary_condition": {
- "wind_exposure": true,
- "view_factor": {
- "type": "Autocalculate"
- },
- "type": "Outdoors",
- "sun_exposure": true
+ {
+ "air_mixing_per_area": 0.10000000000000001,
+ "air_mixing_schedule": "Always On",
+ "type": "AirBoundaryConstructionAbridged",
+ "identifier": "Generic Air Boundary"
},
- "properties": {
- "type": "FacePropertiesAbridged",
- "radiance": {
- "type": "FaceRadiancePropertiesAbridged"
- },
- "energy": {
- "type": "FaceEnergyPropertiesAbridged"
- },
- "ph": {
- "id_num": 0,
- "type": "FacePhPropertiesAbridged"
- },
- "ph_hvac": {
- "type": "FacePhHvacProperties"
- }
+ {
+ "materials": [
+ "Generic 50mm Insulation",
+ "Generic HW Concrete"
+ ],
+ "type": "OpaqueConstructionAbridged",
+ "identifier": "Generic Ground Slab"
},
- "face_type": "Wall",
- "identifier": "Room_1_81cab59e..Face2",
- "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
- ]
+ {
+ "materials": [
+ "Generic Roof Membrane",
+ "Generic 50mm Insulation",
+ "Generic LW Concrete",
+ "Generic Ceiling Air Gap",
+ "Generic Acoustic Tile"
],
- "type": "Face3D",
- "plane": {
- "o": [
- 5.0,
- 4.0,
- 0.0
- ],
- "x": [
- -1.0,
- 0.0,
- 0.0
- ],
- "type": "Plane",
- "n": [
- 0.0,
- 1.0,
- -0.0
- ]
- }
+ "type": "OpaqueConstructionAbridged",
+ "identifier": "Generic Roof"
+ }
+ ]
+ },
+ "schedule_type_limits": [
+ {
+ "identifier": "Activity Level",
+ "type": "ScheduleTypeLimit",
+ "upper_limit": {
+ "type": "NoLimit"
},
- "display_name": "Room_1_81cab59e..Face2",
- "type": "Face"
+ "unit_type": "ActivityLevel",
+ "lower_limit": 0.0,
+ "numeric_type": "Continuous"
},
{
- "boundary_condition": {
- "wind_exposure": true,
- "view_factor": {
- "type": "Autocalculate"
+ "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"
+ }
+ ],
+ "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": [
+ {
+ "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": "IdealAirSystemAbridged",
+ "economizer_type": "DifferentialDryBulb",
+ "sensible_heat_recovery": 0.0,
+ "cooling_air_temperature": 13.0,
+ "heating_limit": {
+ "type": "Autosize"
+ }
+ }
+ ],
+ "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": "Outdoors",
- "sun_exposure": true
+ "phpp_version": 9,
+ "display_name": "3329cea5-b6a5-4cf5-bdca-2ab8ddfa46ad",
+ "user_data": {}
},
- "properties": {
- "type": "FacePropertiesAbridged",
- "radiance": {
- "type": "FaceRadiancePropertiesAbridged"
+ "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": {
- "id_num": 0,
- "type": "FacePhPropertiesAbridged"
+ "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"
},
- "ph_hvac": {
- "type": "FacePhHvacProperties"
+ "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"
+ },
+ "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"
}
},
- "face_type": "Wall",
- "identifier": "Room_1_81cab59e..Face3",
- "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
- ]
- ],
- "type": "Face3D",
- "plane": {
- "o": [
- 0.0,
- 4.0,
- 0.0
- ],
- "x": [
- 0.0,
- -1.0,
- 0.0
- ],
- "type": "Plane",
- "n": [
- -1.0,
- 0.0,
- 0.0
- ]
- }
+ "co2e_factors": {
+ "factors": []
},
- "display_name": "Room_1_81cab59e..Face3",
- "type": "Face"
- },
- {
- "boundary_condition": {
- "type": "Ground"
+ "mech_room_temp": 20.0,
+ "non_combustible_materials": false,
+ "wind_exposure_type": {
+ "value": "1-SEVERAL_SIDES_EXPOSED_NO_SCREENING"
},
- "properties": {
- "type": "FacePropertiesAbridged",
- "radiance": {
- "type": "FaceRadiancePropertiesAbridged"
- },
- "energy": {
- "type": "FaceEnergyPropertiesAbridged"
+ "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
},
- "ph": {
- "id_num": 0,
- "type": "FacePhPropertiesAbridged"
+ "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"
- }
- },
- "face_type": "Floor",
- "identifier": "Room_1_81cab59e..Face4",
- "geometry": {
- "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
- ]
- ],
- "type": "Face3D",
- "plane": {
- "o": [
- 0.0,
- 0.0,
- 0.0
- ],
- "x": [
- 0.0,
- 1.0,
- 0.0
- ],
- "type": "Plane",
- "n": [
- 0.0,
- 0.0,
- -1.0
- ]
+ "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": {}
}
},
- "display_name": "Room_1_81cab59e..Face4",
- "type": "Face"
- },
- {
- "boundary_condition": {
- "wind_exposure": true,
- "view_factor": {
- "type": "Autocalculate"
- },
- "type": "Outdoors",
- "sun_exposure": true
- },
- "properties": {
- "type": "FacePropertiesAbridged",
- "radiance": {
- "type": "FaceRadiancePropertiesAbridged"
- },
- "energy": {
- "type": "FaceEnergyPropertiesAbridged"
- },
- "ph": {
- "id_num": 0,
- "type": "FacePhPropertiesAbridged"
- },
- "ph_hvac": {
- "type": "FacePhHvacProperties"
- }
+ "summer_hrv_bypass_mode": {
+ "value": "4-ALWAYS"
},
- "face_type": "RoofCeiling",
- "identifier": "Room_1_81cab59e..Face5",
- "geometry": {
- "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
- ]
- ],
- "type": "Face3D",
- "plane": {
- "o": [
- 0.0,
- 0.0,
- 3.0
- ],
- "x": [
- 1.0,
- 0.0,
- -5.5511151231257827e-17
- ],
- "type": "Plane",
- "n": [
- 5.5511151231257827e-17,
- -0.0,
- 1.0
- ]
- }
+ "num_dwelling_units": 1,
+ "display_name": "Unnamed_Bldg_Segment",
+ "user_data": {},
+ "name": "Unnamed_Bldg_Segment",
+ "source_energy_factors": {
+ "factors": []
},
- "display_name": "Room_1_81cab59e..Face5",
- "type": "Face"
+ "thermal_bridges": {}
}
],
- "identifier": "Room_1_81cab59e",
- "display_name": "Room_1",
- "type": "Room"
+ "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
+ },
+ "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
+ },
+ "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
+ },
+ "display_name": "13ded0b5-acc3-4eb9-88a5-f39f90b9081e",
+ "user_data": {}
+ }
+ },
+ "ph_hvac": {
+ "type": "ModelPhHvacPropertiesAbridged"
}
- ],
- "units": "Meters",
- "version": "1.55.0",
- "identifier": "unnamed_a0c0724f",
- "display_name": "unnamed",
- "type": "Model",
- "tolerance": 0.001
+ }
}
\ 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 979dae5..e1fbfee 100644
--- a/tests/_test_reference_files_hbjson/Default_Room_Single_Zone.json
+++ b/tests/_test_reference_files_hbjson/Default_Room_Single_Zone.json
@@ -1,292 +1,578 @@
{
- "properties": {
- "type": "RoomProperties",
- "radiance": {
- "type": "RoomRadianceProperties"
+ "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",
+ "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
+ ]
+ },
+ "type": "Face3D"
+ },
+ "display_name": "Room_6_6c965e20..Face0",
+ "properties": {
+ "radiance": {
+ "type": "FaceRadianceProperties"
+ },
+ "type": "FaceProperties",
+ "energy": {
+ "type": "FaceEnergyProperties"
+ },
+ "ph": {
+ "type": "FacePhProperties",
+ "id_num": 0
+ },
+ "ph_hvac": {
+ "type": "FacePhHvacPropertiesAbridged"
+ }
+ }
},
- "energy": {
- "hvac": {
- "sensible_heat_recovery": 0.0,
- "latent_heat_recovery": 0.0,
- "heating_air_temperature": 50.0,
- "cooling_limit": {
- "type": "Autosize"
+ {
+ "boundary_condition": {
+ "type": "Outdoors",
+ "sun_exposure": true,
+ "wind_exposure": true,
+ "view_factor": {
+ "type": "Autocalculate"
+ }
+ },
+ "identifier": "Room_6_6c965e20..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
+ ]
},
- "identifier": "Room_2_eeecad34 Ideal Loads Air System",
- "demand_controlled_ventilation": false,
- "cooling_air_temperature": 13.0,
- "economizer_type": "DifferentialDryBulb",
- "type": "IdealAirSystem",
- "heating_limit": {
- "type": "Autosize"
+ "type": "Face3D"
+ },
+ "display_name": "Room_6_6c965e20..Face1",
+ "properties": {
+ "radiance": {
+ "type": "FaceRadianceProperties"
+ },
+ "type": "FaceProperties",
+ "energy": {
+ "type": "FaceEnergyProperties"
+ },
+ "ph": {
+ "type": "FacePhProperties",
+ "id_num": 0
+ },
+ "ph_hvac": {
+ "type": "FacePhHvacPropertiesAbridged"
+ }
+ }
+ },
+ {
+ "boundary_condition": {
+ "type": "Outdoors",
+ "sun_exposure": true,
+ "wind_exposure": true,
+ "view_factor": {
+ "type": "Autocalculate"
}
},
- "type": "RoomEnergyProperties",
- "program_type": {
- "ventilation": {
- "flow_per_area": 0.00030499999999999999,
- "identifier": "Generic Office Ventilation",
- "type": "Ventilation",
- "flow_per_person": 0.0023600000000000001
+ "identifier": "Room_6_6c965e20..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
+ ]
},
- "setpoint": {
- "cooling_schedule": {
- "winter_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn",
- "properties": {
- "type": "ScheduleRulesetProperties",
- "ph": {
- "operating_days_wk": 7.0,
- "id_num": 0,
- "operating_weeks_year": 52.142899999999997,
- "operating_periods": {
- "collection": []
- },
- "type": "ScheduleRulesetPhProperties"
- }
- },
- "day_schedules": [
- {
- "times": [
- [
- 0,
- 0
- ]
- ],
- "interpolate": false,
- "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default",
- "type": "ScheduleDay",
- "values": [
- 26.699999999999999
- ]
- },
- {
- "times": [
- [
- 0,
- 0
- ],
- [
- 5,
- 0
- ],
- [
- 6,
- 0
- ],
- [
- 7,
- 0
- ],
- [
- 22,
- 0
- ]
- ],
- "interpolate": false,
- "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn",
- "type": "ScheduleDay",
- "values": [
- 26.699999999999999,
- 25.699999999999999,
- 25.0,
- 24.0,
- 26.699999999999999
- ]
+ "type": "Face3D"
+ },
+ "display_name": "Room_6_6c965e20..Face2",
+ "properties": {
+ "radiance": {
+ "type": "FaceRadianceProperties"
+ },
+ "type": "FaceProperties",
+ "energy": {
+ "type": "FaceEnergyProperties"
+ },
+ "ph": {
+ "type": "FacePhProperties",
+ "id_num": 0
+ },
+ "ph_hvac": {
+ "type": "FacePhHvacPropertiesAbridged"
+ }
+ }
+ },
+ {
+ "boundary_condition": {
+ "type": "Outdoors",
+ "sun_exposure": true,
+ "wind_exposure": true,
+ "view_factor": {
+ "type": "Autocalculate"
+ }
+ },
+ "identifier": "Room_6_6c965e20..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
+ ],
+ "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"
+ },
+ "type": "FaceProperties",
+ "energy": {
+ "type": "FaceEnergyProperties"
+ },
+ "ph": {
+ "type": "FacePhProperties",
+ "id_num": 0
+ },
+ "ph_hvac": {
+ "type": "FacePhHvacPropertiesAbridged"
+ }
+ }
+ },
+ {
+ "boundary_condition": {
+ "type": "Ground"
+ },
+ "identifier": "Room_6_6c965e20..Face4",
+ "type": "Face",
+ "face_type": "Floor",
+ "geometry": {
+ "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
+ ]
+ ],
+ "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",
+ "properties": {
+ "radiance": {
+ "type": "FaceRadianceProperties"
+ },
+ "type": "FaceProperties",
+ "energy": {
+ "type": "FaceEnergyProperties"
+ },
+ "ph": {
+ "type": "FacePhProperties",
+ "id_num": 0
+ },
+ "ph_hvac": {
+ "type": "FacePhHvacPropertiesAbridged"
+ }
+ }
+ },
+ {
+ "boundary_condition": {
+ "type": "Outdoors",
+ "sun_exposure": true,
+ "wind_exposure": true,
+ "view_factor": {
+ "type": "Autocalculate"
+ }
+ },
+ "identifier": "Room_6_6c965e20..Face5",
+ "type": "Face",
+ "face_type": "RoofCeiling",
+ "geometry": {
+ "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
+ ]
+ ],
+ "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
+ },
+ "ph_hvac": {
+ "type": "FacePhHvacPropertiesAbridged"
+ }
+ }
+ }
+ ],
+ "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
},
{
- "times": [
- [
- 0,
- 0
- ]
+ "apply_wednesday": false,
+ "apply_saturday": true,
+ "type": "ScheduleRuleAbridged",
+ "apply_thursday": false,
+ "start_date": [
+ 1,
+ 1
],
- "interpolate": false,
- "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn",
- "type": "ScheduleDay",
- "values": [
- 26.699999999999999
- ]
- },
+ "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
],
- [
- 5,
- 0
- ],
[
6,
0
],
[
- 7,
- 0
- ],
- [
- 22,
+ 18,
0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy",
- "type": "ScheduleDay",
"values": [
- 26.699999999999999,
- 25.600000000000001,
- 25.0,
- 24.0,
- 26.699999999999999
- ]
+ 0.0,
+ 0.050000000000000003,
+ 0.0
+ ],
+ "interpolate": false
},
{
+ "identifier": "OfficeMedium BLDG_OCC_SCH_SmrDsn",
+ "type": "ScheduleDay",
"times": [
[
0,
0
],
- [
- 5,
- 0
- ],
[
6,
0
],
[
- 7,
- 0
- ],
- [
- 17,
+ 22,
0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat",
- "type": "ScheduleDay",
"values": [
- 26.699999999999999,
- 25.699999999999999,
- 25.0,
- 24.0,
- 26.699999999999999
- ]
- }
- ],
- "default_day_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default",
- "identifier": "Generic Office Cooling",
- "holiday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default",
- "summer_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn",
- "type": "ScheduleRuleset",
- "schedule_rules": [
- {
- "apply_monday": true,
- "apply_sunday": false,
- "apply_wednesday": true,
- "apply_thursday": true,
- "end_date": [
- 12,
- 31
- ],
- "start_date": [
- 1,
- 1
- ],
- "apply_tuesday": true,
- "apply_friday": true,
- "apply_saturday": false,
- "type": "ScheduleRuleAbridged",
- "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy"
- },
- {
- "apply_monday": false,
- "apply_sunday": false,
- "apply_wednesday": false,
- "apply_thursday": false,
- "end_date": [
- 12,
- 31
- ],
- "start_date": [
- 1,
- 1
+ 0.0,
+ 1.0,
+ 0.050000000000000003
],
- "apply_tuesday": false,
- "apply_friday": false,
- "apply_saturday": true,
- "type": "ScheduleRuleAbridged",
- "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat"
- }
- ],
- "schedule_type_limit": {
- "lower_limit": -273.14999999999998,
- "upper_limit": {
- "type": "NoLimit"
+ "interpolate": false
},
- "identifier": "Temperature",
- "unit_type": "Temperature",
- "numeric_type": "Continuous",
- "type": "ScheduleTypeLimit"
- }
- },
- "identifier": "Generic Office Setpoints",
- "type": "Setpoint",
- "heating_schedule": {
- "winter_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn",
- "properties": {
- "type": "ScheduleRulesetProperties",
- "ph": {
- "operating_days_wk": 7.0,
- "id_num": 0,
- "operating_weeks_year": 52.142899999999997,
- "operating_periods": {
- "collection": []
- },
- "type": "ScheduleRulesetPhProperties"
- }
- },
- "day_schedules": [
{
- "times": [
- [
- 0,
- 0
- ]
- ],
- "interpolate": false,
- "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default",
+ "identifier": "OfficeMedium BLDG_OCC_SCH_WntrDsn",
"type": "ScheduleDay",
- "values": [
- 15.600000000000000
- ]
- },
- {
"times": [
[
0,
0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn",
- "type": "ScheduleDay",
"values": [
- 15.600000000000000
- ]
+ 0.0
+ ],
+ "interpolate": false
},
{
+ "identifier": "OfficeMedium BLDG_OCC_SCH_Wkdy",
+ "type": "ScheduleDay",
"times": [
[
0,
0
],
- [
- 5,
- 0
- ],
[
6,
0
@@ -296,37 +582,23 @@
0
],
[
- 22,
+ 8,
0
- ]
- ],
- "interpolate": false,
- "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn",
- "type": "ScheduleDay",
- "values": [
- 15.600000000000000,
- 17.600000000000001,
- 19.600000000000001,
- 21.0,
- 15.600000000000000
- ]
- },
- {
- "times": [
+ ],
[
- 0,
+ 12,
0
],
[
- 5,
+ 13,
0
],
[
- 6,
+ 17,
0
],
[
- 7,
+ 18,
0
],
[
@@ -334,282 +606,273 @@
0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy",
- "type": "ScheduleDay",
"values": [
- 15.600000000000000,
- 17.800000000000001,
- 20.0,
- 21.0,
- 15.600000000000000
- ]
+ 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_Sat",
+ "type": "ScheduleDay",
"times": [
[
0,
0
],
[
- 5,
+ 6,
0
],
[
- 6,
+ 8,
0
],
[
- 7,
+ 12,
0
],
[
17,
0
+ ],
+ [
+ 19,
+ 0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat",
+ "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"
+ }
+ },
+ "activity_schedule": {
+ "default_day_schedule": "Seated Adult Activity_Day Schedule",
+ "schedule_type_limit": {
+ "identifier": "Activity Level",
+ "type": "ScheduleTypeLimit",
+ "upper_limit": {
+ "type": "NoLimit"
+ },
+ "unit_type": "ActivityLevel",
+ "lower_limit": 0.0,
+ "numeric_type": "Continuous"
+ },
+ "identifier": "Seated Adult Activity",
+ "type": "ScheduleRuleset",
+ "day_schedules": [
+ {
+ "identifier": "Seated Adult Activity_Day Schedule",
"type": "ScheduleDay",
+ "times": [
+ [
+ 0,
+ 0
+ ]
+ ],
"values": [
- 15.600000000000000,
- 17.800000000000001,
- 20.0,
- 21.0,
- 15.600000000000000
- ]
+ 120.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"
+ }
+ },
+ "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": "ProgramType",
+ "setpoint": {
+ "heating_schedule": {
"default_day_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default",
- "identifier": "Generic Office Heating",
- "holiday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default",
- "summer_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn",
- "type": "ScheduleRuleset",
+ "winter_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn",
+ "schedule_type_limit": {
+ "identifier": "Temperature",
+ "type": "ScheduleTypeLimit",
+ "upper_limit": {
+ "type": "NoLimit"
+ },
+ "unit_type": "Temperature",
+ "lower_limit": -273.14999999999998,
+ "numeric_type": "Continuous"
+ },
"schedule_rules": [
{
- "apply_monday": true,
- "apply_sunday": false,
"apply_wednesday": true,
+ "apply_saturday": false,
+ "type": "ScheduleRuleAbridged",
"apply_thursday": true,
- "end_date": [
- 12,
- 31
- ],
"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_saturday": false,
- "type": "ScheduleRuleAbridged",
- "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy"
+ "apply_sunday": false
},
{
- "apply_monday": false,
- "apply_sunday": false,
"apply_wednesday": false,
+ "apply_saturday": true,
+ "type": "ScheduleRuleAbridged",
"apply_thursday": false,
- "end_date": [
- 12,
- 31
- ],
"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_saturday": true,
- "type": "ScheduleRuleAbridged",
- "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat"
+ "apply_sunday": false
}
],
- "schedule_type_limit": {
- "lower_limit": -273.14999999999998,
- "upper_limit": {
- "type": "NoLimit"
- },
- "identifier": "Temperature",
- "unit_type": "Temperature",
- "numeric_type": "Continuous",
- "type": "ScheduleTypeLimit"
- }
- }
- },
- "people": {
- "people_per_area": 0.056500000000000002,
- "latent_fraction": {
- "type": "Autocalculate"
- },
- "radiant_fraction": 0.29999999999999999,
- "properties": {
- "type": "PeopleProperties",
- "ph": {
- "dwellings": {
- "num_dwellings": 0,
- "identifier": "aadff7fd-21de-4274-9396-713b489df06d"
- },
- "id_num": 0,
- "number_people": 0.0,
- "type": "PeoplePhProperties",
- "number_bedrooms": 0
- }
- },
- "activity_schedule": {
- "properties": {
- "type": "ScheduleRulesetProperties",
- "ph": {
- "operating_days_wk": 7.0,
- "id_num": 0,
- "operating_weeks_year": 52.142899999999997,
- "operating_periods": {
- "collection": []
- },
- "type": "ScheduleRulesetPhProperties"
- }
- },
+ "identifier": "Generic Office Heating",
+ "type": "ScheduleRuleset",
"day_schedules": [
{
+ "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default",
+ "type": "ScheduleDay",
"times": [
[
0,
0
]
],
- "interpolate": false,
- "identifier": "Seated Adult Activity_Day Schedule",
- "type": "ScheduleDay",
"values": [
- 120.0
- ]
- }
- ],
- "default_day_schedule": "Seated Adult Activity_Day Schedule",
- "identifier": "Seated Adult Activity",
- "type": "ScheduleRuleset",
- "schedule_type_limit": {
- "lower_limit": 0.0,
- "upper_limit": {
- "type": "NoLimit"
+ 15.600000000000000
+ ],
+ "interpolate": false
},
- "identifier": "Activity Level",
- "unit_type": "ActivityLevel",
- "numeric_type": "Continuous",
- "type": "ScheduleTypeLimit"
- }
- },
- "identifier": "Generic Office People",
- "type": "People",
- "occupancy_schedule": {
- "winter_designday_schedule": "OfficeMedium BLDG_OCC_SCH_WntrDsn",
- "properties": {
- "type": "ScheduleRulesetProperties",
- "ph": {
- "operating_days_wk": 7.0,
- "id_num": 0,
- "operating_weeks_year": 52.142899999999997,
- "operating_periods": {
- "collection": []
- },
- "type": "ScheduleRulesetPhProperties"
- }
- },
- "day_schedules": [
{
+ "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn",
+ "type": "ScheduleDay",
"times": [
[
0,
0
- ],
- [
- 6,
- 0
- ],
- [
- 18,
- 0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_OCC_SCH_Default",
- "type": "ScheduleDay",
"values": [
- 0.0,
- 0.050000000000000003,
- 0.0
- ]
+ 15.600000000000000
+ ],
+ "interpolate": false
},
{
+ "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn",
+ "type": "ScheduleDay",
"times": [
[
0,
0
],
+ [
+ 5,
+ 0
+ ],
[
6,
0
],
[
- 22,
+ 7,
0
- ]
- ],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_OCC_SCH_SmrDsn",
- "type": "ScheduleDay",
- "values": [
- 0.0,
- 1.0,
- 0.050000000000000003
- ]
- },
- {
- "times": [
+ ],
[
- 0,
+ 22,
0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_OCC_SCH_WntrDsn",
- "type": "ScheduleDay",
"values": [
- 0.0
- ]
+ 15.600000000000000,
+ 17.600000000000001,
+ 19.600000000000001,
+ 21.0,
+ 15.600000000000000
+ ],
+ "interpolate": false
},
{
+ "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy",
+ "type": "ScheduleDay",
"times": [
[
0,
0
],
[
- 6,
- 0
- ],
- [
- 7,
- 0
- ],
- [
- 8,
- 0
- ],
- [
- 12,
- 0
- ],
- [
- 13,
+ 5,
0
],
[
- 17,
+ 6,
0
],
[
- 18,
+ 7,
0
],
[
@@ -617,239 +880,221 @@
0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_OCC_SCH_Wkdy",
- "type": "ScheduleDay",
"values": [
- 0.0,
- 0.10000000000000001,
- 0.20000000000000001,
- 0.94999999999999996,
- 0.5,
- 0.94999999999999996,
- 0.29999999999999999,
- 0.10000000000000001,
- 0.050000000000000003
- ]
+ 15.600000000000000,
+ 17.800000000000001,
+ 20.0,
+ 21.0,
+ 15.600000000000000
+ ],
+ "interpolate": false
},
{
+ "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat",
+ "type": "ScheduleDay",
"times": [
[
0,
0
],
[
- 6,
+ 5,
0
],
[
- 8,
+ 6,
0
],
[
- 12,
+ 7,
0
],
[
17,
0
- ],
- [
- 19,
- 0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_OCC_SCH_Sat",
- "type": "ScheduleDay",
"values": [
- 0.0,
- 0.10000000000000001,
- 0.29999999999999999,
- 0.10000000000000001,
- 0.050000000000000003,
- 0.0
- ]
+ 15.600000000000000,
+ 17.800000000000001,
+ 20.0,
+ 21.0,
+ 15.600000000000000
+ ],
+ "interpolate": false
}
],
- "default_day_schedule": "OfficeMedium BLDG_OCC_SCH_Default",
- "identifier": "Generic Office Occupancy",
- "holiday_schedule": "OfficeMedium BLDG_OCC_SCH_Default",
- "summer_designday_schedule": "OfficeMedium BLDG_OCC_SCH_SmrDsn",
- "type": "ScheduleRuleset",
+ "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"
+ }
+ },
+ "type": "Setpoint",
+ "cooling_schedule": {
+ "default_day_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default",
+ "winter_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn",
+ "schedule_type_limit": {
+ "identifier": "Temperature",
+ "type": "ScheduleTypeLimit",
+ "upper_limit": {
+ "type": "NoLimit"
+ },
+ "unit_type": "Temperature",
+ "lower_limit": -273.14999999999998,
+ "numeric_type": "Continuous"
+ },
"schedule_rules": [
{
- "apply_monday": true,
- "apply_sunday": false,
"apply_wednesday": true,
+ "apply_saturday": false,
+ "type": "ScheduleRuleAbridged",
"apply_thursday": true,
- "end_date": [
- 12,
- 31
- ],
"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_saturday": false,
- "type": "ScheduleRuleAbridged",
- "schedule_day": "OfficeMedium BLDG_OCC_SCH_Wkdy"
+ "apply_sunday": false
},
{
- "apply_monday": false,
- "apply_sunday": false,
"apply_wednesday": false,
+ "apply_saturday": true,
+ "type": "ScheduleRuleAbridged",
"apply_thursday": false,
- "end_date": [
- 12,
- 31
- ],
"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_saturday": true,
- "type": "ScheduleRuleAbridged",
- "schedule_day": "OfficeMedium BLDG_OCC_SCH_Sat"
+ "apply_sunday": false
}
],
- "schedule_type_limit": {
- "lower_limit": 0.0,
- "upper_limit": 1.0,
- "identifier": "Fractional",
- "unit_type": "Dimensionless",
- "numeric_type": "Continuous",
- "type": "ScheduleTypeLimit"
- }
- }
- },
- "identifier": "Generic Office Program",
- "lighting": {
- "radiant_fraction": 0.69999999999999996,
- "watts_per_area": 10.550000000000001,
- "properties": {
- "type": "LightingProperties",
- "ph": {
- "id_num": 0,
- "target_lux_height": 0.80000000000000004,
- "type": "LightingPhProperties",
- "target_lux": 300
- }
- },
- "identifier": "Generic Office Lighting",
- "return_air_fraction": 0.0,
- "visible_fraction": 0.20000000000000001,
- "schedule": {
- "winter_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn",
- "properties": {
- "type": "ScheduleRulesetProperties",
- "ph": {
- "operating_days_wk": 7.0,
- "id_num": 0,
- "operating_weeks_year": 52.142899999999997,
- "operating_periods": {
- "collection": []
- },
- "type": "ScheduleRulesetPhProperties"
- }
- },
+ "identifier": "Generic Office Cooling",
+ "type": "ScheduleRuleset",
"day_schedules": [
{
+ "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default",
+ "type": "ScheduleDay",
"times": [
[
0,
0
- ],
- [
- 6,
- 0
- ],
- [
- 18,
- 0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun",
- "type": "ScheduleDay",
"values": [
- 0.050000000000000003,
- 0.04311628,
- 0.050000000000000003
- ]
+ 26.699999999999999
+ ],
+ "interpolate": false
},
{
+ "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn",
+ "type": "ScheduleDay",
"times": [
[
0,
0
+ ],
+ [
+ 5,
+ 0
+ ],
+ [
+ 6,
+ 0
+ ],
+ [
+ 7,
+ 0
+ ],
+ [
+ 22,
+ 0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn",
- "type": "ScheduleDay",
"values": [
- 1.0
- ]
+ 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
]
],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn",
- "type": "ScheduleDay",
"values": [
- 0.0
- ]
+ 26.699999999999999
+ ],
+ "interpolate": false
},
{
+ "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy",
+ "type": "ScheduleDay",
"times": [
[
0,
0
],
[
- 6,
- 0
- ],
- [
- 8,
+ 5,
0
],
[
- 12,
+ 6,
0
],
[
- 17,
+ 7,
0
],
[
- 19,
+ 22,
0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat",
- "type": "ScheduleDay",
"values": [
- 0.050000000000000003,
- 0.08623256,
- 0.25869767999999999,
- 0.12934883999999999,
- 0.04311628,
- 0.050000000000000003
- ]
+ 26.699999999999999,
+ 25.600000000000001,
+ 25.0,
+ 24.0,
+ 26.699999999999999
+ ],
+ "interpolate": false
},
{
+ "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat",
+ "type": "ScheduleDay",
"times": [
[
0,
@@ -867,138 +1112,100 @@
7,
0
],
- [
- 8,
- 0
- ],
[
17,
0
- ],
- [
- 18,
- 0
- ],
- [
- 20,
- 0
- ],
- [
- 22,
- 0
- ],
- [
- 23,
- 0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy",
- "type": "ScheduleDay",
"values": [
- 0.050000000000000003,
- 0.10000000000000001,
- 0.08623256,
- 0.25869767999999999,
- 0.77609304000000001,
- 0.43116280000000001,
- 0.25869767999999999,
- 0.17246512,
- 0.08623256,
- 0.04311628
- ]
+ 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"
+ }
+ },
+ "identifier": "Generic Office Setpoints"
+ },
+ "lighting": {
+ "visible_fraction": 0.20000000000000001,
+ "identifier": "Generic Office Lighting",
+ "type": "Lighting",
+ "radiant_fraction": 0.69999999999999996,
+ "schedule": {
"default_day_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun",
- "identifier": "Generic Office Lighting",
- "holiday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat",
- "summer_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn",
- "type": "ScheduleRuleset",
+ "winter_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_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_monday": true,
- "apply_sunday": false,
"apply_wednesday": true,
+ "apply_saturday": false,
+ "type": "ScheduleRuleAbridged",
"apply_thursday": true,
- "end_date": [
- 12,
- 31
- ],
"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_saturday": false,
- "type": "ScheduleRuleAbridged",
- "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy"
+ "apply_sunday": false
},
{
- "apply_monday": false,
- "apply_sunday": false,
"apply_wednesday": false,
+ "apply_saturday": true,
+ "type": "ScheduleRuleAbridged",
"apply_thursday": false,
- "end_date": [
- 12,
- 31
- ],
"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_saturday": true,
- "type": "ScheduleRuleAbridged",
- "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat"
+ "apply_sunday": false
}
],
- "schedule_type_limit": {
- "lower_limit": 0.0,
- "upper_limit": 1.0,
- "identifier": "Fractional",
- "unit_type": "Dimensionless",
- "numeric_type": "Continuous",
- "type": "ScheduleTypeLimit"
- }
- },
- "type": "Lighting"
- },
- "infiltration": {
- "flow_per_exterior_area": 0.00022660000000000001,
- "identifier": "Generic Office Infiltration",
- "type": "Infiltration",
- "schedule": {
- "winter_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn",
- "properties": {
- "type": "ScheduleRulesetProperties",
- "ph": {
- "operating_days_wk": 7.0,
- "id_num": 0,
- "operating_weeks_year": 52.142899999999997,
- "operating_periods": {
- "collection": []
- },
- "type": "ScheduleRulesetPhProperties"
- }
- },
+ "identifier": "Generic Office Lighting",
+ "type": "ScheduleRuleset",
"day_schedules": [
{
- "times": [
- [
- 0,
- 0
- ]
- ],
- "interpolate": false,
- "identifier": "OfficeMedium INFIL_SCH_PNNL_Default",
+ "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun",
"type": "ScheduleDay",
- "values": [
- 1.0
- ]
- },
- {
"times": [
[
0,
@@ -1009,44 +1216,48 @@
0
],
[
- 22,
+ 18,
0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn",
- "type": "ScheduleDay",
"values": [
- 1.0,
- 0.25,
- 1.0
- ]
+ 0.050000000000000003,
+ 0.04311628,
+ 0.050000000000000003
+ ],
+ "interpolate": false
},
{
+ "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn",
+ "type": "ScheduleDay",
"times": [
[
0,
0
- ],
- [
- 6,
- 0
- ],
+ ]
+ ],
+ "values": [
+ 1.0
+ ],
+ "interpolate": false
+ },
+ {
+ "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn",
+ "type": "ScheduleDay",
+ "times": [
[
- 18,
+ 0,
0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn",
- "type": "ScheduleDay",
"values": [
- 1.0,
- 0.25,
- 1.0
- ]
+ 0.0
+ ],
+ "interpolate": false
},
{
+ "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat",
+ "type": "ScheduleDay",
"times": [
[
0,
@@ -1057,130 +1268,186 @@
0
],
[
- 22,
+ 8,
+ 0
+ ],
+ [
+ 12,
+ 0
+ ],
+ [
+ 17,
+ 0
+ ],
+ [
+ 19,
0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy",
- "type": "ScheduleDay",
"values": [
- 1.0,
- 0.25,
- 1.0
- ]
+ 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
]
],
- "interpolate": false,
- "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat",
- "type": "ScheduleDay",
"values": [
- 1.0,
- 0.25,
- 1.0
- ]
+ 0.050000000000000003,
+ 0.10000000000000001,
+ 0.08623256,
+ 0.25869767999999999,
+ 0.77609304000000001,
+ 0.43116280000000001,
+ 0.25869767999999999,
+ 0.17246512,
+ 0.08623256,
+ 0.04311628
+ ],
+ "interpolate": false
}
],
- "default_day_schedule": "OfficeMedium INFIL_SCH_PNNL_Default",
- "identifier": "Generic Office Infiltration",
- "holiday_schedule": "OfficeMedium INFIL_SCH_PNNL_Default",
- "summer_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn",
- "type": "ScheduleRuleset",
+ "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"
+ }
+ },
+ "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",
+ "schedule_type_limit": {
+ "identifier": "Fractional",
+ "type": "ScheduleTypeLimit",
+ "upper_limit": 1.0,
+ "unit_type": "Dimensionless",
+ "lower_limit": 0.0,
+ "numeric_type": "Continuous"
+ },
"schedule_rules": [
{
- "apply_monday": true,
- "apply_sunday": false,
"apply_wednesday": true,
+ "apply_saturday": false,
+ "type": "ScheduleRuleAbridged",
"apply_thursday": true,
- "end_date": [
- 12,
- 31
- ],
"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_saturday": false,
- "type": "ScheduleRuleAbridged",
- "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Wkdy"
+ "apply_sunday": false
},
{
- "apply_monday": false,
- "apply_sunday": false,
"apply_wednesday": false,
+ "apply_saturday": true,
+ "type": "ScheduleRuleAbridged",
"apply_thursday": false,
- "end_date": [
- 12,
- 31
- ],
"start_date": [
1,
1
],
- "apply_tuesday": false,
- "apply_friday": false,
- "apply_saturday": true,
- "type": "ScheduleRuleAbridged",
- "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Sat"
- }
- ],
- "schedule_type_limit": {
- "lower_limit": 0.0,
- "upper_limit": 1.0,
- "identifier": "Fractional",
- "unit_type": "Dimensionless",
- "numeric_type": "Continuous",
- "type": "ScheduleTypeLimit"
- }
- }
- },
- "type": "ProgramType",
- "electric_equipment": {
- "latent_fraction": 0.0,
- "radiant_fraction": 0.5,
- "watts_per_area": 10.330000000000000,
- "properties": {
- "type": "ElectricEquipmentProperties",
- "ph": {
- "type": "ElectricEquipmentPhProperties",
- "equipment_collection": {
- "equipment_set": {}
- }
- }
- },
- "identifier": "Generic Office Equipment",
- "schedule": {
- "winter_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn",
- "properties": {
- "type": "ScheduleRulesetProperties",
- "ph": {
- "operating_days_wk": 7.0,
- "id_num": 0,
- "operating_weeks_year": 52.142899999999997,
- "operating_periods": {
- "collection": []
- },
- "type": "ScheduleRulesetPhProperties"
+ "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": "ScheduleRuleset",
"day_schedules": [
{
+ "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun",
+ "type": "ScheduleDay",
"times": [
[
0,
@@ -1195,44 +1462,44 @@
0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun",
- "type": "ScheduleDay",
"values": [
0.2307553806,
0.28810717499999999,
0.2307553806
- ]
+ ],
+ "interpolate": false
},
{
+ "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn",
+ "type": "ScheduleDay",
"times": [
[
0,
0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn",
- "type": "ScheduleDay",
"values": [
1.0
- ]
+ ],
+ "interpolate": false
},
{
+ "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn",
+ "type": "ScheduleDay",
"times": [
[
0,
0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn",
- "type": "ScheduleDay",
"values": [
0.0
- ]
+ ],
+ "interpolate": false
},
{
+ "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat",
+ "type": "ScheduleDay",
"times": [
[
0,
@@ -1259,9 +1526,6 @@
0
]
],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat",
- "type": "ScheduleDay",
"values": [
0.2307553806,
0.38123479599999999,
@@ -1269,913 +1533,649 @@
0.33358044650000002,
0.28592609699999999,
0.2307553806
- ]
- },
- {
- "times": [
- [
- 0,
- 0
- ],
- [
- 6,
- 0
- ],
- [
- 8,
- 0
- ],
- [
- 12,
- 0
- ],
- [
- 13,
- 0
- ],
- [
- 17,
- 0
- ],
- [
- 18,
- 0
- ]
- ],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy",
- "type": "ScheduleDay",
- "values": [
- 0.30767384079999999,
- 0.38123479599999999,
- 0.85777829100000003,
- 0.76246959199999997,
- 0.85777829100000003,
- 0.47654349499999998,
- 0.38123479599999999
- ]
- }
- ],
- "default_day_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun",
- "identifier": "Generic Office Equipment",
- "holiday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat",
- "summer_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn",
- "type": "ScheduleRuleset",
- "schedule_rules": [
- {
- "apply_monday": true,
- "apply_sunday": false,
- "apply_wednesday": true,
- "apply_thursday": true,
- "end_date": [
- 12,
- 31
- ],
- "start_date": [
- 1,
- 1
- ],
- "apply_tuesday": true,
- "apply_friday": true,
- "apply_saturday": false,
- "type": "ScheduleRuleAbridged",
- "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy"
- },
- {
- "apply_monday": false,
- "apply_sunday": false,
- "apply_wednesday": false,
- "apply_thursday": false,
- "end_date": [
- 12,
- 31
- ],
- "start_date": [
- 1,
- 1
],
- "apply_tuesday": false,
- "apply_friday": false,
- "apply_saturday": true,
- "type": "ScheduleRuleAbridged",
- "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat"
- }
- ],
- "schedule_type_limit": {
- "lower_limit": 0.0,
- "upper_limit": 1.0,
- "identifier": "Fractional",
- "unit_type": "Dimensionless",
- "numeric_type": "Continuous",
- "type": "ScheduleTypeLimit"
- }
- },
- "lost_fraction": 0.0,
- "type": "ElectricEquipment"
- }
- }
- },
- "ph": {
- "id_num": 0,
- "ph_bldg_segment": {
- "set_points": {
- "summer": 25.0,
- "identifier": "c7f5eacc-c8ed-4d36-9cec-c281f101bf6a",
- "winter": 20.0,
- "user_data": {},
- "display_name": "c7f5eacc-c8ed-4d36-9cec-c281f101bf6a"
- },
- "source_energy_factors": {
- "factors": []
- },
- "mech_room_temp": 20.0,
- "summer_hrv_bypass_mode": {
- "value": "4-ALWAYS"
- },
- "phi_certification": {
- "attributes": {
- "building_category_type": "1-RESIDENTIAL BUILDING",
- "occupancy_type": "1-STANDARD (ONLY FOR RESIDENTIAL BUILDINGS)",
- "tfa_override": null,
- "retrofit_type": "1-NEW BUILDING",
- "building_use_type": "10-DWELLING",
- "certification_type": "1-PASSIVE HOUSE",
- "enerphit_type": "2-ENERGY DEMAND METHOD",
- "ihg_type": "2-STANDARD",
- "phpp_version": 9,
- "primary_energy_type": "2-PER (RENEWABLE)",
- "certification_class": "1-CLASSIC"
- },
- "identifier": "f3a1d602-6b89-4c1a-9a61-035f949d55bb",
- "user_data": {},
- "display_name": "f3a1d602-6b89-4c1a-9a61-035f949d55bb",
- "phpp_version": 9
- },
- "num_dwelling_units": 1,
- "name": "Unnamed_Bldg_Segment",
- "identifier": "a6119127-3631-47e6-97ec-1f2cff172c28",
- "num_floor_levels": 1,
- "user_data": {},
- "phius_certification": {
- "building_category_type": {
- "value": "1-RESIDENTIAL BUILDING"
- },
- "PHIUS2021_heating_demand": 15.0,
- "certification_program": {
- "value": "7-PHIUS 2021 CORE"
- },
- "building_use_type": {
- "value": "1-RESIDENTIAL"
- },
- "building_status": {
- "value": "1-IN_PLANNING"
- },
- "int_gains_evap_per_person": 15,
- "icfa_override": null,
- "building_type": {
- "value": "1-NEW_CONSTRUCTION"
- },
- "PHIUS2021_cooling_load": 10.0,
- "int_gains_num_toilets": 1,
- "int_gains_toilet_room_util_pat": null,
- "identifier": "8b74d5ee-284a-4f56-8fcf-d1cecd9a1538",
- "user_data": {},
- "PHIUS2021_cooling_demand": 15.0,
- "int_gains_use_school_defaults": false,
- "display_name": "8b74d5ee-284a-4f56-8fcf-d1cecd9a1538",
- "PHIUS2021_heating_load": 10.0,
- "int_gains_dhw_marginal_perf_ratio": null,
- "localization_selection_type": 2,
- "int_gains_flush_heat_loss": true
- },
- "non_combustible_materials": false,
- "display_name": "Unnamed_Bldg_Segment",
- "wind_exposure_type": {
- "value": "1-SEVERAL_SIDES_EXPOSED_NO_SCREENING"
- },
- "site": {
- "location": {
- "longitude": -73.799999999999997,
- "latitude": 40.600000000000001,
- "identifier": "a3908ed4-4cb6-4054-a852-3946cc3053e3",
- "climate_zone": 1,
- "user_data": {},
- "site_elevation": null,
- "display_name": "a3908ed4-4cb6-4054-a852-3946cc3053e3",
- "hours_from_UTC": -4
- },
- "climate": {
- "peak_loads": {
- "heat_load_2": {
- "rad_north": 0.0,
- "temp": 0.0,
- "rad_east": 0.0,
- "rad_global": 0.0,
- "ground_temp": null,
- "identifier": "0a410767-0df9-45e8-8ff8-78c46a5dea7b",
- "rad_west": 0.0,
- "user_data": {},
- "rad_south": 0.0,
- "sky_temp": null,
- "display_name": "0a410767-0df9-45e8-8ff8-78c46a5dea7b",
- "dewpoint": null
- },
- "cooling_load_1": {
- "rad_north": 0.0,
- "temp": 0.0,
- "rad_east": 0.0,
- "rad_global": 0.0,
- "ground_temp": null,
- "identifier": "b18e4cba-5743-4156-a9ab-8a59766b9c88",
- "rad_west": 0.0,
- "user_data": {},
- "rad_south": 0.0,
- "sky_temp": null,
- "display_name": "b18e4cba-5743-4156-a9ab-8a59766b9c88",
- "dewpoint": null
- },
- "cooling_load_2": {
- "rad_north": 0.0,
- "temp": 0.0,
- "rad_east": 0.0,
- "rad_global": 0.0,
- "ground_temp": null,
- "identifier": "9b68fa92-3988-4292-ab8c-131dbc842c7f",
- "rad_west": 0.0,
- "user_data": {},
- "rad_south": 0.0,
- "sky_temp": null,
- "display_name": "9b68fa92-3988-4292-ab8c-131dbc842c7f",
- "dewpoint": null
- },
- "heat_load_1": {
- "rad_north": 0.0,
- "temp": 0.0,
- "rad_east": 0.0,
- "rad_global": 0.0,
- "ground_temp": null,
- "identifier": "4bcae8a4-571d-48fe-8982-01679a573105",
- "rad_west": 0.0,
- "user_data": {},
- "rad_south": 0.0,
- "sky_temp": null,
- "display_name": "4bcae8a4-571d-48fe-8982-01679a573105",
- "dewpoint": null
- },
- "identifier": "6b05142c-5158-4e11-a354-6bca936e5043",
- "user_data": {},
- "display_name": "6b05142c-5158-4e11-a354-6bca936e5043"
- },
- "station_elevation": 0.0,
- "average_wind_speed": 4.0,
- "identifier": "d1f1057e-0f41-4c05-b961-4e63f10a5bbc",
- "user_data": {},
- "monthly_radiation": {
- "west": {
- "march": 0.0,
- "june": 0.0,
- "september": 0.0,
- "april": 0.0,
- "july": 0.0,
- "december": 0.0,
- "november": 0.0,
- "may": 0.0,
- "february": 0.0,
- "identifier": "4fd170c7-bb90-4849-a9d9-2b14d7d6f5b8",
- "user_data": {},
- "august": 0.0,
- "october": 0.0,
- "display_name": "4fd170c7-bb90-4849-a9d9-2b14d7d6f5b8",
- "january": 0.0
+ "interpolate": false
},
- "south": {
- "march": 0.0,
- "june": 0.0,
- "september": 0.0,
- "april": 0.0,
- "july": 0.0,
- "december": 0.0,
- "november": 0.0,
- "may": 0.0,
- "february": 0.0,
- "identifier": "0fda5c4e-abd5-40f7-9c49-77461b1d2fa4",
- "user_data": {},
- "august": 0.0,
- "october": 0.0,
- "display_name": "0fda5c4e-abd5-40f7-9c49-77461b1d2fa4",
- "january": 0.0
+ {
+ "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
},
- "east": {
- "march": 0.0,
- "june": 0.0,
- "september": 0.0,
- "april": 0.0,
- "july": 0.0,
- "december": 0.0,
- "november": 0.0,
- "may": 0.0,
- "february": 0.0,
- "identifier": "f1ee0198-efff-4613-bf2b-f00aad5368bf",
- "user_data": {},
- "august": 0.0,
- "october": 0.0,
- "display_name": "f1ee0198-efff-4613-bf2b-f00aad5368bf",
- "january": 0.0
+ "type": "ScheduleRulesetProperties"
+ }
+ },
+ "lost_fraction": 0.0,
+ "latent_fraction": 0.0,
+ "watts_per_area": 10.330000000000000,
+ "properties": {
+ "ph": {
+ "equipment_collection": {
+ "equipment_set": {}
},
- "identifier": "3c9c008e-1dd0-4d92-a8cc-a69f7baf008b",
- "user_data": {},
- "display_name": "3c9c008e-1dd0-4d92-a8cc-a69f7baf008b",
- "glob": {
- "march": 0.0,
- "june": 0.0,
- "september": 0.0,
- "april": 0.0,
- "july": 0.0,
- "december": 0.0,
- "november": 0.0,
- "may": 0.0,
- "february": 0.0,
- "identifier": "bf239401-4e84-4a9b-adfa-d4f55adcd685",
- "user_data": {},
- "august": 0.0,
- "october": 0.0,
- "display_name": "bf239401-4e84-4a9b-adfa-d4f55adcd685",
- "january": 0.0
+ "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",
+ "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 INFIL_SCH_PNNL_Wkdy",
+ "apply_friday": true,
+ "apply_sunday": false
},
- "north": {
- "march": 0.0,
- "june": 0.0,
- "september": 0.0,
- "april": 0.0,
- "july": 0.0,
- "december": 0.0,
- "november": 0.0,
- "may": 0.0,
- "february": 0.0,
- "identifier": "6a9b12e5-f474-4333-850e-1bde9aa3e9e8",
- "user_data": {},
- "august": 0.0,
- "october": 0.0,
- "display_name": "6a9b12e5-f474-4333-850e-1bde9aa3e9e8",
- "january": 0.0
+ {
+ "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
}
- },
- "display_name": "New York",
- "summer_daily_temperature_swing": 8.0,
- "monthly_temps": {
- "dewpoints": {
- "march": 0.0,
- "june": 0.0,
- "september": 0.0,
- "april": 0.0,
- "july": 0.0,
- "december": 0.0,
- "november": 0.0,
- "may": 0.0,
- "february": 0.0,
- "identifier": "ae751e90-1128-4bdc-b971-e28491452ed3",
- "user_data": {},
- "august": 0.0,
- "october": 0.0,
- "display_name": "ae751e90-1128-4bdc-b971-e28491452ed3",
- "january": 0.0
+ ],
+ "identifier": "Generic Office Infiltration",
+ "type": "ScheduleRuleset",
+ "day_schedules": [
+ {
+ "identifier": "OfficeMedium INFIL_SCH_PNNL_Default",
+ "type": "ScheduleDay",
+ "times": [
+ [
+ 0,
+ 0
+ ]
+ ],
+ "values": [
+ 1.0
+ ],
+ "interpolate": false
},
- "ground_temps": {
- "march": 0.0,
- "june": 0.0,
- "september": 0.0,
- "april": 0.0,
- "july": 0.0,
- "december": 0.0,
- "november": 0.0,
- "may": 0.0,
- "february": 0.0,
- "identifier": "e01ce652-3d0d-436f-95a7-9e6b8108bbd5",
- "user_data": {},
- "august": 0.0,
- "october": 0.0,
- "display_name": "e01ce652-3d0d-436f-95a7-9e6b8108bbd5",
- "january": 0.0
+ {
+ "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
},
- "sky_temps": {
- "march": 0.0,
- "june": 0.0,
- "september": 0.0,
- "april": 0.0,
- "july": 0.0,
- "december": 0.0,
- "november": 0.0,
- "may": 0.0,
- "february": 0.0,
- "identifier": "3122188d-24bf-4359-b1a4-b89976056054",
- "user_data": {},
- "august": 0.0,
- "october": 0.0,
- "display_name": "3122188d-24bf-4359-b1a4-b89976056054",
- "january": 0.0
+ {
+ "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": "d8613ec3-67f6-4f48-ab1f-7aa0aa02a192",
- "user_data": {},
- "display_name": "d8613ec3-67f6-4f48-ab1f-7aa0aa02a192",
- "air_temps": {
- "march": 0.0,
- "june": 0.0,
- "september": 0.0,
- "april": 0.0,
- "july": 0.0,
- "december": 0.0,
- "november": 0.0,
- "may": 0.0,
- "february": 0.0,
- "identifier": "54dfde8d-ca01-4e84-8898-2e293e519f16",
- "user_data": {},
- "august": 0.0,
- "october": 0.0,
- "display_name": "54dfde8d-ca01-4e84-8898-2e293e519f16",
- "january": 0.0
+ {
+ "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy",
+ "type": "ScheduleDay",
+ "times": [
+ [
+ 0,
+ 0
+ ],
+ [
+ 6,
+ 0
+ ],
+ [
+ 22,
+ 0
+ ]
+ ],
+ "values": [
+ 1.0,
+ 0.25,
+ 1.0
+ ],
+ "interpolate": false
+ },
+ {
+ "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat",
+ "type": "ScheduleDay",
+ "times": [
+ [
+ 0,
+ 0
+ ],
+ [
+ 6,
+ 0
+ ],
+ [
+ 18,
+ 0
+ ]
+ ],
+ "values": [
+ 1.0,
+ 0.25,
+ 1.0
+ ],
+ "interpolate": false
}
- },
- "ground": {
- "flow_rate_groundwater": 0.050000000000000003,
- "identifier": "61c8340d-fec4-4629-84ce-c5fbaf127668",
- "ground_density": 2000,
- "user_data": {},
- "display_name": "61c8340d-fec4-4629-84ce-c5fbaf127668",
- "ground_heat_capacity": 1000,
- "ground_thermal_conductivity": 2,
- "depth_groundwater": 3
- }
- },
- "identifier": "9f1459b8-8b96-4929-b237-cbb9a8f07386",
- "user_data": {},
- "display_name": "9f1459b8-8b96-4929-b237-cbb9a8f07386",
- "phpp_library_codes": {
- "dataset_name": "US0055b-New York",
- "identifier": "0ff6ef60-e3df-4089-a510-de1340017153",
- "user_data": {},
- "display_name": "US0055b-New York",
- "region_code": "New York",
- "country_code": "US-United States of America"
- }
- },
- "co2e_factors": {
- "factors": []
- },
- "thermal_bridges": {}
- },
- "ph_foundations": [],
- "spaces": [],
- "specific_heat_capacity": "1-LIGHTWEIGHT",
- "type": "RoomPhProperties"
- },
- "ph_hvac": {
- "renewable_devices": [],
- "heat_pump_systems": [],
- "id_num": 0,
- "ventilation_system": null,
- "exhaust_vent_devices": [],
- "heating_systems": [],
- "hot_water_system": null,
- "supportive_devices": [],
- "type": "RoomPhHvacProperties"
- }
- },
- "faces": [
- {
- "boundary_condition": {
- "wind_exposure": true,
- "view_factor": {
- "type": "Autocalculate"
- },
- "type": "Outdoors",
- "sun_exposure": true
- },
- "properties": {
- "type": "FaceProperties",
- "radiance": {
- "type": "FaceRadianceProperties"
- },
- "energy": {
- "type": "FaceEnergyProperties"
- },
- "ph": {
- "id_num": 0,
- "type": "FacePhProperties"
- },
- "ph_hvac": {
- "type": "FacePhHvacPropertiesAbridged"
- }
- },
- "face_type": "Wall",
- "identifier": "Room_2_eeecad34..Face0",
- "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
- ]
- ],
- "type": "Face3D",
- "plane": {
- "o": [
- 0.0,
- 0.0,
- 0.0
- ],
- "x": [
- 1.0,
- 0.0,
- 0.0
- ],
- "type": "Plane",
- "n": [
- 0.0,
- -1.0,
- 0.0
- ]
- }
- },
- "display_name": "Room_2_eeecad34..Face0",
- "type": "Face"
- },
- {
- "boundary_condition": {
- "wind_exposure": true,
- "view_factor": {
- "type": "Autocalculate"
- },
- "type": "Outdoors",
- "sun_exposure": true
- },
- "properties": {
- "type": "FaceProperties",
- "radiance": {
- "type": "FaceRadianceProperties"
- },
- "energy": {
- "type": "FaceEnergyProperties"
- },
- "ph": {
- "id_num": 0,
- "type": "FacePhProperties"
- },
- "ph_hvac": {
- "type": "FacePhHvacPropertiesAbridged"
- }
- },
- "face_type": "Wall",
- "identifier": "Room_2_eeecad34..Face1",
- "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
- ]
- ],
- "type": "Face3D",
- "plane": {
- "o": [
- 5.0,
- 0.0,
- 0.0
- ],
- "x": [
- 0.0,
- 1.0,
- 0.0
- ],
- "type": "Plane",
- "n": [
- 1.0,
- 0.0,
- -5.5511151231257827e-17
- ]
- }
- },
- "display_name": "Room_2_eeecad34..Face1",
- "type": "Face"
- },
- {
- "boundary_condition": {
- "wind_exposure": true,
- "view_factor": {
- "type": "Autocalculate"
- },
- "type": "Outdoors",
- "sun_exposure": true
- },
- "properties": {
- "type": "FaceProperties",
- "radiance": {
- "type": "FaceRadianceProperties"
- },
- "energy": {
- "type": "FaceEnergyProperties"
- },
- "ph": {
- "id_num": 0,
- "type": "FacePhProperties"
- },
- "ph_hvac": {
- "type": "FacePhHvacPropertiesAbridged"
+ ],
+ "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"
}
},
- "face_type": "Wall",
- "identifier": "Room_2_eeecad34..Face2",
- "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
- ]
- ],
- "type": "Face3D",
- "plane": {
- "o": [
- 5.0,
- 4.0,
- 0.0
- ],
- "x": [
- -1.0,
- 0.0,
- 0.0
- ],
- "type": "Plane",
- "n": [
- 0.0,
- 1.0,
- -0.0
- ]
+ "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"
}
- },
- "display_name": "Room_2_eeecad34..Face2",
- "type": "Face"
+ }
},
- {
- "boundary_condition": {
- "wind_exposure": true,
- "view_factor": {
- "type": "Autocalculate"
+ "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": {}
},
- "type": "Outdoors",
- "sun_exposure": true
- },
- "properties": {
- "type": "FaceProperties",
- "radiance": {
- "type": "FaceRadianceProperties"
+ "set_points": {
+ "summer": 25.0,
+ "identifier": "f0b0de9e-c50b-418e-8107-80e1c6c92571",
+ "winter": 20.0,
+ "display_name": "f0b0de9e-c50b-418e-8107-80e1c6c92571",
+ "user_data": {}
},
- "energy": {
- "type": "FaceEnergyProperties"
+ "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"
+ },
+ "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"
+ }
},
- "ph": {
- "id_num": 0,
- "type": "FacePhProperties"
+ "co2e_factors": {
+ "factors": []
},
- "ph_hvac": {
- "type": "FacePhHvacPropertiesAbridged"
- }
- },
- "face_type": "Wall",
- "identifier": "Room_2_eeecad34..Face3",
- "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
- ]
- ],
- "type": "Face3D",
- "plane": {
- "o": [
- 0.0,
- 4.0,
- 0.0
- ],
- "x": [
- 0.0,
- -1.0,
- 0.0
- ],
- "type": "Plane",
- "n": [
- -1.0,
- 0.0,
- 0.0
- ]
- }
- },
- "display_name": "Room_2_eeecad34..Face3",
- "type": "Face"
- },
- {
- "boundary_condition": {
- "type": "Ground"
- },
- "properties": {
- "type": "FaceProperties",
- "radiance": {
- "type": "FaceRadianceProperties"
+ "mech_room_temp": 20.0,
+ "non_combustible_materials": false,
+ "wind_exposure_type": {
+ "value": "1-SEVERAL_SIDES_EXPOSED_NO_SCREENING"
+ },
+ "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
+ }
+ },
+ "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
+ },
+ "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": {}
+ }
},
- "energy": {
- "type": "FaceEnergyProperties"
+ "summer_hrv_bypass_mode": {
+ "value": "4-ALWAYS"
},
- "ph": {
- "id_num": 0,
- "type": "FacePhProperties"
+ "num_dwelling_units": 1,
+ "display_name": "Unnamed_Bldg_Segment",
+ "user_data": {},
+ "name": "Unnamed_Bldg_Segment",
+ "source_energy_factors": {
+ "factors": []
},
- "ph_hvac": {
- "type": "FacePhHvacPropertiesAbridged"
- }
- },
- "face_type": "Floor",
- "identifier": "Room_2_eeecad34..Face4",
- "geometry": {
- "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
- ]
- ],
- "type": "Face3D",
- "plane": {
- "o": [
- 0.0,
- 0.0,
- 0.0
- ],
- "x": [
- 0.0,
- 1.0,
- 0.0
- ],
- "type": "Plane",
- "n": [
- 0.0,
- 0.0,
- -1.0
- ]
- }
+ "thermal_bridges": {}
},
- "display_name": "Room_2_eeecad34..Face4",
- "type": "Face"
+ "specific_heat_capacity": "1-LIGHTWEIGHT",
+ "ph_foundations": [],
+ "spaces": [],
+ "id_num": 0
},
- {
- "boundary_condition": {
- "wind_exposure": true,
- "view_factor": {
- "type": "Autocalculate"
- },
- "type": "Outdoors",
- "sun_exposure": true
- },
- "properties": {
- "type": "FaceProperties",
- "radiance": {
- "type": "FaceRadianceProperties"
- },
- "energy": {
- "type": "FaceEnergyProperties"
- },
- "ph": {
- "id_num": 0,
- "type": "FacePhProperties"
- },
- "ph_hvac": {
- "type": "FacePhHvacPropertiesAbridged"
- }
- },
- "face_type": "RoofCeiling",
- "identifier": "Room_2_eeecad34..Face5",
- "geometry": {
- "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
- ]
- ],
- "type": "Face3D",
- "plane": {
- "o": [
- 0.0,
- 0.0,
- 3.0
- ],
- "x": [
- 1.0,
- 0.0,
- -5.5511151231257827e-17
- ],
- "type": "Plane",
- "n": [
- 5.5511151231257827e-17,
- -0.0,
- 1.0
- ]
- }
- },
- "display_name": "Room_2_eeecad34..Face5",
- "type": "Face"
+ "ph_hvac": {
+ "supportive_devices": [],
+ "type": "RoomPhHvacProperties",
+ "heat_pump_systems": [],
+ "heating_systems": [],
+ "exhaust_vent_devices": [],
+ "ventilation_system": null,
+ "renewable_devices": [],
+ "hot_water_system": null,
+ "id_num": 0
}
- ],
- "identifier": "Room_2_eeecad34",
- "display_name": "Room_2",
- "type": "Room"
+ }
}
\ 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 85dba90..c6f384d 100644
--- a/tests/_test_reference_files_hbjson/Multi_Room_Complete.hbjson
+++ b/tests/_test_reference_files_hbjson/Multi_Room_Complete.hbjson
@@ -1,3613 +1,1115 @@
{
- "angle_tolerance": 1.0,
- "properties": {
- "type": "ModelProperties",
- "radiance": {
- "global_modifier_set": {
- "wall_set": {
- "exterior_modifier": "generic_wall_0.50",
- "interior_modifier": "generic_wall_0.50",
- "type": "WallModifierSetAbridged"
- },
- "door_set": {
- "exterior_modifier": "generic_opaque_door_0.50",
- "exterior_glass_modifier": "generic_exterior_window_vis_0.64",
- "overhead_modifier": "generic_opaque_door_0.50",
- "type": "DoorModifierSetAbridged",
- "interior_modifier": "generic_opaque_door_0.50",
- "interior_glass_modifier": "generic_interior_window_vis_0.88"
- },
- "modifiers": [
- {
- "identifier": "generic_interior_window_vis_0.88",
- "refraction_index": null,
- "g_transmissivity": 0.95841543286105957,
- "type": "Glass",
- "b_transmissivity": 0.95841543286105957,
- "dependencies": [],
- "r_transmissivity": 0.95841543286105957,
- "modifier": null
- },
- {
- "modifier": null,
- "r_reflectance": 0.5,
- "roughness": 0.0,
- "dependencies": [],
- "b_reflectance": 0.5,
- "identifier": "generic_wall_0.50",
- "type": "Plastic",
- "g_reflectance": 0.5,
- "specularity": 0.0
- },
- {
- "modifier": null,
- "r_reflectance": 0.20000000000000001,
- "roughness": 0.0,
- "dependencies": [],
- "b_reflectance": 0.20000000000000001,
- "identifier": "generic_floor_0.20",
- "type": "Plastic",
- "g_reflectance": 0.20000000000000001,
- "specularity": 0.0
- },
- {
- "modifier": null,
- "r_reflectance": 0.5,
- "roughness": 0.0,
- "dependencies": [],
- "b_reflectance": 0.5,
- "identifier": "generic_opaque_door_0.50",
- "type": "Plastic",
- "g_reflectance": 0.5,
- "specularity": 0.0
- },
- {
- "modifier": null,
- "r_reflectance": 0.34999999999999998,
- "roughness": 0.0,
- "dependencies": [],
- "b_reflectance": 0.34999999999999998,
- "identifier": "generic_exterior_shade_0.35",
- "type": "Plastic",
- "g_reflectance": 0.34999999999999998,
- "specularity": 0.0
- },
- {
- "modifier": null,
- "r_reflectance": 0.5,
- "roughness": 0.0,
- "dependencies": [],
- "b_reflectance": 0.5,
- "identifier": "generic_interior_shade_0.50",
- "type": "Plastic",
- "g_reflectance": 0.5,
- "specularity": 0.0
- },
- {
- "identifier": "air_boundary",
- "transmitted_spec": 1.0,
- "roughness": 0.0,
- "transmitted_diff": 1.0,
- "dependencies": [],
- "specularity": 0.0,
- "modifier": null,
- "type": "Trans",
- "g_reflectance": 1.0,
- "b_reflectance": 1.0,
- "r_reflectance": 1.0
- },
- {
- "identifier": "generic_exterior_window_vis_0.64",
- "refraction_index": null,
- "g_transmissivity": 0.69757618153843315,
- "type": "Glass",
- "b_transmissivity": 0.69757618153843315,
- "dependencies": [],
- "r_transmissivity": 0.69757618153843315,
- "modifier": null
- },
- {
- "modifier": null,
- "r_reflectance": 0.80000000000000004,
- "roughness": 0.0,
- "dependencies": [],
- "b_reflectance": 0.80000000000000004,
- "identifier": "generic_ceiling_0.80",
- "type": "Plastic",
- "g_reflectance": 0.80000000000000004,
- "specularity": 0.0
- },
- {
- "modifier": null,
- "r_reflectance": 0.20000000000000001,
- "roughness": 0.0,
- "dependencies": [],
- "b_reflectance": 0.20000000000000001,
- "identifier": "generic_context_0.20",
- "type": "Plastic",
- "g_reflectance": 0.20000000000000001,
- "specularity": 0.0
- }
+ "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
+ ]
],
- "roof_ceiling_set": {
- "exterior_modifier": "generic_ceiling_0.80",
- "interior_modifier": "generic_ceiling_0.80",
- "type": "RoofCeilingModifierSetAbridged"
+ "plane": {
+ "type": "Plane",
+ "n": [
+ 0.0,
+ 0.0,
+ 1.0
+ ],
+ "o": [
+ 5.4164426415671443,
+ -6.4550649771681172,
+ 3.3000000000000003
+ ],
+ "x": [
+ 1.0,
+ 0.0,
+ 0.0
+ ]
},
- "floor_set": {
- "exterior_modifier": "generic_floor_0.20",
- "interior_modifier": "generic_floor_0.20",
- "type": "FloorModifierSetAbridged"
+ "type": "Face3D"
+ },
+ "display_name": "Shade_de34f9c1",
+ "properties": {
+ "radiance": {
+ "type": "ShadeRadiancePropertiesAbridged"
},
- "shade_set": {
- "exterior_modifier": "generic_exterior_shade_0.35",
- "interior_modifier": "generic_interior_shade_0.50",
- "type": "ShadeModifierSetAbridged"
+ "type": "ShadePropertiesAbridged",
+ "energy": {
+ "type": "ShadeEnergyPropertiesAbridged"
},
- "air_boundary_modifier": "air_boundary",
- "context_modifier": "generic_context_0.20",
- "aperture_set": {
- "operable_modifier": "generic_exterior_window_vis_0.64",
- "skylight_modifier": "generic_exterior_window_vis_0.64",
- "type": "ApertureModifierSetAbridged",
- "interior_modifier": "generic_interior_window_vis_0.88",
- "window_modifier": "generic_exterior_window_vis_0.64"
+ "ph": {
+ "type": "ShadePhPropertiesAbridged",
+ "id_num": 0
},
- "type": "GlobalModifierSet"
- },
- "type": "ModelRadianceProperties",
- "modifier_sets": [],
- "modifiers": [
- {
- "modifier": null,
- "r_reflectance": 0.20000000000000001,
- "roughness": 0.0,
- "dependencies": [],
- "b_reflectance": 0.20000000000000001,
- "identifier": "generic_context_0.20",
- "type": "Plastic",
- "g_reflectance": 0.20000000000000001,
- "specularity": 0.0
+ "ph_hvac": {
+ "type": "ShadePhHvacProperties"
}
- ]
+ }
},
- "energy": {
- "materials": [
- {
- "left_opening_multiplier": 0.5,
- "infrared_transmittance": 0.0,
- "visible_reflectance": 0.17500000000000004,
- "top_opening_multiplier": 0.5,
- "conductivity": 0.90000000000000002,
- "thickness": 0.10000000000000001,
- "emissivity": 0.90000000000000002,
- "identifier": "test-shade",
- "bottom_opening_multiplier": 0.5,
- "visible_transmittance": 0.82499999999999996,
- "solar_reflectance": 0.17500000000000004,
- "right_opening_multiplier": 0.5,
- "type": "EnergyWindowMaterialShade",
- "airflow_permeability": 0.0,
- "solar_transmittance": 0.82499999999999996,
- "display_name": "test-shade",
- "distance_to_glass": 0.050000000000000003
+ {
+ "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
+ ]
},
- {
- "shgc": 0.40000000000000002,
- "u_factor": 0.83391891891891878,
- "vt": 0.59999999999999998,
- "type": "EnergyWindowMaterialSimpleGlazSys",
- "identifier": "PhWindowConstruction_a8b0b4f4",
- "display_name": "PhWindowConstruction_a8b0b4f4"
+ "type": "Face3D"
+ },
+ "display_name": "Shade_c07daf16",
+ "properties": {
+ "radiance": {
+ "type": "ShadeRadiancePropertiesAbridged"
},
- {
- "shgc": 0.40000000000000002,
- "u_factor": 1.0757635684464950,
- "vt": 0.59999999999999998,
- "type": "EnergyWindowMaterialSimpleGlazSys",
- "identifier": "PhWindowConstruction_cc5759e8",
- "display_name": "PhWindowConstruction_cc5759e8"
- }
- ],
- "ventilation_simulation_control": {
- "reference_temperature": 20.0,
- "reference_humidity_ratio": 0.0,
- "long_axis_angle": 0.0,
- "building_type": "LowRise",
- "vent_control_type": "SingleZone",
- "aspect_ratio": 1.0,
- "type": "VentilationSimulationControl",
- "reference_pressure": 101325.0
- },
- "shws": [],
- "schedule_type_limits": [
- {
- "lower_limit": 0.0,
- "upper_limit": {
- "type": "NoLimit"
- },
- "identifier": "Activity Level",
- "unit_type": "ActivityLevel",
- "numeric_type": "Continuous",
- "type": "ScheduleTypeLimit"
+ "type": "ShadePropertiesAbridged",
+ "energy": {
+ "type": "ShadeEnergyPropertiesAbridged"
},
- {
- "lower_limit": 0.0,
- "upper_limit": 1.0,
- "identifier": "Fractional",
- "unit_type": "Dimensionless",
- "numeric_type": "Continuous",
- "type": "ScheduleTypeLimit"
+ "ph": {
+ "type": "ShadePhPropertiesAbridged",
+ "id_num": 0
},
- {
- "lower_limit": -273.14999999999998,
- "upper_limit": {
- "type": "NoLimit"
- },
- "identifier": "Temperature",
- "unit_type": "Temperature",
- "numeric_type": "Continuous",
- "type": "ScheduleTypeLimit"
+ "ph_hvac": {
+ "type": "ShadePhHvacProperties"
}
- ],
- "construction_sets": [
- {
- "wall_set": {
- "ground_construction": null,
- "interior_construction": null,
- "type": "WallConstructionSetAbridged",
- "exterior_construction": null
- },
- "door_set": {
- "exterior_construction": null,
- "overhead_construction": null,
- "exterior_glass_construction": "PhWindowConstruction_a8b0b4f4",
- "interior_construction": null,
- "interior_glass_construction": null,
- "type": "DoorConstructionSetAbridged"
- },
- "air_boundary_construction": null,
- "roof_ceiling_set": {
- "ground_construction": null,
- "interior_construction": null,
- "type": "RoofCeilingConstructionSetAbridged",
- "exterior_construction": null
- },
- "floor_set": {
- "ground_construction": null,
- "interior_construction": null,
- "type": "FloorConstructionSetAbridged",
- "exterior_construction": null
- },
- "identifier": "ConstructionSet_b8e4c40b",
- "shade_construction": null,
- "aperture_set": {
- "operable_construction": "PhWindowConstruction_a8b0b4f4",
- "interior_construction": null,
- "skylight_construction": "PhWindowConstruction_a8b0b4f4",
- "window_construction": "PhWindowConstruction_a8b0b4f4",
- "type": "ApertureConstructionSetAbridged"
- },
- "type": "ConstructionSetAbridged"
- },
+ }
+ }
+ ],
+ "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": [
{
- "wall_set": {
- "ground_construction": null,
- "interior_construction": null,
- "type": "WallConstructionSetAbridged",
- "exterior_construction": null
- },
- "door_set": {
- "exterior_construction": null,
- "overhead_construction": null,
- "exterior_glass_construction": "PhWindowConstruction_cc5759e8",
- "interior_construction": null,
- "interior_glass_construction": null,
- "type": "DoorConstructionSetAbridged"
- },
- "air_boundary_construction": null,
- "roof_ceiling_set": {
- "ground_construction": null,
- "interior_construction": null,
- "type": "RoofCeilingConstructionSetAbridged",
- "exterior_construction": null
- },
- "floor_set": {
- "ground_construction": null,
- "interior_construction": null,
- "type": "FloorConstructionSetAbridged",
- "exterior_construction": null
+ "boundary_condition": {
+ "type": "Outdoors",
+ "sun_exposure": true,
+ "wind_exposure": true,
+ "view_factor": {
+ "type": "Autocalculate"
+ }
},
- "identifier": "ConstructionSet_33ea2f45",
- "shade_construction": null,
- "aperture_set": {
- "operable_construction": "PhWindowConstruction_cc5759e8",
- "interior_construction": null,
- "skylight_construction": "PhWindowConstruction_cc5759e8",
- "window_construction": "PhWindowConstruction_cc5759e8",
- "type": "ApertureConstructionSetAbridged"
+ "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
+ ]
+ },
+ "type": "Face3D"
},
- "type": "ConstructionSetAbridged"
- }
- ],
- "global_construction_set": {
- "materials": [
- {
- "identifier": "Generic 50mm Insulation",
- "visible_absorptance": 0.69999999999999996,
- "conductivity": 0.029999999999999999,
- "solar_absorptance": 0.69999999999999996,
- "specific_heat": 1210.0,
- "thickness": 0.050000000000000003,
- "density": 43.0,
- "type": "EnergyMaterial",
- "roughness": "MediumRough",
- "thermal_absorptance": 0.90000000000000002,
- "properties": {
- "type": "EnergyMaterialProperties",
- "ph": {
- "id_num": 0,
- "user_data": {},
- "divisions": {
- "row_heights": [],
- "cells": [],
- "column_widths": []
+ "display_name": "Room_7_a5ba7cbb..Face0",
+ "apertures": [
+ {
+ "boundary_condition": {
+ "type": "Outdoors",
+ "sun_exposure": true,
+ "wind_exposure": true,
+ "view_factor": {
+ "type": "Autocalculate"
}
- }
- }
- },
- {
- "identifier": "Generic 25mm Wood",
- "visible_absorptance": 0.5,
- "conductivity": 0.14999999999999999,
- "solar_absorptance": 0.5,
- "specific_heat": 1630.0,
- "thickness": 0.025399999999999999,
- "density": 608.0,
- "type": "EnergyMaterial",
- "roughness": "MediumSmooth",
- "thermal_absorptance": 0.90000000000000002,
- "properties": {
- "type": "EnergyMaterialProperties",
- "ph": {
- "id_num": 0,
- "user_data": {},
- "divisions": {
- "row_heights": [],
- "cells": [],
- "column_widths": []
+ },
+ "identifier": "Room_7_a5ba7cbb..Face0_Glz0",
+ "type": "Aperture",
+ "geometry": {
+ "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
+ ]
+ ],
+ "plane": {
+ "type": "Plane",
+ "n": [
+ 0.17364817766693039,
+ 0.98480775301220813,
+ 0.0
+ ],
+ "o": [
+ 0.89149122936767267,
+ -5.6571939568024794,
+ 2.7568536488623963
+ ],
+ "x": [
+ 0.98480775301220813,
+ -0.17364817766693039,
+ 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"
}
}
}
- },
- {
- "identifier": "Generic Roof Membrane",
- "visible_absorptance": 0.65000000000000002,
- "conductivity": 0.16,
- "solar_absorptance": 0.65000000000000002,
- "specific_heat": 1460.0,
- "thickness": 0.01,
- "density": 1120.0,
- "type": "EnergyMaterial",
- "roughness": "MediumRough",
- "thermal_absorptance": 0.90000000000000002,
- "properties": {
- "type": "EnergyMaterialProperties",
- "ph": {
- "id_num": 0,
- "user_data": {},
- "divisions": {
- "row_heights": [],
- "cells": [],
- "column_widths": []
- }
- }
+ ],
+ "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"
+ ]
},
- {
- "thickness": 0.0060000000000000001,
- "solar_reflectance": 0.35999999999999999,
- "visible_transmittance": 0.70999999999999996,
- "solar_diffusing": false,
- "visible_reflectance": 0.20999999999999999,
- "conductivity": 1.0,
- "type": "EnergyWindowMaterialGlazing",
- "emissivity_back": 0.047,
- "identifier": "Generic Low-e Glass",
- "solar_transmittance": 0.45000000000000001,
- "solar_reflectance_back": 0.35999999999999999,
- "visible_reflectance_back": 0.20999999999999999,
- "infrared_transmittance": 0.0,
- "dirt_correction": 1.0,
- "emissivity": 0.83999999999999997
- },
- {
- "identifier": "Generic LW Concrete",
- "visible_absorptance": 0.80000000000000004,
- "conductivity": 0.53000000000000003,
- "solar_absorptance": 0.80000000000000004,
- "specific_heat": 840.0,
- "thickness": 0.10000000000000001,
- "density": 1280.0,
- "type": "EnergyMaterial",
- "roughness": "MediumRough",
- "thermal_absorptance": 0.90000000000000002,
- "properties": {
- "type": "EnergyMaterialProperties",
- "ph": {
- "id_num": 0,
- "user_data": {},
- "divisions": {
- "row_heights": [],
- "cells": [],
- "column_widths": []
- }
- }
- }
+ "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"
},
- {
- "identifier": "Generic Ceiling Air Gap",
- "visible_absorptance": 0.69999999999999996,
- "conductivity": 0.55600000000000005,
- "solar_absorptance": 0.69999999999999996,
- "specific_heat": 1000.0,
- "thickness": 0.10000000000000001,
- "density": 1.2800000000000000,
- "type": "EnergyMaterial",
- "roughness": "Smooth",
- "thermal_absorptance": 0.90000000000000002,
- "properties": {
- "type": "EnergyMaterialProperties",
- "ph": {
- "id_num": 0,
- "user_data": {},
- "divisions": {
- "row_heights": [],
- "cells": [],
- "column_widths": []
- }
- }
+ "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"
}
- },
- {
- "identifier": "Generic HW Concrete",
- "visible_absorptance": 0.80000000000000004,
- "conductivity": 1.9500000000000000,
- "solar_absorptance": 0.80000000000000004,
- "specific_heat": 900.0,
- "thickness": 0.20000000000000001,
- "density": 2240.0,
- "type": "EnergyMaterial",
- "roughness": "MediumRough",
- "thermal_absorptance": 0.90000000000000002,
- "properties": {
- "type": "EnergyMaterialProperties",
- "ph": {
- "id_num": 0,
- "user_data": {},
- "divisions": {
- "row_heights": [],
- "cells": [],
- "column_widths": []
- }
- }
+ }
+ },
+ {
+ "boundary_condition": {
+ "type": "Outdoors",
+ "sun_exposure": true,
+ "wind_exposure": true,
+ "view_factor": {
+ "type": "Autocalculate"
}
},
- {
- "identifier": "Generic Painted Metal",
- "visible_absorptance": 0.5,
- "conductivity": 45.0,
- "solar_absorptance": 0.5,
- "specific_heat": 410.0,
- "thickness": 0.0015,
- "density": 7690.0,
- "type": "EnergyMaterial",
- "roughness": "Smooth",
- "thermal_absorptance": 0.90000000000000002,
- "properties": {
- "type": "EnergyMaterialProperties",
- "ph": {
- "id_num": 0,
- "user_data": {},
- "divisions": {
- "row_heights": [],
- "cells": [],
- "column_widths": []
- }
- }
- }
+ "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"
},
- {
- "identifier": "Generic 25mm Insulation",
- "visible_absorptance": 0.69999999999999996,
- "conductivity": 0.029999999999999999,
- "solar_absorptance": 0.69999999999999996,
- "specific_heat": 1210.0,
- "thickness": 0.025000000000000001,
- "density": 43.0,
- "type": "EnergyMaterial",
- "roughness": "MediumRough",
- "thermal_absorptance": 0.90000000000000002,
- "properties": {
- "type": "EnergyMaterialProperties",
- "ph": {
- "id_num": 0,
- "user_data": {},
- "divisions": {
- "row_heights": [],
- "cells": [],
- "column_widths": []
+ "display_name": "Room_7_a5ba7cbb..Face2",
+ "apertures": [
+ {
+ "boundary_condition": {
+ "type": "Outdoors",
+ "sun_exposure": true,
+ "wind_exposure": true,
+ "view_factor": {
+ "type": "Autocalculate"
}
- }
- }
- },
- {
- "gas_type": "Air",
- "type": "EnergyWindowMaterialGas",
- "thickness": 0.012699999999999999,
- "identifier": "Generic Window Air Gap"
- },
- {
- "thickness": 0.0060000000000000001,
- "solar_reflectance": 0.070000000000000007,
- "visible_transmittance": 0.88,
- "solar_diffusing": false,
- "visible_reflectance": 0.080000000000000002,
- "conductivity": 1.0,
- "type": "EnergyWindowMaterialGlazing",
- "emissivity_back": 0.83999999999999997,
- "identifier": "Generic Clear Glass",
- "solar_transmittance": 0.77000000000000002,
- "solar_reflectance_back": 0.070000000000000007,
- "visible_reflectance_back": 0.080000000000000002,
- "infrared_transmittance": 0.0,
- "dirt_correction": 1.0,
- "emissivity": 0.83999999999999997
- },
- {
- "identifier": "Generic Brick",
- "visible_absorptance": 0.65000000000000002,
- "conductivity": 0.90000000000000002,
- "solar_absorptance": 0.65000000000000002,
- "specific_heat": 790.0,
- "thickness": 0.10000000000000001,
- "density": 1920.0,
- "type": "EnergyMaterial",
- "roughness": "MediumRough",
- "thermal_absorptance": 0.90000000000000002,
- "properties": {
- "type": "EnergyMaterialProperties",
- "ph": {
- "id_num": 0,
- "user_data": {},
- "divisions": {
- "row_heights": [],
- "cells": [],
- "column_widths": []
- }
- }
- }
- },
- {
- "identifier": "Generic Gypsum Board",
- "visible_absorptance": 0.5,
- "conductivity": 0.16,
- "solar_absorptance": 0.5,
- "specific_heat": 1090.0,
- "thickness": 0.012699999999999999,
- "density": 800.0,
- "type": "EnergyMaterial",
- "roughness": "MediumSmooth",
- "thermal_absorptance": 0.90000000000000002,
- "properties": {
- "type": "EnergyMaterialProperties",
- "ph": {
- "id_num": 0,
- "user_data": {},
- "divisions": {
- "row_heights": [],
- "cells": [],
- "column_widths": []
- }
- }
- }
- },
- {
- "identifier": "Generic Acoustic Tile",
- "visible_absorptance": 0.20000000000000001,
- "conductivity": 0.059999999999999998,
- "solar_absorptance": 0.20000000000000001,
- "specific_heat": 590.0,
- "thickness": 0.02,
- "density": 368.0,
- "type": "EnergyMaterial",
- "roughness": "MediumSmooth",
- "thermal_absorptance": 0.90000000000000002,
- "properties": {
- "type": "EnergyMaterialProperties",
- "ph": {
- "id_num": 0,
- "user_data": {},
- "divisions": {
- "row_heights": [],
- "cells": [],
- "column_widths": []
+ },
+ "identifier": "Room_7_a5ba7cbb..Face2_Glz0",
+ "type": "Aperture",
+ "geometry": {
+ "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
+ ]
+ ],
+ "plane": {
+ "type": "Plane",
+ "n": [
+ -0.17364817766692994,
+ -0.98480775301220813,
+ 0.0
+ ],
+ "o": [
+ 3.7608994304649785,
+ -10.631025133619353,
+ 2.7568536488623963
+ ],
+ "x": [
+ -0.98480775301220813,
+ 0.17364817766692994,
+ 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"
}
}
}
- },
- {
- "identifier": "Generic Wall Air Gap",
- "visible_absorptance": 0.69999999999999996,
- "conductivity": 0.66700000000000004,
- "solar_absorptance": 0.69999999999999996,
- "specific_heat": 1000.0,
- "thickness": 0.10000000000000001,
- "density": 1.2800000000000000,
- "type": "EnergyMaterial",
- "roughness": "Smooth",
- "thermal_absorptance": 0.90000000000000002,
- "properties": {
- "type": "EnergyMaterialProperties",
- "ph": {
- "id_num": 0,
- "user_data": {},
- "divisions": {
- "row_heights": [],
- "cells": [],
- "column_widths": []
- }
- }
+ ],
+ "properties": {
+ "radiance": {
+ "type": "FaceRadiancePropertiesAbridged"
+ },
+ "type": "FacePropertiesAbridged",
+ "energy": {
+ "type": "FaceEnergyPropertiesAbridged"
+ },
+ "ph": {
+ "type": "FacePhPropertiesAbridged",
+ "id_num": 0
+ },
+ "ph_hvac": {
+ "type": "FacePhHvacProperties"
}
}
- ],
- "wall_set": {
- "ground_construction": "Generic Underground Wall",
- "interior_construction": "Generic Interior Wall",
- "type": "WallConstructionSetAbridged",
- "exterior_construction": "Generic Exterior Wall"
- },
- "door_set": {
- "exterior_construction": "Generic Exterior Door",
- "overhead_construction": "Generic Exterior Door",
- "exterior_glass_construction": "Generic Double Pane",
- "interior_construction": "Generic Interior Door",
- "interior_glass_construction": "Generic Single Pane",
- "type": "DoorConstructionSetAbridged"
- },
- "air_boundary_construction": "Generic Air Boundary",
- "roof_ceiling_set": {
- "ground_construction": "Generic Underground Roof",
- "interior_construction": "Generic Interior Ceiling",
- "type": "RoofCeilingConstructionSetAbridged",
- "exterior_construction": "Generic Roof"
- },
- "floor_set": {
- "ground_construction": "Generic Ground Slab",
- "interior_construction": "Generic Interior Floor",
- "type": "FloorConstructionSetAbridged",
- "exterior_construction": "Generic Exposed Floor"
- },
- "shade_construction": "Generic Shade",
- "context_construction": "Generic Context",
- "aperture_set": {
- "operable_construction": "Generic Double Pane",
- "interior_construction": "Generic Single Pane",
- "skylight_construction": "Generic Double Pane",
- "window_construction": "Generic Double Pane",
- "type": "ApertureConstructionSetAbridged"
},
- "type": "GlobalConstructionSet",
- "constructions": [
- {
- "is_specular": false,
- "identifier": "Generic Context",
- "visible_reflectance": 0.20000000000000001,
- "solar_reflectance": 0.20000000000000001,
- "type": "ShadeConstruction"
+ {
+ "boundary_condition": {
+ "type": "Outdoors",
+ "sun_exposure": true,
+ "wind_exposure": true,
+ "view_factor": {
+ "type": "Autocalculate"
+ }
},
- {
- "air_mixing_schedule": "Always On",
- "identifier": "Generic Air Boundary",
- "type": "AirBoundaryConstructionAbridged",
- "air_mixing_per_area": 0.10000000000000001
+ "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"
},
- {
- "identifier": "Generic Exposed Floor",
- "type": "OpaqueConstructionAbridged",
- "materials": [
- "Generic Painted Metal",
- "Generic Ceiling Air Gap",
- "Generic 50mm Insulation",
- "Generic LW Concrete"
- ]
- },
- {
- "identifier": "Generic Interior Floor",
- "type": "OpaqueConstructionAbridged",
- "materials": [
- "Generic Acoustic Tile",
- "Generic Ceiling Air Gap",
- "Generic LW Concrete"
- ]
- },
- {
- "identifier": "Generic Interior Door",
- "type": "OpaqueConstructionAbridged",
- "materials": [
- "Generic 25mm Wood"
- ]
- },
- {
- "identifier": "Generic Ground Slab",
- "type": "OpaqueConstructionAbridged",
- "materials": [
- "Generic 50mm Insulation",
- "Generic HW Concrete"
- ]
- },
- {
- "identifier": "Generic Interior Wall",
- "type": "OpaqueConstructionAbridged",
- "materials": [
- "Generic Gypsum Board",
- "Generic Wall Air Gap",
- "Generic Gypsum Board"
- ]
- },
- {
- "identifier": "Generic Roof",
- "type": "OpaqueConstructionAbridged",
- "materials": [
- "Generic Roof Membrane",
- "Generic 50mm Insulation",
- "Generic LW Concrete",
- "Generic Ceiling Air Gap",
- "Generic Acoustic Tile"
- ]
- },
- {
- "identifier": "Generic Exterior Door",
- "type": "OpaqueConstructionAbridged",
- "materials": [
- "Generic Painted Metal",
- "Generic 25mm Insulation",
- "Generic Painted Metal"
- ]
- },
- {
- "is_specular": false,
- "identifier": "Generic Shade",
- "visible_reflectance": 0.34999999999999998,
- "solar_reflectance": 0.34999999999999998,
- "type": "ShadeConstruction"
- },
- {
- "identifier": "Generic Underground Wall",
- "type": "OpaqueConstructionAbridged",
- "materials": [
- "Generic 50mm Insulation",
- "Generic HW Concrete",
- "Generic Wall Air Gap",
- "Generic Gypsum Board"
- ]
- },
- {
- "properties": {
- "type": "WindowConstructionProperties",
- "ph": {
- "id_num": 0,
- "type": "WindowConstructionPhProperties"
+ "display_name": "Room_7_a5ba7cbb..Face3",
+ "apertures": [
+ {
+ "boundary_condition": {
+ "type": "Outdoors",
+ "sun_exposure": true,
+ "wind_exposure": true,
+ "view_factor": {
+ "type": "Autocalculate"
+ }
+ },
+ "identifier": "Room_7_a5ba7cbb..Face3_Glz0",
+ "type": "Aperture",
+ "geometry": {
+ "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
+ ]
+ ],
+ "plane": {
+ "type": "Plane",
+ "n": [
+ -0.98480775301220813,
+ 0.17364817766693039,
+ 0.0
+ ],
+ "o": [
+ -0.63829681629251001,
+ -9.1199611297595773,
+ 2.7568536488623963
+ ],
+ "x": [
+ 0.17364817766693039,
+ 0.98480775301220813,
+ 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"
},
- "identifier": "Generic Double Pane",
- "type": "WindowConstructionAbridged",
- "materials": [
- "Generic Low-e Glass",
- "Generic Window Air Gap",
- "Generic Clear Glass"
- ]
- },
- {
- "identifier": "Generic Underground Roof",
- "type": "OpaqueConstructionAbridged",
- "materials": [
- "Generic 50mm Insulation",
- "Generic HW Concrete",
- "Generic Ceiling Air Gap",
- "Generic Acoustic Tile"
- ]
- },
- {
- "identifier": "Generic Exterior Wall",
- "type": "OpaqueConstructionAbridged",
- "materials": [
- "Generic Brick",
- "Generic LW Concrete",
- "Generic 50mm Insulation",
- "Generic Wall Air Gap",
- "Generic Gypsum Board"
- ]
- },
- {
- "properties": {
- "type": "WindowConstructionProperties",
- "ph": {
- "id_num": 0,
- "type": "WindowConstructionPhProperties"
- }
+ "type": "FacePropertiesAbridged",
+ "energy": {
+ "type": "FaceEnergyPropertiesAbridged"
},
- "identifier": "Generic Single Pane",
- "type": "WindowConstructionAbridged",
- "materials": [
- "Generic Clear Glass"
- ]
- },
- {
- "identifier": "Generic Interior Ceiling",
- "type": "OpaqueConstructionAbridged",
- "materials": [
- "Generic LW Concrete",
- "Generic Ceiling Air Gap",
- "Generic Acoustic Tile"
- ]
- }
- ]
- },
- "hvacs": [
- {
- "sensible_heat_recovery": 0.0,
- "latent_heat_recovery": 0.0,
- "heating_air_temperature": 50.0,
- "cooling_limit": {
- "type": "Autosize"
- },
- "identifier": "Room_3_8edb1377 Ideal Loads Air System",
- "demand_controlled_ventilation": false,
- "cooling_air_temperature": 13.0,
- "economizer_type": "DifferentialDryBulb",
- "type": "IdealAirSystemAbridged",
- "heating_limit": {
- "type": "Autosize"
+ "ph": {
+ "type": "FacePhPropertiesAbridged",
+ "id_num": 0
+ },
+ "ph_hvac": {
+ "type": "FacePhHvacProperties"
+ }
}
},
{
- "sensible_heat_recovery": 0.0,
- "latent_heat_recovery": 0.0,
- "heating_air_temperature": 50.0,
- "cooling_limit": {
- "type": "Autosize"
- },
- "identifier": "Room_4_ffc07550 Ideal Loads Air System",
- "demand_controlled_ventilation": false,
- "cooling_air_temperature": 13.0,
- "economizer_type": "DifferentialDryBulb",
- "type": "IdealAirSystemAbridged",
- "heating_limit": {
- "type": "Autosize"
- }
- }
- ],
- "schedules": [
- {
- "winter_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn",
- "properties": {
- "type": "ScheduleRulesetProperties",
- "ph": {
- "operating_days_wk": 7.0,
- "id_num": 0,
- "operating_weeks_year": 52.142899999999997,
- "operating_periods": {
- "collection": []
- },
- "type": "ScheduleRulesetPhProperties"
- }
+ "boundary_condition": {
+ "type": "Ground"
},
- "day_schedules": [
- {
- "times": [
- [
- 0,
- 0
- ]
- ],
- "interpolate": false,
- "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default",
- "type": "ScheduleDay",
- "values": [
- 26.699999999999999
- ]
- },
- {
- "times": [
- [
- 0,
- 0
- ],
- [
- 5,
- 0
- ],
- [
- 6,
- 0
- ],
- [
- 7,
- 0
- ],
- [
- 22,
- 0
- ]
- ],
- "interpolate": false,
- "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn",
- "type": "ScheduleDay",
- "values": [
- 26.699999999999999,
- 25.699999999999999,
- 25.0,
- 24.0,
- 26.699999999999999
- ]
- },
- {
- "times": [
- [
- 0,
- 0
- ]
+ "identifier": "Room_7_a5ba7cbb..Face4",
+ "type": "Face",
+ "face_type": "Floor",
+ "geometry": {
+ "boundary": [
+ [
+ 5.4164426415671443,
+ -6.4550649771681172,
+ 0.0
],
- "interpolate": false,
- "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn",
- "type": "ScheduleDay",
- "values": [
- 26.699999999999999
- ]
- },
- {
- "times": [
- [
- 0,
- 0
- ],
- [
- 5,
- 0
- ],
- [
- 6,
- 0
- ],
- [
- 7,
- 0
- ],
- [
- 22,
- 0
- ]
+ [
+ 4.6523906598326512,
+ -10.788219090421832,
+ 0.0
],
- "interpolate": false,
- "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy",
- "type": "ScheduleDay",
- "values": [
- 26.699999999999999,
- 25.600000000000001,
- 25.0,
- 24.0,
- 26.699999999999999
- ]
- },
- {
- "times": [
- [
- 0,
- 0
- ],
- [
- 5,
- 0
- ],
- [
- 6,
- 0
- ],
- [
- 7,
- 0
- ],
- [
- 17,
- 0
- ]
+ [
+ -0.76405198173449351,
+ -9.8331541132537161,
+ 0.0
],
- "interpolate": false,
- "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat",
- "type": "ScheduleDay",
- "values": [
- 26.699999999999999,
- 25.699999999999999,
- 25.0,
- 24.0,
- 26.699999999999999
+ [
+ 0.0,
+ -5.5,
+ 0.0
]
- }
- ],
- "default_day_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default",
- "identifier": "Generic Office Cooling",
- "holiday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default",
- "summer_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn",
- "type": "ScheduleRulesetAbridged",
- "schedule_rules": [
- {
- "apply_monday": true,
- "apply_sunday": false,
- "apply_wednesday": true,
- "apply_thursday": true,
- "end_date": [
- 12,
- 31
+ ],
+ "plane": {
+ "type": "Plane",
+ "n": [
+ 0.0,
+ 0.0,
+ -1.0
],
- "start_date": [
- 1,
- 1
+ "o": [
+ 5.4164426415671443,
+ -6.4550649771681172,
+ 0.0
],
- "apply_tuesday": true,
- "apply_friday": true,
- "apply_saturday": false,
- "type": "ScheduleRuleAbridged",
- "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy"
+ "x": [
+ 1.0,
+ 0.0,
+ 0.0
+ ]
},
- {
- "apply_monday": false,
- "apply_sunday": false,
- "apply_wednesday": false,
- "apply_thursday": false,
- "end_date": [
- 12,
- 31
- ],
- "start_date": [
- 1,
- 1
- ],
- "apply_tuesday": false,
- "apply_friday": false,
- "apply_saturday": true,
- "type": "ScheduleRuleAbridged",
- "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat"
+ "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"
}
- ],
- "schedule_type_limit": "Temperature"
+ }
},
{
- "winter_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn",
- "properties": {
- "type": "ScheduleRulesetProperties",
- "ph": {
- "operating_days_wk": 7.0,
- "id_num": 0,
- "operating_weeks_year": 52.142899999999997,
- "operating_periods": {
- "collection": []
- },
- "type": "ScheduleRulesetPhProperties"
+ "boundary_condition": {
+ "type": "Outdoors",
+ "sun_exposure": true,
+ "wind_exposure": true,
+ "view_factor": {
+ "type": "Autocalculate"
}
},
- "day_schedules": [
- {
- "times": [
- [
- 0,
- 0
- ],
- [
- 6,
- 0
- ],
- [
- 18,
- 0
- ]
+ "identifier": "Room_7_a5ba7cbb..Face5",
+ "type": "Face",
+ "face_type": "RoofCeiling",
+ "geometry": {
+ "boundary": [
+ [
+ 0.0,
+ -5.5,
+ 3.3000000000000003
],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun",
- "type": "ScheduleDay",
- "values": [
- 0.050000000000000003,
- 0.04311628,
- 0.050000000000000003
- ]
- },
- {
- "times": [
- [
- 0,
- 0
- ]
+ [
+ -0.76405198173449351,
+ -9.8331541132537161,
+ 3.3000000000000003
],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn",
- "type": "ScheduleDay",
- "values": [
- 1.0
- ]
- },
- {
- "times": [
- [
- 0,
- 0
- ]
+ [
+ 4.6523906598326512,
+ -10.788219090421832,
+ 3.3000000000000003
],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn",
- "type": "ScheduleDay",
- "values": [
- 0.0
+ [
+ 5.4164426415671443,
+ -6.4550649771681172,
+ 3.3000000000000003
]
- },
- {
- "times": [
- [
- 0,
- 0
- ],
- [
- 6,
- 0
- ],
- [
- 8,
- 0
- ],
- [
- 12,
- 0
- ],
- [
- 17,
- 0
- ],
- [
- 19,
- 0
- ]
+ ],
+ "plane": {
+ "type": "Plane",
+ "n": [
+ 0.0,
+ 0.0,
+ 1.0
],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat",
- "type": "ScheduleDay",
- "values": [
- 0.050000000000000003,
- 0.08623256,
- 0.25869767999999999,
- 0.12934883999999999,
- 0.04311628,
- 0.050000000000000003
- ]
- },
- {
- "times": [
- [
- 0,
- 0
- ],
- [
- 5,
- 0
- ],
- [
- 6,
- 0
- ],
- [
- 7,
- 0
- ],
- [
- 8,
- 0
- ],
- [
- 17,
- 0
- ],
- [
- 18,
- 0
- ],
- [
- 20,
- 0
- ],
- [
- 22,
- 0
- ],
- [
- 23,
- 0
- ]
+ "o": [
+ -0.76405198173449351,
+ -9.8331541132537161,
+ 3.3000000000000003
],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy",
- "type": "ScheduleDay",
- "values": [
- 0.050000000000000003,
- 0.10000000000000001,
- 0.08623256,
- 0.25869767999999999,
- 0.77609304000000001,
- 0.43116280000000001,
- 0.25869767999999999,
- 0.17246512,
- 0.08623256,
- 0.04311628
+ "x": [
+ 1.0,
+ 0.0,
+ 0.0
]
- }
- ],
- "default_day_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun",
- "identifier": "Generic Office Lighting",
- "holiday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat",
- "summer_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn",
- "type": "ScheduleRulesetAbridged",
- "schedule_rules": [
- {
- "apply_monday": true,
- "apply_sunday": false,
- "apply_wednesday": true,
- "apply_thursday": true,
- "end_date": [
- 12,
- 31
- ],
- "start_date": [
- 1,
- 1
- ],
- "apply_tuesday": true,
- "apply_friday": true,
- "apply_saturday": false,
- "type": "ScheduleRuleAbridged",
- "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy"
},
+ "type": "Face3D"
+ },
+ "display_name": "Room_7_a5ba7cbb..Face5",
+ "apertures": [
{
- "apply_monday": false,
- "apply_sunday": false,
- "apply_wednesday": false,
- "apply_thursday": false,
- "end_date": [
- 12,
- 31
- ],
- "start_date": [
- 1,
- 1
- ],
- "apply_tuesday": false,
- "apply_friday": false,
- "apply_saturday": true,
- "type": "ScheduleRuleAbridged",
- "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat"
+ "boundary_condition": {
+ "type": "Outdoors",
+ "sun_exposure": true,
+ "wind_exposure": true,
+ "view_factor": {
+ "type": "Autocalculate"
+ }
+ },
+ "identifier": "Room_7_a5ba7cbb..Face5_Glz0",
+ "type": "Aperture",
+ "geometry": {
+ "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
+ ]
+ ],
+ "plane": {
+ "type": "Plane",
+ "n": [
+ 0.0,
+ 0.0,
+ 1.0
+ ],
+ "o": [
+ 3.9710638220646373,
+ -10.013777334829634,
+ 3.3000000000000003
+ ],
+ "x": [
+ 1.0,
+ 0.0,
+ 0.0
+ ]
+ },
+ "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"
+ }
+ }
}
],
- "schedule_type_limit": "Fractional"
- },
- {
- "winter_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn",
"properties": {
- "type": "ScheduleRulesetProperties",
+ "radiance": {
+ "type": "FaceRadiancePropertiesAbridged"
+ },
+ "type": "FacePropertiesAbridged",
+ "energy": {
+ "type": "FaceEnergyPropertiesAbridged"
+ },
"ph": {
- "operating_days_wk": 7.0,
- "id_num": 0,
- "operating_weeks_year": 52.142899999999997,
- "operating_periods": {
- "collection": []
- },
- "type": "ScheduleRulesetPhProperties"
+ "type": "FacePhPropertiesAbridged",
+ "id_num": 0
+ },
+ "ph_hvac": {
+ "type": "FacePhHvacProperties"
}
- },
- "day_schedules": [
- {
- "times": [
- [
- 0,
- 0
- ]
- ],
- "interpolate": false,
- "identifier": "OfficeMedium INFIL_SCH_PNNL_Default",
- "type": "ScheduleDay",
- "values": [
- 1.0
- ]
- },
- {
- "times": [
- [
- 0,
- 0
- ],
- [
- 6,
- 0
- ],
- [
- 22,
- 0
- ]
- ],
- "interpolate": false,
- "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn",
- "type": "ScheduleDay",
- "values": [
- 1.0,
- 0.25,
- 1.0
- ]
- },
- {
- "times": [
- [
- 0,
- 0
- ],
- [
- 6,
- 0
- ],
- [
- 18,
- 0
- ]
- ],
- "interpolate": false,
- "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn",
- "type": "ScheduleDay",
- "values": [
- 1.0,
- 0.25,
- 1.0
- ]
- },
- {
- "times": [
- [
- 0,
- 0
- ],
- [
- 6,
- 0
- ],
- [
- 22,
- 0
- ]
- ],
- "interpolate": false,
- "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy",
- "type": "ScheduleDay",
- "values": [
- 1.0,
- 0.25,
- 1.0
- ]
- },
- {
- "times": [
- [
- 0,
- 0
- ],
- [
- 6,
- 0
- ],
- [
- 18,
- 0
- ]
- ],
- "interpolate": false,
- "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat",
- "type": "ScheduleDay",
- "values": [
- 1.0,
- 0.25,
- 1.0
- ]
- }
- ],
- "default_day_schedule": "OfficeMedium INFIL_SCH_PNNL_Default",
- "identifier": "Generic Office Infiltration",
- "holiday_schedule": "OfficeMedium INFIL_SCH_PNNL_Default",
- "summer_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn",
- "type": "ScheduleRulesetAbridged",
- "schedule_rules": [
- {
- "apply_monday": true,
- "apply_sunday": false,
- "apply_wednesday": true,
- "apply_thursday": true,
- "end_date": [
- 12,
- 31
- ],
- "start_date": [
- 1,
- 1
- ],
- "apply_tuesday": true,
- "apply_friday": true,
- "apply_saturday": false,
- "type": "ScheduleRuleAbridged",
- "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Wkdy"
- },
- {
- "apply_monday": false,
- "apply_sunday": false,
- "apply_wednesday": false,
- "apply_thursday": false,
- "end_date": [
- 12,
- 31
- ],
- "start_date": [
- 1,
- 1
- ],
- "apply_tuesday": false,
- "apply_friday": false,
- "apply_saturday": true,
- "type": "ScheduleRuleAbridged",
- "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Sat"
- }
- ],
- "schedule_type_limit": "Fractional"
+ }
+ }
+ ],
+ "properties": {
+ "radiance": {
+ "type": "RoomRadiancePropertiesAbridged"
},
- {
- "winter_designday_schedule": "OfficeMedium BLDG_OCC_SCH_WntrDsn",
- "properties": {
- "type": "ScheduleRulesetProperties",
- "ph": {
- "operating_days_wk": 7.0,
- "id_num": 0,
- "operating_weeks_year": 52.142899999999997,
- "operating_periods": {
- "collection": []
+ "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"
+ },
+ "properties": {
+ "ph": {
+ "type": "PeoplePhProperties",
+ "dwellings": {
+ "identifier": "08942a5e-c167-4d09-8009-afbedd8af4d3",
+ "num_dwellings": 1
+ },
+ "id_num": 0,
+ "number_bedrooms": 1,
+ "number_people": 1
},
- "type": "ScheduleRulesetPhProperties"
+ "type": "PeopleProperties"
}
},
- "day_schedules": [
- {
- "times": [
- [
- 0,
- 0
- ],
- [
- 6,
- 0
- ],
- [
- 18,
- 0
- ]
- ],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_OCC_SCH_Default",
- "type": "ScheduleDay",
- "values": [
- 0.0,
- 0.050000000000000003,
- 0.0
- ]
- },
- {
- "times": [
- [
- 0,
- 0
- ],
- [
- 6,
- 0
- ],
- [
- 22,
- 0
- ]
- ],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_OCC_SCH_SmrDsn",
- "type": "ScheduleDay",
- "values": [
- 0.0,
- 1.0,
- 0.050000000000000003
- ]
- },
- {
- "times": [
- [
- 0,
- 0
- ]
- ],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_OCC_SCH_WntrDsn",
- "type": "ScheduleDay",
- "values": [
- 0.0
- ]
- },
- {
- "times": [
- [
- 0,
- 0
- ],
- [
- 6,
- 0
- ],
- [
- 7,
- 0
- ],
- [
- 8,
- 0
- ],
- [
- 12,
- 0
- ],
- [
- 13,
- 0
- ],
- [
- 17,
- 0
- ],
- [
- 18,
- 0
- ],
- [
- 22,
- 0
- ]
- ],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_OCC_SCH_Wkdy",
- "type": "ScheduleDay",
- "values": [
- 0.0,
- 0.10000000000000001,
- 0.20000000000000001,
- 0.94999999999999996,
- 0.5,
- 0.94999999999999996,
- 0.29999999999999999,
- 0.10000000000000001,
- 0.050000000000000003
- ]
- },
- {
- "times": [
- [
- 0,
- 0
- ],
- [
- 6,
- 0
- ],
- [
- 8,
- 0
- ],
- [
- 12,
- 0
- ],
- [
- 17,
- 0
- ],
- [
- 19,
- 0
- ]
- ],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_OCC_SCH_Sat",
- "type": "ScheduleDay",
- "values": [
- 0.0,
- 0.10000000000000001,
- 0.29999999999999999,
- 0.10000000000000001,
- 0.050000000000000003,
- 0.0
- ]
- }
- ],
- "default_day_schedule": "OfficeMedium BLDG_OCC_SCH_Default",
- "identifier": "Generic Office Occupancy",
- "holiday_schedule": "OfficeMedium BLDG_OCC_SCH_Default",
- "summer_designday_schedule": "OfficeMedium BLDG_OCC_SCH_SmrDsn",
- "type": "ScheduleRulesetAbridged",
- "schedule_rules": [
- {
- "apply_monday": true,
- "apply_sunday": false,
- "apply_wednesday": true,
- "apply_thursday": true,
- "end_date": [
- 12,
- 31
- ],
- "start_date": [
- 1,
- 1
- ],
- "apply_tuesday": true,
- "apply_friday": true,
- "apply_saturday": false,
- "type": "ScheduleRuleAbridged",
- "schedule_day": "OfficeMedium BLDG_OCC_SCH_Wkdy"
- },
- {
- "apply_monday": false,
- "apply_sunday": false,
- "apply_wednesday": false,
- "apply_thursday": false,
- "end_date": [
- 12,
- 31
- ],
- "start_date": [
- 1,
- 1
- ],
- "apply_tuesday": false,
- "apply_friday": false,
- "apply_saturday": true,
- "type": "ScheduleRuleAbridged",
- "schedule_day": "OfficeMedium BLDG_OCC_SCH_Sat"
- }
- ],
- "schedule_type_limit": "Fractional"
- },
- {
- "properties": {
- "type": "ScheduleRulesetProperties",
- "ph": {
- "operating_days_wk": 7.0,
- "id_num": 0,
- "operating_weeks_year": 52.142899999999997,
- "operating_periods": {
- "collection": []
+ "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
+ },
+ "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"
+ }
+ }
+ }
+ },
+ "type": "ElectricEquipmentPhProperties"
},
- "type": "ScheduleRulesetPhProperties"
+ "type": "ElectricEquipmentProperties"
}
- },
- "day_schedules": [
- {
- "times": [
- [
- 0,
- 0
- ]
- ],
- "interpolate": false,
- "identifier": "Always On_Day Schedule",
- "type": "ScheduleDay",
- "values": [
- 1.0
- ]
- }
- ],
- "default_day_schedule": "Always On_Day Schedule",
- "identifier": "Always On",
- "type": "ScheduleRulesetAbridged",
- "schedule_type_limit": "Fractional"
- },
- {
- "properties": {
- "type": "ScheduleRulesetProperties",
- "ph": {
- "operating_days_wk": 7.0,
- "id_num": 0,
- "operating_weeks_year": 52.142899999999997,
- "operating_periods": {
- "collection": []
- },
- "type": "ScheduleRulesetPhProperties"
- }
- },
- "day_schedules": [
- {
- "times": [
- [
- 0,
- 0
- ]
- ],
- "interpolate": false,
- "identifier": "Seated Adult Activity_Day Schedule",
- "type": "ScheduleDay",
- "values": [
- 120.0
- ]
- }
- ],
- "default_day_schedule": "Seated Adult Activity_Day Schedule",
- "identifier": "Seated Adult Activity",
- "type": "ScheduleRulesetAbridged",
- "schedule_type_limit": "Activity Level"
- },
- {
- "winter_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn",
- "properties": {
- "type": "ScheduleRulesetProperties",
- "ph": {
- "operating_days_wk": 7.0,
- "id_num": 0,
- "operating_weeks_year": 52.142899999999997,
- "operating_periods": {
- "collection": []
- },
- "type": "ScheduleRulesetPhProperties"
- }
- },
- "day_schedules": [
- {
- "times": [
- [
- 0,
- 0
- ],
- [
- 6,
- 0
- ],
- [
- 18,
- 0
- ]
- ],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun",
- "type": "ScheduleDay",
- "values": [
- 0.2307553806,
- 0.28810717499999999,
- 0.2307553806
- ]
- },
- {
- "times": [
- [
- 0,
- 0
- ]
- ],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn",
- "type": "ScheduleDay",
- "values": [
- 1.0
- ]
- },
- {
- "times": [
- [
- 0,
- 0
- ]
- ],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn",
- "type": "ScheduleDay",
- "values": [
- 0.0
- ]
- },
- {
- "times": [
- [
- 0,
- 0
- ],
- [
- 6,
- 0
- ],
- [
- 8,
- 0
- ],
- [
- 12,
- 0
- ],
- [
- 17,
- 0
- ],
- [
- 19,
- 0
- ]
- ],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat",
- "type": "ScheduleDay",
- "values": [
- 0.2307553806,
- 0.38123479599999999,
- 0.47654349499999998,
- 0.33358044650000002,
- 0.28592609699999999,
- 0.2307553806
- ]
- },
- {
- "times": [
- [
- 0,
- 0
- ],
- [
- 6,
- 0
- ],
- [
- 8,
- 0
- ],
- [
- 12,
- 0
- ],
- [
- 13,
- 0
- ],
- [
- 17,
- 0
- ],
- [
- 18,
- 0
- ]
- ],
- "interpolate": false,
- "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy",
- "type": "ScheduleDay",
- "values": [
- 0.30767384079999999,
- 0.38123479599999999,
- 0.85777829100000003,
- 0.76246959199999997,
- 0.85777829100000003,
- 0.47654349499999998,
- 0.38123479599999999
- ]
- }
- ],
- "default_day_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun",
- "identifier": "Generic Office Equipment",
- "holiday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat",
- "summer_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn",
- "type": "ScheduleRulesetAbridged",
- "schedule_rules": [
- {
- "apply_monday": true,
- "apply_sunday": false,
- "apply_wednesday": true,
- "apply_thursday": true,
- "end_date": [
- 12,
- 31
- ],
- "start_date": [
- 1,
- 1
- ],
- "apply_tuesday": true,
- "apply_friday": true,
- "apply_saturday": false,
- "type": "ScheduleRuleAbridged",
- "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy"
- },
- {
- "apply_monday": false,
- "apply_sunday": false,
- "apply_wednesday": false,
- "apply_thursday": false,
- "end_date": [
- 12,
- 31
- ],
- "start_date": [
- 1,
- 1
- ],
- "apply_tuesday": false,
- "apply_friday": false,
- "apply_saturday": true,
- "type": "ScheduleRuleAbridged",
- "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat"
- }
- ],
- "schedule_type_limit": "Fractional"
- },
- {
- "winter_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn",
- "properties": {
- "type": "ScheduleRulesetProperties",
- "ph": {
- "operating_days_wk": 7.0,
- "id_num": 0,
- "operating_weeks_year": 52.142899999999997,
- "operating_periods": {
- "collection": []
- },
- "type": "ScheduleRulesetPhProperties"
- }
- },
- "day_schedules": [
- {
- "times": [
- [
- 0,
- 0
- ]
- ],
- "interpolate": false,
- "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default",
- "type": "ScheduleDay",
- "values": [
- 15.600000000000000
- ]
- },
- {
- "times": [
- [
- 0,
- 0
- ]
- ],
- "interpolate": false,
- "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn",
- "type": "ScheduleDay",
- "values": [
- 15.600000000000000
- ]
- },
- {
- "times": [
- [
- 0,
- 0
- ],
- [
- 5,
- 0
- ],
- [
- 6,
- 0
- ],
- [
- 7,
- 0
- ],
- [
- 22,
- 0
- ]
- ],
- "interpolate": false,
- "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn",
- "type": "ScheduleDay",
- "values": [
- 15.600000000000000,
- 17.600000000000001,
- 19.600000000000001,
- 21.0,
- 15.600000000000000
- ]
- },
- {
- "times": [
- [
- 0,
- 0
- ],
- [
- 5,
- 0
- ],
- [
- 6,
- 0
- ],
- [
- 7,
- 0
- ],
- [
- 22,
- 0
- ]
- ],
- "interpolate": false,
- "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy",
- "type": "ScheduleDay",
- "values": [
- 15.600000000000000,
- 17.800000000000001,
- 20.0,
- 21.0,
- 15.600000000000000
- ]
- },
- {
- "times": [
- [
- 0,
- 0
- ],
- [
- 5,
- 0
- ],
- [
- 6,
- 0
- ],
- [
- 7,
- 0
- ],
- [
- 17,
- 0
- ]
- ],
- "interpolate": false,
- "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat",
- "type": "ScheduleDay",
- "values": [
- 15.600000000000000,
- 17.800000000000001,
- 20.0,
- 21.0,
- 15.600000000000000
- ]
- }
- ],
- "default_day_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default",
- "identifier": "Generic Office Heating",
- "holiday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default",
- "summer_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn",
- "type": "ScheduleRulesetAbridged",
- "schedule_rules": [
- {
- "apply_monday": true,
- "apply_sunday": false,
- "apply_wednesday": true,
- "apply_thursday": true,
- "end_date": [
- 12,
- 31
- ],
- "start_date": [
- 1,
- 1
- ],
- "apply_tuesday": true,
- "apply_friday": true,
- "apply_saturday": false,
- "type": "ScheduleRuleAbridged",
- "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy"
- },
- {
- "apply_monday": false,
- "apply_sunday": false,
- "apply_wednesday": false,
- "apply_thursday": false,
- "end_date": [
- 12,
- 31
- ],
- "start_date": [
- 1,
- 1
- ],
- "apply_tuesday": false,
- "apply_friday": false,
- "apply_saturday": true,
- "type": "ScheduleRuleAbridged",
- "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat"
- }
- ],
- "schedule_type_limit": "Temperature"
- }
- ],
- "type": "ModelEnergyProperties",
- "constructions": [
- {
- "shade_location": "Interior",
- "properties": {
- "type": "WindowConstructionShadeProperties",
- "ph": {
- "id_num": 0,
- "type": "WindowConstructionShadePhProperties"
- }
- },
- "identifier": "PhWindowConstruction_cc5759e8",
- "window_construction": {
- "properties": {
- "type": "WindowConstructionProperties",
- "ph": {
- "id_num": 0,
- "ph_frame": {
- "top": {
- "psi_glazing": 0.040000000000000001,
- "id_num": 0,
- "chi_value": 0.0,
- "u_factor": 1.0,
- "identifier": "PhWindowFrameElement_30f49777",
- "user_data": {},
- "display_name": "PhWindowFrameElement_30f49777",
- "width": 0.10000000000000001,
- "psi_install": 0.040000000000000001
- },
- "id_num": 0,
- "right": {
- "psi_glazing": 0.040000000000000001,
- "id_num": 0,
- "chi_value": 0.0,
- "u_factor": 1.0,
- "identifier": "PhWindowFrameElement_30f49777",
- "user_data": {},
- "display_name": "PhWindowFrameElement_30f49777",
- "width": 0.10000000000000001,
- "psi_install": 0.040000000000000001
- },
- "left": {
- "psi_glazing": 0.040000000000000001,
- "id_num": 0,
- "chi_value": 0.0,
- "u_factor": 1.0,
- "identifier": "PhWindowFrameElement_30f49777",
- "user_data": {},
- "display_name": "PhWindowFrameElement_30f49777",
- "width": 0.10000000000000001,
- "psi_install": 0.040000000000000001
- },
- "bottom": {
- "psi_glazing": 0.040000000000000001,
- "id_num": 0,
- "chi_value": 0.0,
- "u_factor": 1.0,
- "identifier": "PhWindowFrameElement_30f49777",
- "user_data": {},
- "display_name": "PhWindowFrameElement_30f49777",
- "width": 0.10000000000000001,
- "psi_install": 0.040000000000000001
- },
- "identifier": "PhWindowFrame_a7e6dd14",
- "user_data": {},
- "display_name": "PhWindowFrame_a7e6dd14"
- },
- "ph_glazing": {
- "id_num": 0,
- "u_factor": 0.80000000000000004,
- "identifier": "PhWindowGlazing_184c0ecf",
- "user_data": {},
- "display_name": "PhWindowGlazing_184c0ecf",
- "g_value": 0.40000000000000002
- },
- "type": "WindowConstructionPhProperties"
- }
- },
- "identifier": "PhWindowConstruction_cc5759e8",
- "type": "WindowConstructionAbridged",
- "materials": [
- "PhWindowConstruction_cc5759e8"
- ]
- },
- "control_type": "AlwaysOn",
- "shade_material": "test-shade",
- "type": "WindowConstructionShadeAbridged"
- },
- {
- "properties": {
- "type": "WindowConstructionProperties",
- "ph": {
- "id_num": 0,
- "ph_frame": {
- "top": {
- "psi_glazing": 0.040000000000000001,
- "id_num": 0,
- "chi_value": 0.0,
- "u_factor": 0.123,
- "identifier": "PhWindowFrameElement_8a903db8",
- "user_data": {},
- "display_name": "PhWindowFrameElement_8a903db8",
- "width": 0.10000000000000001,
- "psi_install": 0.040000000000000001
- },
- "id_num": 0,
- "right": {
- "psi_glazing": 0.040000000000000001,
- "id_num": 0,
- "chi_value": 0.0,
- "u_factor": 0.123,
- "identifier": "PhWindowFrameElement_8a903db8",
- "user_data": {},
- "display_name": "PhWindowFrameElement_8a903db8",
- "width": 0.10000000000000001,
- "psi_install": 0.040000000000000001
- },
- "left": {
- "psi_glazing": 0.040000000000000001,
- "id_num": 0,
- "chi_value": 0.0,
- "u_factor": 0.123,
- "identifier": "PhWindowFrameElement_8a903db8",
- "user_data": {},
- "display_name": "PhWindowFrameElement_8a903db8",
- "width": 0.10000000000000001,
- "psi_install": 0.040000000000000001
- },
- "bottom": {
- "psi_glazing": 0.040000000000000001,
- "id_num": 0,
- "chi_value": 0.0,
- "u_factor": 0.123,
- "identifier": "PhWindowFrameElement_8a903db8",
- "user_data": {},
- "display_name": "PhWindowFrameElement_8a903db8",
- "width": 0.10000000000000001,
- "psi_install": 0.040000000000000001
- },
- "identifier": "PhWindowFrame_0d580efd",
- "user_data": {},
- "display_name": "PhWindowFrame_0d580efd"
- },
- "ph_glazing": {
- "id_num": 0,
- "u_factor": 0.80000000000000004,
- "identifier": "PhWindowGlazing_af189ddf",
- "user_data": {},
- "display_name": "PhWindowGlazing_af189ddf",
- "g_value": 0.40000000000000002
- },
- "type": "WindowConstructionPhProperties"
- }
- },
- "identifier": "PhWindowConstruction_a8b0b4f4",
- "type": "WindowConstructionAbridged",
- "materials": [
- "PhWindowConstruction_a8b0b4f4"
- ]
- }
- ],
- "program_types": [
- {
- "ventilation": {
- "flow_per_area": 0.00030499999999999999,
- "identifier": "Generic Office Ventilation",
- "type": "VentilationAbridged",
- "flow_per_person": 0.0023600000000000001
- },
- "setpoint": {
- "cooling_schedule": "Generic Office Cooling",
- "identifier": "Generic Office Setpoints",
- "type": "SetpointAbridged",
- "heating_schedule": "Generic Office Heating"
- },
- "people": {
- "people_per_area": 0.056500000000000002,
- "latent_fraction": {
- "type": "Autocalculate"
- },
- "radiant_fraction": 0.29999999999999999,
- "properties": {
- "type": "PeopleProperties",
- "ph": {
- "dwellings": {
- "num_dwellings": 0,
- "identifier": "aadff7fd-21de-4274-9396-713b489df06d"
- },
- "id_num": 0,
- "number_people": 0.0,
- "type": "PeoplePhProperties",
- "number_bedrooms": 0
- }
- },
- "activity_schedule": "Seated Adult Activity",
- "identifier": "Generic Office People",
- "type": "PeopleAbridged",
- "occupancy_schedule": "Generic Office Occupancy"
- },
- "identifier": "Generic Office Program",
- "lighting": {
- "radiant_fraction": 0.69999999999999996,
- "watts_per_area": 10.550000000000001,
- "properties": {
- "type": "LightingProperties",
- "ph": {
- "id_num": 0,
- "target_lux_height": 0.80000000000000004,
- "type": "LightingPhProperties",
- "target_lux": 300
- }
- },
- "identifier": "Generic Office Lighting",
- "return_air_fraction": 0.0,
- "visible_fraction": 0.20000000000000001,
- "schedule": "Generic Office Lighting",
- "type": "LightingAbridged"
- },
- "infiltration": {
- "flow_per_exterior_area": 0.00022660000000000001,
- "identifier": "Generic Office Infiltration",
- "type": "InfiltrationAbridged",
- "schedule": "Generic Office Infiltration"
- },
- "type": "ProgramTypeAbridged",
- "electric_equipment": {
- "latent_fraction": 0.0,
- "radiant_fraction": 0.5,
- "watts_per_area": 10.330000000000000,
- "properties": {
- "type": "ElectricEquipmentProperties",
- "ph": {
- "type": "ElectricEquipmentPhProperties",
- "equipment_collection": {
- "equipment_set": {}
- }
- }
- },
- "identifier": "Generic Office Equipment",
- "schedule": "Generic Office Equipment",
- "lost_fraction": 0.0,
- "type": "ElectricEquipmentAbridged"
- }
- }
- ]
- },
- "ph": {
- "id_num": 0,
- "bldg_segments": [
- {
- "set_points": {
- "summer": 24.0,
- "identifier": "3e7a2687-f9bc-4171-b2e0-14d3d2770b78",
- "winter": 21.0,
- "user_data": {},
- "display_name": "3e7a2687-f9bc-4171-b2e0-14d3d2770b78"
- },
- "source_energy_factors": {
- "factors": [
- {
- "fuel_name": "WOOD",
- "units": "kWh/kWh",
- "value": 0.20000000000000001
- },
- {
- "fuel_name": "OIL_CGS_35_CHP",
- "units": "kWh/kWh",
- "value": 1.1000000000000001
- },
- {
- "fuel_name": "GAS_CGS_70_CHP",
- "units": "kWh/kWh",
- "value": 0.69999999999999996
- },
- {
- "fuel_name": "OIL_CGS_0_CHP",
- "units": "kWh/kWh",
- "value": 1.5
- },
- {
- "fuel_name": "HARD_COAL",
- "units": "kWh/kWh",
- "value": 1.1000000000000001
- },
- {
- "fuel_name": "HARD_COAL_CGS_35_CHP",
- "units": "kWh/kWh",
- "value": 1.1000000000000001
- },
- {
- "fuel_name": "ELECTRICITY_PV",
- "units": "kWh/kWh",
- "value": 1.7000000000000000
- },
- {
- "fuel_name": "NATURAL_GAS",
- "units": "kWh/kWh",
- "value": 1.1000000000000001
- },
- {
- "fuel_name": "OIL",
- "units": "kWh/kWh",
- "value": 1.1000000000000001
- },
- {
- "fuel_name": "HARD_COAL_CGS_70_CHP",
- "units": "kWh/kWh",
- "value": 0.80000000000000004
- },
- {
- "fuel_name": "HARD_COAL_CGS_0_CHP",
- "units": "kWh/kWh",
- "value": 1.5
- },
- {
- "fuel_name": "GAS_CGS_0_CHP",
- "units": "kWh/kWh",
- "value": 1.5
- },
- {
- "fuel_name": "ELECTRICITY_MIX",
- "units": "kWh/kWh",
- "value": 1.8000000000000000
- },
- {
- "fuel_name": "OIL_CGS_70_CHP",
- "units": "kWh/kWh",
- "value": 0.80000000000000004
- },
- {
- "fuel_name": "GAS_CGS_35_CHP",
- "units": "kWh/kWh",
- "value": 1.1000000000000001
- },
- {
- "fuel_name": "LPG",
- "units": "kWh/kWh",
- "value": 1.1000000000000001
- }
- ]
- },
- "mech_room_temp": 20.0,
- "summer_hrv_bypass_mode": {
- "value": "2-TEMPERATURE CONTROLLED"
- },
- "phi_certification": {
- "attributes": {
- "building_category_type": "1-RESIDENTIAL BUILDING",
- "occupancy_type": "1-STANDARD (ONLY FOR RESIDENTIAL BUILDINGS)",
- "tfa_override": null,
- "retrofit_type": "1-NEW BUILDING",
- "building_use_type": "10-DWELLING",
- "certification_type": "1-PASSIVE HOUSE",
- "enerphit_type": "2-ENERGY DEMAND METHOD",
- "ihg_type": "2-STANDARD",
- "phpp_version": 9,
- "primary_energy_type": "1-PE (NON-RENEWABLE)",
- "certification_class": "1-CLASSIC"
- },
- "identifier": "7fe0b89e-9406-4ace-ba6f-ba122691739e",
- "user_data": {},
- "display_name": "7fe0b89e-9406-4ace-ba6f-ba122691739e",
- "phpp_version": 9
- },
- "num_dwelling_units": 1,
- "name": "_unnamed_bldg_segment_",
- "identifier": "8cdb4c0b-6ae7-482d-b717-75a7086bfcc5",
- "num_floor_levels": 1,
- "user_data": {},
- "phius_certification": {
- "building_category_type": {
- "value": "1-RESIDENTIAL BUILDING"
- },
- "PHIUS2021_heating_demand": 15.0,
- "certification_program": {
- "value": "7-PHIUS 2021 CORE"
- },
- "building_use_type": {
- "value": "1-RESIDENTIAL"
- },
- "building_status": {
- "value": "1-IN_PLANNING"
- },
- "int_gains_evap_per_person": 15,
- "icfa_override": null,
- "building_type": {
- "value": "1-NEW_CONSTRUCTION"
- },
- "PHIUS2021_cooling_load": 10.0,
- "int_gains_num_toilets": 1,
- "int_gains_toilet_room_util_pat": null,
- "identifier": "68cc52a2-0200-48f3-88ae-cac18f67000c",
- "user_data": {},
- "PHIUS2021_cooling_demand": 15.0,
- "int_gains_use_school_defaults": false,
- "display_name": "68cc52a2-0200-48f3-88ae-cac18f67000c",
- "PHIUS2021_heating_load": 10.0,
- "int_gains_dhw_marginal_perf_ratio": null,
- "localization_selection_type": 2,
- "int_gains_flush_heat_loss": true
- },
- "non_combustible_materials": false,
- "display_name": "_unnamed_bldg_segment_",
- "wind_exposure_type": {
- "value": "1-SEVERAL_SIDES_EXPOSED_NO_SCREENING"
- },
- "site": {
- "location": {
- "longitude": -73.799999999999997,
- "latitude": 40.600000000000001,
- "identifier": "fae07ea7-e9ff-4bd0-9eeb-fbd3061b4b14",
- "climate_zone": 1,
- "user_data": {},
- "site_elevation": 0.0,
- "display_name": "New_York",
- "hours_from_UTC": -4
- },
- "climate": {
- "peak_loads": {
- "heat_load_2": {
- "rad_north": 0.0,
- "temp": 0.0,
- "rad_east": 0.0,
- "rad_global": 0.0,
- "ground_temp": null,
- "identifier": "ee2aeb71-ca0c-453d-96e6-55eae44471df",
- "rad_west": 0.0,
- "user_data": {},
- "rad_south": 0.0,
- "sky_temp": null,
- "display_name": "test_peak_heat_2",
- "dewpoint": null
- },
- "cooling_load_1": {
- "rad_north": 0.0,
- "temp": 0.0,
- "rad_east": 0.0,
- "rad_global": 0.0,
- "ground_temp": null,
- "identifier": "16255880-dc71-4f1c-9597-5205575c0579",
- "rad_west": 0.0,
- "user_data": {},
- "rad_south": 0.0,
- "sky_temp": null,
- "display_name": "test_peak_cooling_1",
- "dewpoint": null
- },
- "cooling_load_2": {
- "rad_north": 0.0,
- "temp": 0.0,
- "rad_east": 0.0,
- "rad_global": 0.0,
- "ground_temp": null,
- "identifier": "6d1c7e3f-d951-4060-91d2-009d48a86e38",
- "rad_west": 0.0,
- "user_data": {},
- "rad_south": 0.0,
- "sky_temp": null,
- "display_name": "test_peak_cooling_2",
- "dewpoint": null
- },
- "heat_load_1": {
- "rad_north": 0.0,
- "temp": 0.0,
- "rad_east": 0.0,
- "rad_global": 0.0,
- "ground_temp": null,
- "identifier": "584c4455-67d1-4f73-b13a-49399d967377",
- "rad_west": 0.0,
- "user_data": {},
- "rad_south": 0.0,
- "sky_temp": null,
- "display_name": "test_peak_heat_1",
- "dewpoint": null
- },
- "identifier": "773fd92b-fa2c-4606-ba25-073ce21c86fd",
- "user_data": {},
- "display_name": "773fd92b-fa2c-4606-ba25-073ce21c86fd"
- },
- "station_elevation": 0.0,
- "average_wind_speed": 4.0,
- "identifier": "3a513187-6661-47dc-a917-44fa2a1bd4e1",
- "user_data": {},
- "monthly_radiation": {
- "west": {
- "march": 66.659999999999997,
- "june": 165.0,
- "september": 104.03000000000000,
- "april": 131.66000000000000,
- "july": 200.0,
- "december": 0.0,
- "november": 42.049999999999997,
- "may": 149.97000000000000,
- "february": 26.660000000000000,
- "identifier": "6c9125ac-7efe-4d6d-83e8-7afbccea6cfc",
- "user_data": {},
- "august": 145.61000000000001,
- "october": 74.319999999999993,
- "display_name": "6c9125ac-7efe-4d6d-83e8-7afbccea6cfc",
- "january": 0.0
- },
- "south": {
- "march": 0.0,
- "june": 0.0,
- "september": 0.0,
- "april": 0.0,
- "july": 0.0,
- "december": 0.0,
- "november": 0.0,
- "may": 0.0,
- "february": 0.0,
- "identifier": "21ee4fd2-61e8-48c4-bfaf-41f6b4c03b5a",
- "user_data": {},
- "august": 0.0,
- "october": 0.0,
- "display_name": "21ee4fd2-61e8-48c4-bfaf-41f6b4c03b5a",
- "january": 0.0
- },
- "east": {
- "march": 66.659999999999997,
- "june": 165.0,
- "september": 104.03000000000000,
- "april": 131.66000000000000,
- "july": 200.0,
- "december": 0.0,
- "november": 42.049999999999997,
- "may": 149.97000000000000,
- "february": 26.660000000000000,
- "identifier": "22e7e15f-0835-499f-ac2e-699ad038dc0f",
- "user_data": {},
- "august": 145.61000000000001,
- "october": 74.319999999999993,
- "display_name": "22e7e15f-0835-499f-ac2e-699ad038dc0f",
- "january": 0.0
- },
- "identifier": "de699ca6-41af-4470-be3a-dd2bd28d2a40",
- "user_data": {},
- "display_name": "de699ca6-41af-4470-be3a-dd2bd28d2a40",
- "glob": {
- "march": 66.659999999999997,
- "june": 165.0,
- "september": 104.03000000000000,
- "april": 131.66000000000000,
- "july": 200.0,
- "december": 0.0,
- "november": 42.049999999999997,
- "may": 149.97000000000000,
- "february": 26.660000000000000,
- "identifier": "30ed386e-1957-4afd-8c38-7271e399c5f1",
- "user_data": {},
- "august": 145.61000000000001,
- "october": 74.319999999999993,
- "display_name": "30ed386e-1957-4afd-8c38-7271e399c5f1",
- "january": 0.0
- },
- "north": {
- "march": 66.659999999999997,
- "june": 165.0,
- "september": 104.03000000000000,
- "april": 131.66000000000000,
- "july": 200.0,
- "december": 0.0,
- "november": 42.049999999999997,
- "may": 149.97000000000000,
- "february": 26.660000000000000,
- "identifier": "c81c013c-f0a9-4cb7-8ba8-c9bcef4de304",
- "user_data": {},
- "august": 145.61000000000001,
- "october": 74.319999999999993,
- "display_name": "c81c013c-f0a9-4cb7-8ba8-c9bcef4de304",
- "january": 0.0
- }
- },
- "display_name": "My_Test_Climate",
- "summer_daily_temperature_swing": 10.0,
- "monthly_temps": {
- "dewpoints": {
- "march": 6.6699999999999999,
- "june": 6.9500000000000002,
- "september": 1.0500000000000000,
- "april": 7.9600000000000000,
- "july": 4.9500000000000002,
- "december": 4.2800000000000002,
- "november": 1.6200000000000001,
- "may": 5.1299999999999999,
- "february": 2.6699999999999999,
- "identifier": "a97acd9f-7b81-43e2-89fe-b09444b36724",
- "user_data": {},
- "august": 4.1399999999999997,
- "october": 1.5400000000000000,
- "display_name": "a97acd9f-7b81-43e2-89fe-b09444b36724",
- "january": 0.0
- },
- "ground_temps": {
- "march": 0.0,
- "june": 0.0,
- "september": 0.0,
- "april": 0.0,
- "july": 0.0,
- "december": 0.0,
- "november": 0.0,
- "may": 0.0,
- "february": 0.0,
- "identifier": "dbb539bc-39b4-4fff-b6cc-0bd06fe90898",
- "user_data": {},
- "august": 0.0,
- "october": 0.0,
- "display_name": "dbb539bc-39b4-4fff-b6cc-0bd06fe90898",
- "january": 0.0
- },
- "sky_temps": {
- "march": 8.3300000000000001,
- "june": 20.620000000000001,
- "september": 9.7799999999999994,
- "april": 16.460000000000001,
- "july": 17.699999999999999,
- "december": 3.6200000000000001,
- "november": 5.0599999999999996,
- "may": 17.920000000000002,
- "february": 3.3300000000000001,
- "identifier": "20690299-6be5-44d1-9b17-16c76ba12486",
- "user_data": {},
- "august": 13.210000000000001,
- "october": 6.4800000000000004,
- "display_name": "20690299-6be5-44d1-9b17-16c76ba12486",
- "january": 0.0
- },
- "identifier": "1b8bbab4-069a-4b66-aa0f-99a1a201c175",
- "user_data": {},
- "display_name": "1b8bbab4-069a-4b66-aa0f-99a1a201c175",
- "air_temps": {
- "march": 10.0,
- "june": 24.75,
- "september": 11.740000000000000,
- "april": 19.75,
- "july": 21.230000000000000,
- "december": 4.3399999999999999,
- "november": 6.0700000000000003,
- "may": 21.5,
- "february": 4.0,
- "identifier": "af5497f9-f10a-478f-8234-1543d3088204",
- "user_data": {},
- "august": 15.850000000000000,
- "october": 7.7800000000000002,
- "display_name": "af5497f9-f10a-478f-8234-1543d3088204",
- "january": 0.0
- }
- },
- "ground": {
- "flow_rate_groundwater": 0.050000000000000003,
- "identifier": "dfa5396f-6d42-4538-8d34-cdd0e505d065",
- "ground_density": 2000,
- "user_data": {},
- "display_name": "dfa5396f-6d42-4538-8d34-cdd0e505d065",
- "ground_heat_capacity": 1000,
- "ground_thermal_conductivity": 2,
- "depth_groundwater": 3
- }
- },
- "identifier": "77255d28-fa9b-4cea-ab21-3ef17aebd55e",
- "user_data": {},
- "display_name": "_unnamed_",
- "phpp_library_codes": {
- "dataset_name": "US0055b-New York",
- "identifier": "bbc321ac-0867-4e8c-a8cf-d06ce57a8bf7",
- "user_data": {},
- "display_name": "US0055b-New York",
- "region_code": "New York",
- "country_code": "US-United States of America"
- }
- },
- "co2e_factors": {
- "factors": [
- {
- "fuel_name": "WOOD",
- "units": "g/kWh",
- "value": 53.428899999999999
- },
- {
- "fuel_name": "OIL_CGS_35_CHP",
- "units": "g/kWh",
- "value": 250.01710000000000
- },
- {
- "fuel_name": "GAS_CGS_70_CHP",
- "units": "g/kWh",
- "value": -70.010199999999998
- },
- {
- "fuel_name": "OIL_CGS_0_CHP",
- "units": "g/kWh",
- "value": 409.99660000000000
- },
- {
- "fuel_name": "HARD_COAL",
- "units": "g/kWh",
- "value": 439.98640000000000
- },
- {
- "fuel_name": "HARD_COAL_CGS_35_CHP",
- "units": "g/kWh",
- "value": 319.99320000000000
- },
- {
- "fuel_name": "ELECTRICITY_PV",
- "units": "g/kWh",
- "value": 250.01710000000000
- },
- {
- "fuel_name": "NATURAL_GAS",
- "units": "g/kWh",
- "value": 250.01710000000000
- },
- {
- "fuel_name": "OIL",
- "units": "g/kWh",
- "value": 309.99660000000000
- },
- {
- "fuel_name": "HARD_COAL_CGS_70_CHP",
- "units": "g/kWh",
- "value": 239.98640000000000
- },
- {
- "fuel_name": "HARD_COAL_CGS_0_CHP",
- "units": "g/kWh",
- "value": 409.99660000000000
- },
- {
- "fuel_name": "GAS_CGS_0_CHP",
- "units": "g/kWh",
- "value": 319.99320000000000
- },
- {
- "fuel_name": "ELECTRICITY_MIX",
- "units": "g/kWh",
- "value": 680.00680000000000
- },
- {
- "fuel_name": "OIL_CGS_70_CHP",
- "units": "g/kWh",
- "value": 100.0
- },
- {
- "fuel_name": "GAS_CGS_35_CHP",
- "units": "g/kWh",
- "value": 129.98980000000000
- },
- {
- "fuel_name": "LPG",
- "units": "g/kWh",
- "value": 270.01020000000000
- }
- ]
- },
- "thermal_bridges": {
- "9fef3000-cf08-434d-b009-0ce466b090a5": {
- "_group_type": {
- "value": "15-AMBIENT"
- },
- "id_num": 0,
- "psi_value": 0.01,
- "identifier": "9fef3000-cf08-434d-b009-0ce466b090a5",
- "user_data": {},
- "geometry": {
- "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
- ],
- [
- 0.82294901687515765,
- 0.0,
- 0.49376941012509468
- ]
- ],
- "type": "Polyline3D"
- },
- "display_name": "_unnamed_bldg_segment__a14d0d50",
- "fRsi_value": 0.75,
- "quantity": 1.0
- },
- "a855d95f-4115-4d26-b877-697e2aeed815": {
- "_group_type": {
- "value": "15-AMBIENT"
- },
- "id_num": 0,
- "psi_value": 0.01,
- "identifier": "a855d95f-4115-4d26-b877-697e2aeed815",
- "user_data": {},
- "geometry": {
- "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
- ]
- ],
- "type": "Polyline3D"
- },
- "display_name": "_unnamed_bldg_segment__99a26d05",
- "fRsi_value": 0.75,
- "quantity": 1.0
- },
- "9baea787-96f8-4550-9536-7b4343fa5dc6": {
- "_group_type": {
- "value": "15-AMBIENT"
- },
- "id_num": 0,
- "psi_value": 0.01,
- "identifier": "9baea787-96f8-4550-9536-7b4343fa5dc6",
- "user_data": {},
- "geometry": {
- "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
- ]
- ],
- "type": "Polyline3D"
- },
- "display_name": "_unnamed_bldg_segment__f1bc6c80",
- "fRsi_value": 0.75,
- "quantity": 1.0
- },
- "ae269ba5-ac96-4a79-9a6d-e530189f2e46": {
- "_group_type": {
- "value": "15-AMBIENT"
- },
- "id_num": 0,
- "psi_value": 0.01,
- "identifier": "ae269ba5-ac96-4a79-9a6d-e530189f2e46",
- "user_data": {},
- "geometry": {
- "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
- ]
- ],
- "type": "Polyline3D"
- },
- "display_name": "_unnamed_bldg_segment__5146e047",
- "fRsi_value": 0.75,
- "quantity": 1.0
- },
- "5035a5d0-6c7d-413e-b84c-e5d80a4d588b": {
- "_group_type": {
- "value": "15-AMBIENT"
- },
- "id_num": 0,
- "psi_value": 0.01,
- "identifier": "5035a5d0-6c7d-413e-b84c-e5d80a4d588b",
- "user_data": {},
- "geometry": {
- "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
- ]
- ],
- "type": "Polyline3D"
- },
- "display_name": "_unnamed_bldg_segment__fab8b0ae",
- "fRsi_value": 0.75,
- "quantity": 1.0
- },
- "a04d0494-85b7-4bfb-9f0d-19b9f1f6a0b6": {
- "_group_type": {
- "value": "15-AMBIENT"
- },
- "id_num": 0,
- "psi_value": 0.01,
- "identifier": "a04d0494-85b7-4bfb-9f0d-19b9f1f6a0b6",
- "user_data": {},
- "geometry": {
- "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
- ]
- ],
- "type": "Polyline3D"
- },
- "display_name": "_unnamed_bldg_segment__ff3f1aa5",
- "fRsi_value": 0.75,
- "quantity": 1.0
- },
- "fd39d0ca-8fb7-47aa-9a4f-c5502d79532a": {
- "_group_type": {
- "value": "15-AMBIENT"
- },
- "id_num": 0,
- "psi_value": 0.01,
- "identifier": "fd39d0ca-8fb7-47aa-9a4f-c5502d79532a",
- "user_data": {},
- "geometry": {
- "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
- ]
- ],
- "type": "Polyline3D"
- },
- "display_name": "_unnamed_bldg_segment__773a180f",
- "fRsi_value": 0.75,
- "quantity": 1.0
- },
- "30991452-7c0c-46d6-9f58-4c81be8686ee": {
- "_group_type": {
- "value": "15-AMBIENT"
- },
- "id_num": 0,
- "psi_value": 0.01,
- "identifier": "30991452-7c0c-46d6-9f58-4c81be8686ee",
- "user_data": {},
- "geometry": {
- "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
- ]
- ],
- "type": "Polyline3D"
- },
- "display_name": "_unnamed_bldg_segment__89a3b1bb",
- "fRsi_value": 0.75,
- "quantity": 1.0
- },
- "b2610731-1342-4255-9453-3fa48811995c": {
- "_group_type": {
- "value": "15-AMBIENT"
- },
- "id_num": 0,
- "psi_value": 0.01,
- "identifier": "b2610731-1342-4255-9453-3fa48811995c",
- "user_data": {},
- "geometry": {
- "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
- ]
- ],
- "type": "Polyline3D"
- },
- "display_name": "_unnamed_bldg_segment__3989eb95",
- "fRsi_value": 0.75,
- "quantity": 1.0
- },
- "c2737556-a8e7-4f18-82b4-4ef2c4e3c48e": {
- "_group_type": {
- "value": "15-AMBIENT"
- },
- "id_num": 0,
- "psi_value": 0.01,
- "identifier": "c2737556-a8e7-4f18-82b4-4ef2c4e3c48e",
- "user_data": {},
- "geometry": {
- "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
- ]
- ],
- "type": "Polyline3D"
- },
- "display_name": "_unnamed_bldg_segment__cd5431c1",
- "fRsi_value": 0.75,
- "quantity": 1.0
- }
- }
- }
- ],
- "team": {
- "designer": {
- "post_code": null,
- "email": null,
- "telephone": null,
- "city": null,
- "name": null,
- "identifier": "3506fabb-791b-487e-af14-cd3b830a0d74",
- "user_data": {},
- "license_number": null,
- "display_name": "3506fabb-791b-487e-af14-cd3b830a0d74",
- "street": null
- },
- "building": {
- "post_code": null,
- "email": null,
- "telephone": null,
- "city": null,
- "name": null,
- "identifier": "517bdae3-f237-4562-babf-ef26a79876be",
- "user_data": {},
- "license_number": null,
- "display_name": "517bdae3-f237-4562-babf-ef26a79876be",
- "street": null
- },
- "identifier": "57d1b024-3314-4293-8a14-4708c04216eb",
- "user_data": {},
- "display_name": "57d1b024-3314-4293-8a14-4708c04216eb",
- "customer": {
- "post_code": null,
- "email": null,
- "telephone": null,
- "city": null,
- "name": null,
- "identifier": "c58a6c63-58bb-473b-815f-9f12d189668e",
- "user_data": {},
- "license_number": null,
- "display_name": "c58a6c63-58bb-473b-815f-9f12d189668e",
- "street": null
- },
- "owner": {
- "post_code": null,
- "email": null,
- "telephone": null,
- "city": null,
- "name": null,
- "identifier": "8f63df24-154b-4162-a631-e99d7e74b8b0",
- "user_data": {},
- "license_number": null,
- "display_name": "8f63df24-154b-4162-a631-e99d7e74b8b0",
- "street": null
- }
- },
- "type": "ModelPhPropertiesAbridged"
- },
- "ph_hvac": {
- "type": "ModelPhHvacPropertiesAbridged"
- }
- },
- "rooms": [
- {
- "properties": {
- "type": "RoomPropertiesAbridged",
- "radiance": {
- "type": "RoomRadiancePropertiesAbridged"
- },
- "energy": {
- "people": {
- "people_per_area": 0.050000000000000003,
- "latent_fraction": {
- "type": "Autocalculate"
- },
- "radiant_fraction": 0.29999999999999999,
- "properties": {
- "type": "PeopleProperties",
- "ph": {
- "dwellings": {
- "num_dwellings": 1,
- "identifier": "478e2e98-1fd8-4d74-8b26-17e075e59b85"
- },
- "id_num": 0,
- "number_people": 1,
- "type": "PeoplePhProperties",
- "number_bedrooms": 1
- }
- },
- "activity_schedule": "Seated Adult Activity",
- "identifier": "Generic Office People",
- "type": "PeopleAbridged",
- "occupancy_schedule": "Generic Office Occupancy"
- },
- "program_type": "Generic Office Program",
- "construction_set": "ConstructionSet_33ea2f45",
- "service_hot_water": {
- "flow_per_area": 5.0000000000000002e-05,
- "latent_fraction": 0.050000000000000003,
- "identifier": "Room_3_8edb1377_service_hot_water",
- "sensible_fraction": 0.20000000000000001,
- "schedule": "Always On",
- "type": "ServiceHotWaterAbridged",
- "target_temperature": 60.0
- },
- "hvac": "Room_3_8edb1377 Ideal Loads Air System",
- "type": "RoomEnergyPropertiesAbridged",
- "electric_equipment": {
- "latent_fraction": 0.0,
- "radiant_fraction": 0.5,
- "watts_per_area": 10.330000000000000,
- "properties": {
- "type": "ElectricEquipmentProperties",
- "ph": {
- "type": "ElectricEquipmentPhProperties",
- "equipment_collection": {
- "equipment_set": {
- "7c99a20c-cd71-4f61-ab56-61b2b812552b": {
- "modified_energy_factor": 2.7000000000000002,
- "reference_quantity": 1,
- "comment": "default",
- "combined_energy_factor": 0,
- "energy_demand": 120,
- "capacity": 0.12740000000000001,
- "identifier": "7c99a20c-cd71-4f61-ab56-61b2b812552b",
- "in_conditioned_space": true,
- "reference_energy_norm": 2,
- "equipment_type": "PhClothesWasher",
- "user_data": {},
- "_water_connection": {
- "value": "2-COLD WATER CONNECTION"
- },
- "display_name": "Laundry - washer",
- "energy_demand_per_use": 0,
- "utilization_factor": 1.0,
- "quantity": 1
- },
- "12e46447-82cc-453a-b25a-d5a77e51f92f": {
- "_cooktop_type": {
- "value": "1-ELECTRICITY"
- },
- "reference_quantity": 1,
- "comment": "default",
- "combined_energy_factor": 0,
- "energy_demand": 0.20000000000000001,
- "identifier": "12e46447-82cc-453a-b25a-d5a77e51f92f",
- "in_conditioned_space": true,
- "reference_energy_norm": 1,
- "equipment_type": "PhCooktop",
- "user_data": {},
- "display_name": "Kitchen cooking",
- "energy_demand_per_use": 0,
- "quantity": 1
- },
- "7b46d219-e2e7-4846-8f42-c8874f6802fc": {
- "reference_quantity": 1,
- "comment": "default",
- "combined_energy_factor": 0,
- "energy_demand": 269,
- "capacity_type": 1,
- "capacity": 12,
- "identifier": "7b46d219-e2e7-4846-8f42-c8874f6802fc",
- "in_conditioned_space": true,
- "reference_energy_norm": 2,
- "equipment_type": "PhDishwasher",
- "user_data": {},
- "_water_connection": {
- "value": "2-COLD WATER CONNECTION"
- },
- "display_name": "Kitchen dishwasher",
- "energy_demand_per_use": 0,
- "quantity": 1
- },
- "50c3711e-b5c5-4716-b7fb-75beda06b09f": {
- "frac_high_efficiency": 1.0,
- "reference_quantity": 6,
- "comment": "default",
- "combined_energy_factor": 0,
- "energy_demand": 0,
- "identifier": "50c3711e-b5c5-4716-b7fb-75beda06b09f",
- "in_conditioned_space": false,
- "reference_energy_norm": 1,
- "equipment_type": "PhPhiusLightingExterior",
- "user_data": {},
- "display_name": "PHIUS+ Exterior Lighting",
- "energy_demand_per_use": 0,
- "quantity": 1
- },
- "9218fba4-e37e-4eae-9434-4348855f64fc": {
- "reference_quantity": 4,
- "comment": "default",
- "combined_energy_factor": 0,
- "energy_demand": 1.2200000000000000,
- "identifier": "9218fba4-e37e-4eae-9434-4348855f64fc",
- "in_conditioned_space": true,
- "reference_energy_norm": 1,
- "equipment_type": "PhFridgeFreezer",
- "user_data": {},
- "display_name": "Kitchen fridge/freeze combo",
- "energy_demand_per_use": 0,
- "quantity": 1
- },
- "3410c641-73d3-471c-ab98-d9a958177ee9": {
- "frac_high_efficiency": 1.0,
- "reference_quantity": 6,
- "comment": "default",
- "combined_energy_factor": 0,
- "energy_demand": 0,
- "identifier": "3410c641-73d3-471c-ab98-d9a958177ee9",
- "in_conditioned_space": true,
- "reference_energy_norm": 1,
- "equipment_type": "PhPhiusLightingInterior",
- "user_data": {},
- "display_name": "PHIUS+ Interior Lighting",
- "energy_demand_per_use": 0,
- "quantity": 1
- },
- "19994bd7-a0c0-47b2-a47f-a880e2efe503": {
- "reference_quantity": 3,
- "comment": "default",
- "combined_energy_factor": 0,
- "energy_demand": 0,
- "identifier": "19994bd7-a0c0-47b2-a47f-a880e2efe503",
- "in_conditioned_space": true,
- "reference_energy_norm": 1,
- "equipment_type": "PhPhiusMEL",
- "user_data": {},
- "display_name": "PHIUS+ MELS",
- "energy_demand_per_use": 0,
- "quantity": 1
- },
- "7d24326c-6293-45fd-8658-4497687cd309": {
- "field_utilization_factor_type": 1,
- "reference_quantity": 1,
- "comment": "default",
- "field_utilization_factor": 1.1799999999999999,
- "combined_energy_factor": 3.9300000000000002,
- "energy_demand": 0,
- "_dryer_type": {
- "value": "5-ELECTRIC EXHAUST AIR DRYER"
- },
- "gas_consumption": 0,
- "identifier": "7d24326c-6293-45fd-8658-4497687cd309",
- "in_conditioned_space": true,
- "reference_energy_norm": 2,
- "equipment_type": "PhClothesDryer",
- "user_data": {},
- "gas_efficiency_factor": 2.6699999999999999,
- "display_name": "Laundry - dryer",
- "energy_demand_per_use": 0,
- "quantity": 1
- }
- }
- }
- }
- },
- "identifier": "Generic Office Equipment_4c1a4853",
- "schedule": "Generic Office Equipment",
- "lost_fraction": 0.0,
- "type": "ElectricEquipmentAbridged"
- }
- },
- "ph": {
- "ph_foundations": [],
- "spaces": [
+ }
+ },
+ "ph": {
+ "type": "RoomPhPropertiesAbridged",
+ "ph_bldg_segment_id": "19f7b0a4-8d2d-4aac-8958-34d179c217ba",
+ "specific_heat_capacity": "1-LIGHTWEIGHT",
+ "ph_foundations": [],
+ "spaces": [
{
+ "quantity": 1,
"number": "101",
- "properties": {
- "type": "SpaceProperties",
- "energy": {
- "id_num": 0,
- "type": "SpaceEnergyProperties"
- },
- "ph": {
- "id_num": 0,
- "_v_sup": null,
- "_v_eta": null,
- "type": "SpacePhProperties",
- "_v_tran": null
- }
- },
+ "identifier": "453c4b0f-ceb7-49e5-a974-73e905d51ca6",
+ "wufi_type": 99,
"volumes": [
{
+ "identifier": "bf0bd915-3a4c-40db-a86e-1294337cbac9",
"avg_ceiling_height": 2.75,
- "identifier": "9fb0f843-b325-4ee1-826e-199157c8273d",
- "user_data": {},
"geometry": [
{
"boundary": [
@@ -3632,8 +1134,13 @@
0.0
]
],
- "type": "Face3D",
"plane": {
+ "type": "Plane",
+ "n": [
+ -0.98480775301220813,
+ 0.17364817766693041,
+ 0.0
+ ],
"o": [
-0.12690121986096739,
-9.3870163468138124,
@@ -3643,14 +1150,9 @@
0.17364817766693041,
0.98480775301220813,
0.0
- ],
- "type": "Plane",
- "n": [
- -0.98480775301220813,
- 0.17364817766693041,
- 0.0
]
- }
+ },
+ "type": "Face3D"
},
{
"boundary": [
@@ -3675,8 +1177,13 @@
0.0
]
],
- "type": "Face3D",
"plane": {
+ "type": "Plane",
+ "n": [
+ 0.17364817766692997,
+ 0.98480775301220813,
+ 0.0
+ ],
"o": [
0.44613776643990277,
-6.1371507618735270,
@@ -3686,14 +1193,9 @@
0.98480775301220813,
-0.17364817766692997,
0.0
- ],
- "type": "Plane",
- "n": [
- 0.17364817766692997,
- 0.98480775301220813,
- 0.0
]
- }
+ },
+ "type": "Face3D"
},
{
"boundary": [
@@ -3718,8 +1220,13 @@
0.0
]
],
- "type": "Face3D",
"plane": {
+ "type": "Plane",
+ "n": [
+ 0.98480775301220813,
+ -0.17364817766693033,
+ 0.0
+ ],
"o": [
3.6960033513801895,
-6.7101897481743960,
@@ -3729,14 +1236,9 @@
-0.17364817766693033,
-0.98480775301220813,
0.0
- ],
- "type": "Plane",
- "n": [
- 0.98480775301220813,
- -0.17364817766693033,
- 0.0
]
- }
+ },
+ "type": "Face3D"
},
{
"boundary": [
@@ -3761,8 +1263,13 @@
0.0
]
],
- "type": "Face3D",
"plane": {
+ "type": "Plane",
+ "n": [
+ -0.1736481776669305,
+ -0.98480775301220802,
+ 0.0
+ ],
"o": [
3.1229643650793193,
-9.9600553331146831,
@@ -3772,14 +1279,9 @@
-0.98480775301220802,
0.1736481776669305,
0.0
- ],
- "type": "Plane",
- "n": [
- -0.1736481776669305,
- -0.98480775301220802,
- 0.0
]
- }
+ },
+ "type": "Face3D"
},
{
"boundary": [
@@ -3804,8 +1306,13 @@
0.0
]
],
- "type": "Face3D",
"plane": {
+ "type": "Plane",
+ "n": [
+ 0.0,
+ 0.0,
+ -1.0
+ ],
"o": [
0.44613776643990277,
-6.1371507618735270,
@@ -3815,14 +1322,9 @@
1.0,
0.0,
0.0
- ],
- "type": "Plane",
- "n": [
- 0.0,
- 0.0,
- -1.0
]
- }
+ },
+ "type": "Face3D"
},
{
"boundary": [
@@ -3847,8 +1349,13 @@
2.75
]
],
- "type": "Face3D",
"plane": {
+ "type": "Plane",
+ "n": [
+ 0.0,
+ 0.0,
+ 1.0
+ ],
"o": [
3.1229643650793193,
-9.9600553331146831,
@@ -3858,25 +1365,19 @@
1.0,
0.0,
0.0
- ],
- "type": "Plane",
- "n": [
- 0.0,
- 0.0,
- 1.0
]
- }
+ },
+ "type": "Face3D"
}
],
- "display_name": "9fb0f843-b325-4ee1-826e-199157c8273d",
+ "display_name": "bf0bd915-3a4c-40db-a86e-1294337cbac9",
+ "user_data": {},
"floor": {
- "identifier": "d35f2a86-5e99-4031-b5a7-e0cc7893d985",
- "user_data": {},
+ "identifier": "607bd093-c511-4177-b731-2c3f505c0ce3",
"floor_segments": [
{
- "identifier": "c32ec0fc-2ef2-484d-82e1-25c738862b60",
- "floor_area": 10.890000000000001,
- "user_data": {},
+ "identifier": "41e2e1f7-2bce-471e-a9b1-fe3c8df934d4",
+ "weighting_factor": 1.0,
"geometry": {
"boundary": [
[
@@ -3900,8 +1401,13 @@
0.0
]
],
- "type": "Face3D",
"plane": {
+ "type": "Plane",
+ "n": [
+ 0.0,
+ 0.0,
+ 1.0
+ ],
"o": [
-0.12690121986096739,
-9.3870163468138124,
@@ -3911,24 +1417,20 @@
1.0,
0.0,
0.0
- ],
- "type": "Plane",
- "n": [
- 0.0,
- 0.0,
- 1.0
]
- }
+ },
+ "type": "Face3D"
},
- "display_name": "c32ec0fc-2ef2-484d-82e1-25c738862b60",
+ "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,
- "z": 0.11000000000000001,
- "x": 1.7845510657596111
- },
- "weighting_factor": 1.0,
- "weighted_floor_area": 10.890000000000001
+ "x": 1.7845510657596111,
+ "z": 0.11000000000000001
+ }
}
],
"geometry": {
@@ -3954,8 +1456,13 @@
0.0
]
],
- "type": "Face3D",
"plane": {
+ "type": "Plane",
+ "n": [
+ 0.0,
+ 0.0,
+ 1.0
+ ],
"o": [
-0.12690121986096739,
-9.3870163468138124,
@@ -3965,1436 +1472,1430 @@
1.0,
0.0,
0.0
- ],
- "type": "Plane",
- "n": [
- 0.0,
- 0.0,
- 1.0
]
- }
+ },
+ "type": "Face3D"
},
- "display_name": "d35f2a86-5e99-4031-b5a7-e0cc7893d985"
+ "display_name": "607bd093-c511-4177-b731-2c3f505c0ce3",
+ "user_data": {}
}
}
],
- "name": "Room_3",
- "identifier": "9dc7e1b0-b1d7-4e13-bf8a-f2dd5d5b4742",
+ "name": "Room_7",
"user_data": {},
- "wufi_type": 99,
- "quantity": 1
+ "properties": {
+ "type": "SpaceProperties",
+ "energy": {
+ "type": "SpaceEnergyProperties",
+ "id_num": 0
+ },
+ "ph": {
+ "_v_eta": null,
+ "type": "SpacePhProperties",
+ "_v_tran": null,
+ "_v_sup": null,
+ "id_num": 0
+ }
+ }
}
- ],
- "specific_heat_capacity": "1-LIGHTWEIGHT",
- "ph_bldg_segment_id": "8cdb4c0b-6ae7-482d-b717-75a7086bfcc5",
- "type": "RoomPhPropertiesAbridged"
+ ]
},
"ph_hvac": {
- "renewable_devices": [
+ "supportive_devices": [
{
- "percent_coverage": 1.0,
- "photovoltaic_renewable_energy": 1000.0,
- "array_size": 0.0,
- "device_typename": "PhPhotovoltaicDevice",
- "identifier": "20899181-049b-4a58-9b4f-4c6ce436d8f9",
- "utilization_factor": 1.0,
- "user_data": {},
- "display_name": "my_PV_system"
+ "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": {}
+ },
+ "percent_coverage": 1.0,
"ventilation": {
- "capacity": 10.0,
- "identifier": "d07d3b01-e514-4a14-8f1c-9ee503872a6b",
+ "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": {},
- "annual_COP": 4.0,
- "display_name": "d07d3b01-e514-4a14-8f1c-9ee503872a6b",
+ "capacity": 10.0,
"single_speed": false
},
- "percent_coverage": 1.0,
"panel": {
- "identifier": "2888fdf9-ec59-4872-8c2f-be32dfbc042d",
- "used": false,
- "user_data": {},
+ "identifier": "643be117-1afd-49ca-b9ec-3ec55d0b33e9",
"annual_COP": 4.0,
- "display_name": "2888fdf9-ec59-4872-8c2f-be32dfbc042d"
- },
- "dehumidification": {
- "identifier": "ba7d8161-f4f2-44d1-b367-8f38ec4cbf99",
- "used": true,
- "user_data": {},
- "annual_COP": 2.0,
- "display_name": "_unnamed_dehumidification_cooling__52832dc6",
- "useful_heat_loss": false
+ "used": false,
+ "display_name": "643be117-1afd-49ca-b9ec-3ec55d0b33e9",
+ "user_data": {}
},
"recirculation": {
- "flow_rate_m3_hr": 100.08000000000000,
- "flow_rate_variable": true,
- "capacity": 10.0,
- "identifier": "abfba1df-4ea5-4bc4-a115-963e9a5383d9",
+ "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": {},
- "annual_COP": 2.0,
- "display_name": "_unnamed_recirculation_cooling__76d5c5ee",
+ "capacity": 10.0,
+ "flow_rate_variable": true,
"single_speed": false
}
},
- "percent_coverage": 1.0,
- "identifier": "78e866d2-8254-4c46-a299-26eb6e23c852",
- "user_data": {},
- "display_name": "78e866d2-8254-4c46-a299-26eb6e23c852",
- "ambient_temp_1": -3.3300000000000001,
- "heat_pump_class_name": "PhHeatPumpRatedMonthly",
- "ambient_temp_2": 12.0
+ "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": {}
+ },
+ "percent_coverage": 1.0,
"ventilation": {
- "capacity": 10.0,
- "identifier": "72cfbea0-6146-4055-9c7f-6b6d8086c43b",
+ "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": {},
- "annual_COP": 4.0,
- "display_name": "72cfbea0-6146-4055-9c7f-6b6d8086c43b",
+ "capacity": 10.0,
"single_speed": false
},
- "percent_coverage": 1.0,
"panel": {
- "identifier": "ed58f62b-a550-4e50-b890-6539336ff9fb",
- "used": false,
- "user_data": {},
+ "identifier": "97782c4d-79a4-4bed-b12d-f6df89a03579",
"annual_COP": 4.0,
- "display_name": "ed58f62b-a550-4e50-b890-6539336ff9fb"
- },
- "dehumidification": {
- "identifier": "d13a3dbb-168c-4d8d-8a0c-8e0a914a29bd",
"used": false,
- "user_data": {},
- "annual_COP": 4.0,
- "display_name": "d13a3dbb-168c-4d8d-8a0c-8e0a914a29bd",
- "useful_heat_loss": false
+ "display_name": "97782c4d-79a4-4bed-b12d-f6df89a03579",
+ "user_data": {}
},
"recirculation": {
- "flow_rate_m3_hr": 100.0,
- "flow_rate_variable": true,
- "capacity": 10.0,
- "identifier": "76d68e14-fb24-4124-83c5-3b8810d57260",
+ "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": {},
- "annual_COP": 4.0,
- "display_name": "76d68e14-fb24-4124-83c5-3b8810d57260",
+ "capacity": 10.0,
+ "flow_rate_variable": true,
"single_speed": false
}
},
- "percent_coverage": 1.0,
- "identifier": "fe16251c-0be9-4a00-b31e-cdc94911f9e2",
+ "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": {},
- "display_name": "fe16251c-0be9-4a00-b31e-cdc94911f9e2",
- "ambient_temp_1": -8.3330000000000002,
- "heat_pump_class_name": "PhHeatPumpRatedMonthly",
- "ambient_temp_2": 8.3330000000000002
+ "exhaust_flow_rate_m3s": 123.0
}
],
- "id_num": 0,
"ventilation_system": {
- "id_num": 0,
- "identifier": "045cfc79-dfdd-431b-a279-b72453466814",
- "exhaust_ducting": [
+ "sys_type": 1,
+ "identifier": "d2f7d12d-d4a2-4dc3-a6e3-15b3767201e0",
+ "supply_ducting": [
{
- "duct_type": 2,
- "identifier": "109a9d75-ce91-4af0-bb1c-c318418f2d78",
+ "identifier": "de19ed8e-9e6e-4ef8-b598-cf50244b5a19",
+ "display_name": "__unnamed_vent_duct__",
"user_data": {},
"segments": {
- "67c048bf-4b66-4192-b9e0-2be6e2bf6b93": {
+ "6347b2fe-5b4d-4be6-a77f-3bc07bf92672": {
+ "identifier": "6347b2fe-5b4d-4be6-a77f-3bc07bf92672",
"insulation_conductivity": 0.040000000000000001,
- "insulation_thickness": 0.02794,
- "identifier": "67c048bf-4b66-4192-b9e0-2be6e2bf6b93",
- "insulation_reflective": true,
- "user_data": {},
+ "diameter": 0.17600000000000002,
"geometry": {
- "v": [
- 1.0832885283134288,
- -0.19101299543362338,
- 0.0
- ],
+ "type": "LineSegment3D",
"p": [
0.0,
-5.5,
0.0
],
- "type": "LineSegment3D"
+ "v": [
+ 0.0,
+ 0.0,
+ 1.1000000000000001
+ ]
},
- "display_name": "67c048bf-4b66-4192-b9e0-2be6e2bf6b93",
- "diameter": 0.17600000000000002,
+ "display_name": "6347b2fe-5b4d-4be6-a77f-3bc07bf92672",
+ "user_data": {},
+ "insulation_reflective": true,
"height": null,
+ "insulation_thickness": 0.02794,
"width": null
}
},
- "display_name": "Test_Vent_System_exhaust"
+ "duct_type": 1
}
],
- "user_data": {},
- "sys_type": 1,
- "display_name": "Test_Vent_System",
- "ventilation_unit": {
- "sensible_heat_recovery": 0.82999999999999996,
- "latent_heat_recovery": 0.0,
- "frost_protection_reqd": true,
- "temperature_below_defrost_used": -5.0,
- "identifier": "4bdf544a-d68c-4bde-a3cb-29a8a890cb0a",
- "in_conditioned_space": true,
- "electric_efficiency": 0.33300000000000002,
- "user_data": {},
- "display_name": "Test_Unit",
- "quantity": 1
- },
- "supply_ducting": [
+ "exhaust_ducting": [
{
- "duct_type": 1,
- "identifier": "a4797c6a-cfd0-4e03-8c1d-f73a64e44430",
+ "identifier": "2d3324ad-7a35-42d6-90a2-7d799551bdd7",
+ "display_name": "Test_Vent_System_exhaust",
"user_data": {},
"segments": {
- "55ba1a90-d5e0-4618-b385-bf4737716555": {
+ "0908a6fd-d377-4cc5-a114-761b1857bae0": {
+ "identifier": "0908a6fd-d377-4cc5-a114-761b1857bae0",
"insulation_conductivity": 0.040000000000000001,
- "insulation_thickness": 0.02794,
- "identifier": "55ba1a90-d5e0-4618-b385-bf4737716555",
- "insulation_reflective": true,
- "user_data": {},
+ "diameter": 0.17600000000000002,
"geometry": {
- "v": [
- 0.0,
- 0.0,
- 1.1000000000000001
- ],
+ "type": "LineSegment3D",
"p": [
0.0,
-5.5,
0.0
],
- "type": "LineSegment3D"
+ "v": [
+ 1.0832885283134288,
+ -0.19101299543362338,
+ 0.0
+ ]
},
- "display_name": "55ba1a90-d5e0-4618-b385-bf4737716555",
- "diameter": 0.17600000000000002,
+ "display_name": "0908a6fd-d377-4cc5-a114-761b1857bae0",
+ "user_data": {},
+ "insulation_reflective": true,
"height": null,
+ "insulation_thickness": 0.02794,
"width": null
}
},
- "display_name": "__unnamed_vent_duct__"
+ "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": {}
+ },
+ "display_name": "Test_Vent_System",
+ "user_data": {},
+ "id_num": 0
},
- "exhaust_vent_devices": [
+ "renewable_devices": [
{
- "device_class_name": "ExhaustVentDryer",
- "annual_runtime_minutes": 7.625,
- "identifier": "53e48776-8b4f-4df6-a4b0-3ff34f954690",
- "user_data": {},
- "display_name": "example_dryer_vent",
- "exhaust_flow_rate_m3s": 123.0,
- "quantity": 1
+ "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": {}
}
],
- "heating_systems": [],
"hot_water_system": {
- "recirc_temp": 48.0,
- "heaters": {
- "5ca7195b-f8db-4e3e-8483-216fd733930b": {
- "annual_system_perf_ratio": null,
- "percent_coverage": 1.0,
- "annual_energy_factor": null,
- "heater_type": "PhHvacHotWaterHeaterHeatPump",
- "identifier": "5ca7195b-f8db-4e3e-8483-216fd733930b",
- "in_conditioned_space": true,
- "user_data": {},
- "annual_COP": null,
- "display_name": "5ca7195b-f8db-4e3e-8483-216fd733930b"
- }
- },
- "recirc_piping": {
- "fe547564-e374-4f3d-917a-c18c45597a52": {
- "user_data": {},
- "identifier": "fe547564-e374-4f3d-917a-c18c45597a52",
- "segments": {
- "8d0e6c1e-b730-4268-afad-37beffb9b0f5": {
- "insulation_thickness_mm": 25.399999999999999,
- "material_value": "2-COPPER_L",
- "insulation_conductivity": 0.040000000000000001,
- "insulation_quality": null,
- "daily_period": 23.0,
- "identifier": "8d0e6c1e-b730-4268-afad-37beffb9b0f5",
- "insulation_reflective": true,
- "user_data": {},
- "geometry": {
- "v": [
- 0.0,
- 0.0,
- 1.1000000000000001
- ],
- "p": [
- 0.0,
- -5.5,
- 0.0
- ],
- "type": "LineSegment3D"
- },
- "diameter_mm": 25.399999999999999,
- "display_name": "8d0e6c1e-b730-4268-afad-37beffb9b0f5",
- "water_temp_c": 48.0
- }
- },
- "display_name": "_unnamed_"
- }
- },
- "id_num": 0,
- "identifier": "b67cdaff-bcfd-42cc-add6-44b0f14396e6",
- "recirc_hours": 23,
- "display_name": "SHW System_bbe98316",
"tank_solar": {
- "room_temp": 20,
+ "quantity": 1,
+ "identifier": "0a5084de-b18b-40a8-9049-ba31e15af4b4",
"_tank_type": {
"value": "2-DHW ONLY"
},
- "solar_losses": 0.0,
- "standby_fraction": 0.29999999999999999,
- "identifier": "50029ccb-c3c1-4649-ac77-dd30678d9015",
- "in_conditioned_space": true,
"storage_loss_rate": 0.0,
- "user_data": {},
- "display_name": "_unnamed_hw_tank_",
+ "room_temp": 20,
"standby_losses": 4.0,
+ "solar_losses": 0.0,
+ "in_conditioned_space": true,
"solar_connection": false,
- "water_temp": 60,
"storage_capacity": 300,
- "quantity": 1
+ "water_temp": 60,
+ "display_name": "_unnamed_hw_tank_",
+ "user_data": {},
+ "standby_fraction": 0.29999999999999999
},
- "number_tap_points": 1,
- "type": "PhHvacHotWaterSystemPh",
"distribution_piping": {
- "6d20a51e-0914-445c-b3d0-c30f45b0e6b1": {
+ "52da9111-c954-42b0-ae14-f6dbb9200dc2": {
"pipe_element": {
- "user_data": {},
- "identifier": "69179a65-8ad5-4534-a531-bfa04a631a60",
"segments": {
- "ff483dc1-7bf0-4a2b-a824-591afb31be8d": {
+ "c09cb591-948b-427a-98dc-b4a82ff4c4b9": {
+ "water_temp_c": 60.0,
"insulation_thickness_mm": 0.0,
- "material_value": "6-PEX",
- "insulation_conductivity": 0.040000000000000001,
"insulation_quality": null,
+ "identifier": "c09cb591-948b-427a-98dc-b4a82ff4c4b9",
"daily_period": 24,
- "identifier": "ff483dc1-7bf0-4a2b-a824-591afb31be8d",
- "insulation_reflective": false,
- "user_data": {},
+ "insulation_conductivity": 0.040000000000000001,
+ "diameter_mm": 38.099999999999994,
+ "material_value": "6-PEX",
"geometry": {
- "v": [
- 0.0,
- 0.0,
- 5.5
- ],
+ "type": "LineSegment3D",
"p": [
0.0,
-5.5,
0.0
],
- "type": "LineSegment3D"
+ "v": [
+ 0.0,
+ 0.0,
+ 5.5
+ ]
},
- "diameter_mm": 38.099999999999994,
- "display_name": "ff483dc1-7bf0-4a2b-a824-591afb31be8d",
- "water_temp_c": 60.0
+ "display_name": "c09cb591-948b-427a-98dc-b4a82ff4c4b9",
+ "user_data": {},
+ "insulation_reflective": false
}
},
- "display_name": "69179a65-8ad5-4534-a531-bfa04a631a60"
+ "display_name": "656084b1-6699-4039-9c70-4259b9ee9aaa",
+ "user_data": {},
+ "identifier": "656084b1-6699-4039-9c70-4259b9ee9aaa"
},
- "multiplier": 1,
- "identifier": "6d20a51e-0914-445c-b3d0-c30f45b0e6b1",
- "user_data": {},
+ "identifier": "52da9111-c954-42b0-ae14-f6dbb9200dc2",
"branches": {
- "80a121de-a215-4bd1-bb75-e96c4d01f2d5": {
+ "34c0656a-8c43-4f3b-b40d-dececebb8ba9": {
"pipe_element": {
- "user_data": {},
- "identifier": "5a14dcb5-339e-4684-bdea-f16867d818fe",
"segments": {
- "aab94953-bced-41f5-a114-694766d20c85": {
+ "03ca1a3f-9acd-42ae-977c-64275f41c079": {
+ "water_temp_c": 60.0,
"insulation_thickness_mm": 0.0,
- "material_value": "3-COPPER_K",
- "insulation_conductivity": 0.040000000000000001,
"insulation_quality": null,
+ "identifier": "03ca1a3f-9acd-42ae-977c-64275f41c079",
"daily_period": 24,
- "identifier": "aab94953-bced-41f5-a114-694766d20c85",
- "insulation_reflective": false,
- "user_data": {},
+ "insulation_conductivity": 0.040000000000000001,
+ "diameter_mm": 19.049999999999997,
+ "material_value": "3-COPPER_K",
"geometry": {
- "v": [
- 0.0,
- 0.0,
- 5.5
- ],
+ "type": "LineSegment3D",
"p": [
0.0,
-5.5,
0.0
],
- "type": "LineSegment3D"
+ "v": [
+ 0.0,
+ 0.0,
+ 5.5
+ ]
},
- "diameter_mm": 19.049999999999997,
- "display_name": "aab94953-bced-41f5-a114-694766d20c85",
- "water_temp_c": 60.0
+ "display_name": "03ca1a3f-9acd-42ae-977c-64275f41c079",
+ "user_data": {},
+ "insulation_reflective": false
}
},
- "display_name": "5a14dcb5-339e-4684-bdea-f16867d818fe"
+ "display_name": "499b3dc8-7ea9-4723-b5d4-661e52e8a115",
+ "user_data": {},
+ "identifier": "499b3dc8-7ea9-4723-b5d4-661e52e8a115"
},
- "identifier": "80a121de-a215-4bd1-bb75-e96c4d01f2d5",
- "user_data": {},
- "display_name": "Test_Branch",
"fixtures": {
- "87d139a1-e0a5-488c-9129-3112280b2a55": {
- "user_data": {},
- "identifier": "87d139a1-e0a5-488c-9129-3112280b2a55",
+ "681f4d66-4e1e-47bd-8991-fbe0d7331670": {
"segments": {
- "3216ce9f-e461-45ea-b13c-0a5bc636e2fd": {
+ "cfb54179-b9db-4d18-a4f9-955956f26f5d": {
+ "water_temp_c": 55.0,
"insulation_thickness_mm": 0.0,
- "material_value": "1-COPPER_M",
- "insulation_conductivity": 0.040000000000000001,
"insulation_quality": null,
+ "identifier": "cfb54179-b9db-4d18-a4f9-955956f26f5d",
"daily_period": 24,
- "identifier": "3216ce9f-e461-45ea-b13c-0a5bc636e2fd",
- "insulation_reflective": false,
- "user_data": {},
+ "insulation_conductivity": 0.040000000000000001,
+ "diameter_mm": 9.5249999999999986,
+ "material_value": "1-COPPER_M",
"geometry": {
- "v": [
- 0.0,
- 0.0,
- 5.5
- ],
+ "type": "LineSegment3D",
"p": [
0.0,
-5.5,
0.0
],
- "type": "LineSegment3D"
+ "v": [
+ 0.0,
+ 0.0,
+ 5.5
+ ]
},
- "diameter_mm": 9.5249999999999986,
- "display_name": "3216ce9f-e461-45ea-b13c-0a5bc636e2fd",
- "water_temp_c": 55.0
+ "display_name": "cfb54179-b9db-4d18-a4f9-955956f26f5d",
+ "user_data": {},
+ "insulation_reflective": false
}
},
- "display_name": "Test_Fixture"
+ "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": "Test_Trunk"
+ "display_name": "_unnamed_",
+ "user_data": {},
+ "identifier": "00c40aa7-3e15-46d9-9066-2f8bdbfa4f2d"
}
- }
+ },
+ "recirc_temp": 48.0,
+ "recirc_hours": 23,
+ "display_name": "SHW System_5a40001e",
+ "id_num": 0
},
- "supportive_devices": [
- {
- "annual_period_operation_khrs": 6.5,
- "device_class_name": "PhSupportiveDevice",
- "identifier": "61b6f1e1-42f8-42dd-b487-265d0ad3cf63",
- "in_conditioned_space": false,
- "user_data": {},
- "device_type": 10,
- "display_name": "Example Device",
- "norm_energy_demand_W": 123.0,
- "quantity": 3
- }
- ],
- "type": "RoomPhHvacPropertiesAbridged"
+ "id_num": 0
}
- },
- "story": "1",
+ }
+ },
+ {
+ "identifier": "Room_8_b1033aa6",
+ "type": "Room",
+ "display_name": "Room_8",
+ "story": "2",
"faces": [
{
"boundary_condition": {
+ "type": "Outdoors",
+ "sun_exposure": true,
"wind_exposure": true,
"view_factor": {
"type": "Autocalculate"
- },
- "type": "Outdoors",
- "sun_exposure": true
- },
- "properties": {
- "type": "FacePropertiesAbridged",
- "radiance": {
- "type": "FaceRadiancePropertiesAbridged"
- },
- "energy": {
- "type": "FaceEnergyPropertiesAbridged"
- },
- "ph": {
- "id_num": 0,
- "type": "FacePhPropertiesAbridged"
- },
- "ph_hvac": {
- "type": "FacePhHvacProperties"
}
},
+ "identifier": "Room_8_b1033aa6..Face0",
+ "type": "Face",
"face_type": "Wall",
- "identifier": "Room_3_8edb1377..Face0",
"geometry": {
"boundary": [
[
- 5.4164426415671443,
- -6.4550649771681172,
+ 12.999462339761147,
+ -7.7921559452034819,
3.3000000000000003
],
[
- 5.4164426415671443,
- -6.4550649771681172,
+ 12.999462339761147,
+ -7.7921559452034819,
0.0
],
[
- 0.0,
- -5.5,
+ 5.4164426415671443,
+ -6.4550649771681172,
0.0
],
[
- 0.0,
- -5.5,
+ 5.4164426415671443,
+ -6.4550649771681172,
3.3000000000000003
]
],
- "type": "Face3D",
"plane": {
+ "type": "Plane",
+ "n": [
+ 0.17364817766693047,
+ 0.98480775301220802,
+ 0.0
+ ],
"o": [
- 0.0,
- -5.5,
+ 5.4164426415671443,
+ -6.4550649771681172,
3.3000000000000003
],
"x": [
- 0.98480775301220813,
- -0.17364817766693041,
- 0.0
- ],
- "type": "Plane",
- "n": [
- 0.17364817766693041,
- 0.98480775301220813,
+ 0.98480775301220802,
+ -0.17364817766693047,
0.0
]
- }
+ },
+ "type": "Face3D"
},
- "display_name": "Room_3_8edb1377..Face0",
- "type": "Face",
+ "display_name": "Room_8_b1033aa6..Face0",
"apertures": [
{
- "is_operable": false,
"boundary_condition": {
+ "type": "Outdoors",
+ "sun_exposure": true,
"wind_exposure": true,
"view_factor": {
"type": "Autocalculate"
- },
- "type": "Outdoors",
- "sun_exposure": true
- },
- "properties": {
- "type": "AperturePropertiesAbridged",
- "radiance": {
- "type": "ApertureRadiancePropertiesAbridged"
- },
- "energy": {
- "type": "ApertureEnergyPropertiesAbridged"
- },
- "ph": {
- "id_num": 0,
- "default_monthly_shading_correction_factor": 1.0,
- "summer_shading_factor": 0.75,
- "winter_shading_factor": 0.75,
- "variant_type": "_unnamed_type_",
- "install_depth": 0.1016,
- "type": "AperturePhPropertiesAbridged"
- },
- "ph_hvac": {
- "type": "AperturePhHvacProperties"
}
},
- "identifier": "Room_3_8edb1377..Face0_Glz0",
+ "identifier": "Room_8_b1033aa6..Face0_Glz0",
+ "type": "Aperture",
"geometry": {
"boundary": [
[
- 4.5249514121994716,
- -6.2978710203656378,
+ 11.751374618646405,
+ -7.5720844056800098,
2.7568536488623963
],
[
- 4.5249514121994716,
- -6.2978710203656378,
+ 11.751374618646405,
+ -7.5720844056800098,
0.54314635113760423
],
[
- 0.89149122936767267,
- -5.6571939568024794,
+ 6.6645303626818855,
+ -6.6751365166915884,
0.54314635113760423
],
[
- 0.89149122936767267,
- -5.6571939568024794,
+ 6.6645303626818855,
+ -6.6751365166915884,
2.7568536488623963
]
],
- "type": "Face3D",
"plane": {
+ "type": "Plane",
+ "n": [
+ 0.17364817766693033,
+ 0.98480775301220813,
+ 0.0
+ ],
"o": [
- 0.89149122936767267,
- -5.6571939568024794,
+ 6.6645303626818855,
+ -6.6751365166915884,
2.7568536488623963
],
"x": [
0.98480775301220813,
- -0.17364817766693039,
- 0.0
- ],
- "type": "Plane",
- "n": [
- 0.17364817766693039,
- 0.98480775301220813,
+ -0.17364817766693033,
0.0
]
- }
+ },
+ "type": "Face3D"
},
- "display_name": "Room_3_8edb1377..Face0_Glz0",
- "type": "Aperture"
+ "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"
+ }
+ }
}
- ]
- },
- {
- "boundary_condition": {
- "boundary_condition_objects": [
- "Room_4_ffc07550..Face3",
- "Room_4_ffc07550"
- ],
- "type": "Surface"
- },
+ ],
"properties": {
- "type": "FacePropertiesAbridged",
"radiance": {
"type": "FaceRadiancePropertiesAbridged"
},
+ "type": "FacePropertiesAbridged",
"energy": {
"type": "FaceEnergyPropertiesAbridged"
},
"ph": {
- "id_num": 0,
- "type": "FacePhPropertiesAbridged"
+ "type": "FacePhPropertiesAbridged",
+ "id_num": 0
},
"ph_hvac": {
"type": "FacePhHvacProperties"
}
- },
- "face_type": "Wall",
- "identifier": "Room_3_8edb1377..Face1",
- "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
- ]
- ],
- "type": "Face3D",
- "plane": {
- "o": [
- 5.4164426415671443,
- -6.4550649771681172,
- 3.3000000000000003
- ],
- "x": [
- -0.1736481776669303,
- -0.98480775301220813,
- 0.0
- ],
- "type": "Plane",
- "n": [
- 0.98480775301220813,
- -0.1736481776669303,
- 0.0
- ]
- }
- },
- "display_name": "Room_3_8edb1377..Face1",
- "type": "Face"
+ }
},
{
"boundary_condition": {
+ "type": "Outdoors",
+ "sun_exposure": true,
"wind_exposure": true,
"view_factor": {
"type": "Autocalculate"
- },
- "type": "Outdoors",
- "sun_exposure": true
- },
- "properties": {
- "type": "FacePropertiesAbridged",
- "radiance": {
- "type": "FaceRadiancePropertiesAbridged"
- },
- "energy": {
- "type": "FaceEnergyPropertiesAbridged"
- },
- "ph": {
- "id_num": 0,
- "type": "FacePhPropertiesAbridged"
- },
- "ph_hvac": {
- "type": "FacePhHvacProperties"
}
},
+ "identifier": "Room_8_b1033aa6..Face1",
+ "type": "Face",
"face_type": "Wall",
- "identifier": "Room_3_8edb1377..Face2",
"geometry": {
"boundary": [
[
- -0.76405198173449351,
- -9.8331541132537161,
+ 12.235410358026652,
+ -12.125310058457197,
3.3000000000000003
],
[
- -0.76405198173449351,
- -9.8331541132537161,
+ 12.235410358026652,
+ -12.125310058457197,
0.0
],
[
- 4.6523906598326512,
- -10.788219090421832,
+ 12.999462339761147,
+ -7.7921559452034819,
0.0
],
[
- 4.6523906598326512,
- -10.788219090421832,
+ 12.999462339761147,
+ -7.7921559452034819,
3.3000000000000003
]
],
- "type": "Face3D",
"plane": {
+ "type": "Plane",
+ "n": [
+ 0.98480775301220802,
+ -0.17364817766693064,
+ 0.0
+ ],
"o": [
- 4.6523906598326512,
- -10.788219090421832,
+ 12.999462339761147,
+ -7.7921559452034819,
3.3000000000000003
],
"x": [
- -0.98480775301220813,
- 0.17364817766693011,
- 0.0
- ],
- "type": "Plane",
- "n": [
- -0.17364817766693011,
- -0.98480775301220813,
+ -0.17364817766693064,
+ -0.98480775301220802,
0.0
]
- }
+ },
+ "type": "Face3D"
},
- "display_name": "Room_3_8edb1377..Face2",
- "type": "Face",
+ "display_name": "Room_8_b1033aa6..Face1",
"apertures": [
{
- "is_operable": false,
"boundary_condition": {
+ "type": "Outdoors",
+ "sun_exposure": true,
"wind_exposure": true,
"view_factor": {
"type": "Autocalculate"
- },
- "type": "Outdoors",
- "sun_exposure": true
- },
- "properties": {
- "type": "AperturePropertiesAbridged",
- "radiance": {
- "type": "ApertureRadiancePropertiesAbridged"
- },
- "energy": {
- "type": "ApertureEnergyPropertiesAbridged"
- },
- "ph": {
- "id_num": 0,
- "default_monthly_shading_correction_factor": 1.0,
- "summer_shading_factor": 0.75,
- "winter_shading_factor": 0.75,
- "variant_type": "_unnamed_type_",
- "install_depth": 0.1016,
- "type": "AperturePhPropertiesAbridged"
- },
- "ph_hvac": {
- "type": "AperturePhHvacProperties"
}
},
- "identifier": "Room_3_8edb1377..Face2_Glz0",
+ "identifier": "Room_8_b1033aa6..Face1_Glz0",
+ "type": "Aperture",
"geometry": {
"boundary": [
[
- 0.12743924763317918,
- -9.9903480700561964,
+ 12.361165523468637,
+ -11.412117074963060,
2.7568536488623963
],
[
- 0.12743924763317918,
- -9.9903480700561964,
+ 12.361165523468637,
+ -11.412117074963060,
0.54314635113760423
],
[
- 3.7608994304649785,
- -10.631025133619353,
+ 12.873707174319163,
+ -8.5053489286976198,
0.54314635113760423
],
[
- 3.7608994304649785,
- -10.631025133619353,
+ 12.873707174319163,
+ -8.5053489286976198,
2.7568536488623963
]
],
- "type": "Face3D",
"plane": {
+ "type": "Plane",
+ "n": [
+ 0.98480775301220813,
+ -0.17364817766693014,
+ 0.0
+ ],
"o": [
- 3.7608994304649785,
- -10.631025133619353,
+ 12.873707174319163,
+ -8.5053489286976198,
2.7568536488623963
],
"x": [
- -0.98480775301220813,
- 0.17364817766692994,
- 0.0
- ],
- "type": "Plane",
- "n": [
- -0.17364817766692994,
+ -0.17364817766693014,
-0.98480775301220813,
0.0
]
- }
+ },
+ "type": "Face3D"
},
- "display_name": "Room_3_8edb1377..Face2_Glz0",
- "type": "Aperture"
+ "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"
+ }
+ }
}
- ]
- },
- {
- "boundary_condition": {
- "wind_exposure": true,
- "view_factor": {
- "type": "Autocalculate"
- },
- "type": "Outdoors",
- "sun_exposure": true
- },
+ ],
"properties": {
- "type": "FacePropertiesAbridged",
"radiance": {
"type": "FaceRadiancePropertiesAbridged"
},
+ "type": "FacePropertiesAbridged",
"energy": {
"type": "FaceEnergyPropertiesAbridged"
},
"ph": {
- "id_num": 0,
- "type": "FacePhPropertiesAbridged"
+ "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",
- "identifier": "Room_3_8edb1377..Face3",
"geometry": {
"boundary": [
[
- 0.0,
- -5.5,
+ 4.6523906598326512,
+ -10.788219090421832,
3.3000000000000003
],
[
- 0.0,
- -5.5,
+ 4.6523906598326512,
+ -10.788219090421832,
0.0
],
[
- -0.76405198173449351,
- -9.8331541132537161,
+ 12.235410358026652,
+ -12.125310058457197,
0.0
],
[
- -0.76405198173449351,
- -9.8331541132537161,
+ 12.235410358026652,
+ -12.125310058457197,
3.3000000000000003
]
],
- "type": "Face3D",
"plane": {
+ "type": "Plane",
+ "n": [
+ -0.17364817766693064,
+ -0.98480775301220802,
+ 0.0
+ ],
"o": [
- -0.76405198173449351,
- -9.8331541132537161,
+ 12.235410358026652,
+ -12.125310058457197,
3.3000000000000003
],
"x": [
- 0.17364817766693036,
- 0.98480775301220813,
- 0.0
- ],
- "type": "Plane",
- "n": [
- -0.98480775301220813,
- 0.17364817766693036,
+ -0.98480775301220802,
+ 0.17364817766693064,
0.0
]
- }
+ },
+ "type": "Face3D"
},
- "display_name": "Room_3_8edb1377..Face3",
- "type": "Face",
+ "display_name": "Room_8_b1033aa6..Face2",
"apertures": [
{
- "is_operable": false,
"boundary_condition": {
+ "type": "Outdoors",
+ "sun_exposure": true,
"wind_exposure": true,
"view_factor": {
"type": "Autocalculate"
- },
- "type": "Outdoors",
- "sun_exposure": true
- },
- "properties": {
- "type": "AperturePropertiesAbridged",
- "radiance": {
- "type": "ApertureRadiancePropertiesAbridged"
- },
- "energy": {
- "type": "ApertureEnergyPropertiesAbridged"
- },
- "ph": {
- "id_num": 0,
- "default_monthly_shading_correction_factor": 1.0,
- "summer_shading_factor": 0.75,
- "winter_shading_factor": 0.75,
- "variant_type": "_unnamed_type_",
- "install_depth": 0.1016,
- "type": "AperturePhPropertiesAbridged"
- },
- "ph_hvac": {
- "type": "AperturePhHvacProperties"
}
},
- "identifier": "Room_3_8edb1377..Face3_Glz0",
+ "identifier": "Room_8_b1033aa6..Face2_Glz0",
+ "type": "Aperture",
"geometry": {
"boundary": [
[
- -0.12575516544198348,
- -6.2131929834941388,
+ 5.9004783809473924,
+ -11.008290629945304,
2.7568536488623963
],
[
- -0.12575516544198348,
- -6.2131929834941388,
+ 5.9004783809473924,
+ -11.008290629945304,
0.54314635113760423
],
[
- -0.63829681629251001,
- -9.1199611297595773,
+ 10.987322636911911,
+ -11.905238518933727,
0.54314635113760423
],
[
- -0.63829681629251001,
- -9.1199611297595773,
+ 10.987322636911911,
+ -11.905238518933727,
2.7568536488623963
]
],
- "type": "Face3D",
"plane": {
+ "type": "Plane",
+ "n": [
+ -0.17364817766693069,
+ -0.98480775301220802,
+ 0.0
+ ],
"o": [
- -0.63829681629251001,
- -9.1199611297595773,
+ 10.987322636911911,
+ -11.905238518933727,
2.7568536488623963
],
"x": [
- 0.17364817766693039,
- 0.98480775301220813,
- 0.0
- ],
- "type": "Plane",
- "n": [
- -0.98480775301220813,
- 0.17364817766693039,
+ -0.98480775301220802,
+ 0.17364817766693069,
0.0
]
- }
+ },
+ "type": "Face3D"
},
- "display_name": "Room_3_8edb1377..Face3_Glz0",
- "type": "Aperture"
+ "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"
+ }
+ }
}
- ]
+ ],
+ "properties": {
+ "radiance": {
+ "type": "FaceRadiancePropertiesAbridged"
+ },
+ "type": "FacePropertiesAbridged",
+ "energy": {
+ "type": "FaceEnergyPropertiesAbridged"
+ },
+ "ph": {
+ "type": "FacePhPropertiesAbridged",
+ "id_num": 0
+ },
+ "ph_hvac": {
+ "type": "FacePhHvacProperties"
+ }
+ }
},
{
"boundary_condition": {
- "type": "Ground"
+ "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
+ ],
+ [
+ 4.6523906598326512,
+ -10.788219090421832,
+ 0.0
+ ],
+ [
+ 4.6523906598326512,
+ -10.788219090421832,
+ 3.3000000000000003
+ ]
+ ],
+ "plane": {
+ "type": "Plane",
+ "n": [
+ -0.98480775301220813,
+ 0.1736481776669303,
+ 0.0
+ ],
+ "o": [
+ 4.6523906598326512,
+ -10.788219090421832,
+ 3.3000000000000003
+ ],
+ "x": [
+ 0.1736481776669303,
+ 0.98480775301220813,
+ 0.0
+ ]
+ },
+ "type": "Face3D"
},
+ "display_name": "Room_8_b1033aa6..Face3",
"properties": {
- "type": "FacePropertiesAbridged",
"radiance": {
"type": "FaceRadiancePropertiesAbridged"
},
+ "type": "FacePropertiesAbridged",
"energy": {
"type": "FaceEnergyPropertiesAbridged"
},
"ph": {
- "id_num": 0,
- "type": "FacePhPropertiesAbridged"
+ "type": "FacePhPropertiesAbridged",
+ "id_num": 0
},
"ph_hvac": {
"type": "FacePhHvacProperties"
}
+ }
+ },
+ {
+ "boundary_condition": {
+ "type": "Ground"
},
+ "identifier": "Room_8_b1033aa6..Face4",
+ "type": "Face",
"face_type": "Floor",
- "identifier": "Room_3_8edb1377..Face4",
"geometry": {
"boundary": [
[
- 5.4164426415671443,
- -6.4550649771681172,
+ 12.999462339761147,
+ -7.7921559452034819,
0.0
],
[
- 4.6523906598326512,
- -10.788219090421832,
+ 12.235410358026652,
+ -12.125310058457197,
0.0
],
[
- -0.76405198173449351,
- -9.8331541132537161,
+ 4.6523906598326512,
+ -10.788219090421832,
0.0
],
[
- 0.0,
- -5.5,
+ 5.4164426415671443,
+ -6.4550649771681172,
0.0
]
],
- "type": "Face3D",
"plane": {
+ "type": "Plane",
+ "n": [
+ 0.0,
+ 0.0,
+ -1.0
+ ],
"o": [
- 5.4164426415671443,
- -6.4550649771681172,
+ 12.999462339761147,
+ -7.7921559452034819,
0.0
],
"x": [
1.0,
0.0,
0.0
- ],
- "type": "Plane",
- "n": [
- 0.0,
- 0.0,
- -1.0
]
- }
- },
- "display_name": "Room_3_8edb1377..Face4",
- "type": "Face"
- },
- {
- "boundary_condition": {
- "wind_exposure": true,
- "view_factor": {
- "type": "Autocalculate"
},
- "type": "Outdoors",
- "sun_exposure": true
+ "type": "Face3D"
},
+ "display_name": "Room_8_b1033aa6..Face4",
"properties": {
- "type": "FacePropertiesAbridged",
"radiance": {
"type": "FaceRadiancePropertiesAbridged"
},
+ "type": "FacePropertiesAbridged",
"energy": {
"type": "FaceEnergyPropertiesAbridged"
},
"ph": {
- "id_num": 0,
- "type": "FacePhPropertiesAbridged"
+ "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..Face5",
+ "type": "Face",
"face_type": "RoofCeiling",
- "identifier": "Room_3_8edb1377..Face5",
"geometry": {
"boundary": [
[
- 0.0,
- -5.5,
+ 5.4164426415671443,
+ -6.4550649771681172,
3.3000000000000003
],
[
- -0.76405198173449351,
- -9.8331541132537161,
+ 4.6523906598326512,
+ -10.788219090421832,
3.3000000000000003
],
[
- 4.6523906598326512,
- -10.788219090421832,
+ 12.235410358026652,
+ -12.125310058457197,
3.3000000000000003
],
[
- 5.4164426415671443,
- -6.4550649771681172,
+ 12.999462339761147,
+ -7.7921559452034819,
3.3000000000000003
]
],
- "type": "Face3D",
"plane": {
+ "type": "Plane",
+ "n": [
+ 0.0,
+ 0.0,
+ 1.0
+ ],
"o": [
- -0.76405198173449351,
- -9.8331541132537161,
+ 4.6523906598326512,
+ -10.788219090421832,
3.3000000000000003
],
"x": [
1.0,
0.0,
0.0
- ],
- "type": "Plane",
- "n": [
- 0.0,
- 0.0,
- 1.0
]
- }
+ },
+ "type": "Face3D"
},
- "display_name": "Room_3_8edb1377..Face5",
- "type": "Face",
+ "display_name": "Room_8_b1033aa6..Face5",
"apertures": [
{
- "is_operable": false,
"boundary_condition": {
+ "type": "Outdoors",
+ "sun_exposure": true,
"wind_exposure": true,
"view_factor": {
"type": "Autocalculate"
- },
- "type": "Outdoors",
- "sun_exposure": true
- },
- "properties": {
- "type": "AperturePropertiesAbridged",
- "radiance": {
- "type": "ApertureRadiancePropertiesAbridged"
- },
- "energy": {
- "type": "ApertureEnergyPropertiesAbridged"
- },
- "ph": {
- "id_num": 0,
- "default_monthly_shading_correction_factor": 1.0,
- "summer_shading_factor": 0.75,
- "winter_shading_factor": 0.75,
- "variant_type": "_unnamed_type_",
- "install_depth": 0.1016,
- "type": "AperturePhPropertiesAbridged"
- },
- "ph_hvac": {
- "type": "AperturePhHvacProperties"
}
},
- "identifier": "Room_3_8edb1377..Face5_Glz0",
+ "identifier": "Room_8_b1033aa6..Face5_Glz0",
+ "type": "Aperture",
"geometry": {
"boundary": [
[
- 0.6813268377680135,
- -6.2744417555921990,
+ 6.4150573432965654,
+ -7.2854531438280699,
3.3000000000000003
],
[
- 0.14106050030453293,
- -9.3384444130002837,
+ 5.8747910058330852,
+ -10.349455801236152,
3.3000000000000003
],
[
- 3.9710638220646373,
- -10.013777334829634,
+ 11.236795656297232,
+ -11.294921891797244,
3.3000000000000003
],
[
- 4.5113301595281179,
- -6.9497746774215505,
+ 11.777061993760713,
+ -8.2309192343891606,
3.3000000000000003
]
],
- "type": "Face3D",
"plane": {
+ "type": "Plane",
+ "n": [
+ 0.0,
+ 0.0,
+ 1.0
+ ],
"o": [
- 3.9710638220646373,
- -10.013777334829634,
+ 11.236795656297232,
+ -11.294921891797244,
3.3000000000000003
],
"x": [
1.0,
0.0,
0.0
- ],
- "type": "Plane",
- "n": [
- 0.0,
- 0.0,
- 1.0
]
- }
+ },
+ "type": "Face3D"
},
- "display_name": "Room_3_8edb1377..Face5_Glz0",
- "type": "Aperture"
+ "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"
+ },
+ "ph": {
+ "type": "FacePhPropertiesAbridged",
+ "id_num": 0
+ },
+ "ph_hvac": {
+ "type": "FacePhHvacProperties"
+ }
+ }
}
],
- "identifier": "Room_3_8edb1377",
- "display_name": "Room_3",
- "type": "Room"
- },
- {
"properties": {
- "type": "RoomPropertiesAbridged",
"radiance": {
"type": "RoomRadiancePropertiesAbridged"
},
+ "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"
},
- "radiant_fraction": 0.29999999999999999,
"properties": {
- "type": "PeopleProperties",
"ph": {
+ "type": "PeoplePhProperties",
"dwellings": {
- "num_dwellings": 2,
- "identifier": "e3a68d56-92d2-479c-b6fb-39d87fabe888"
+ "identifier": "9fcc776b-5962-4179-a68a-4413c9f2d751",
+ "num_dwellings": 2
},
"id_num": 0,
- "number_people": 2,
- "type": "PeoplePhProperties",
- "number_bedrooms": 2
- }
- },
- "activity_schedule": "Seated Adult Activity",
- "identifier": "Generic Office People",
- "type": "PeopleAbridged",
- "occupancy_schedule": "Generic Office Occupancy"
+ "number_bedrooms": 2,
+ "number_people": 2
+ },
+ "type": "PeopleProperties"
+ }
},
+ "hvac": "Room_8_b1033aa6 Ideal Loads Air System",
"program_type": "Generic Office Program",
- "construction_set": "ConstructionSet_b8e4c40b",
+ "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,
- "identifier": "Room_4_ffc07550_service_hot_water",
- "sensible_fraction": 0.20000000000000001,
- "schedule": "Always On",
- "type": "ServiceHotWaterAbridged",
- "target_temperature": 60.0
+ "sensible_fraction": 0.20000000000000001
},
- "hvac": "Room_4_ffc07550 Ideal Loads Air System",
- "type": "RoomEnergyPropertiesAbridged",
+ "construction_set": "ConstructionSet_ebe974d5",
"electric_equipment": {
- "latent_fraction": 0.0,
+ "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": {
- "type": "ElectricEquipmentProperties",
"ph": {
- "type": "ElectricEquipmentPhProperties",
"equipment_collection": {
"equipment_set": {
- "7c99a20c-cd71-4f61-ab56-61b2b812552b": {
- "modified_energy_factor": 2.7000000000000002,
- "reference_quantity": 1,
- "comment": "default",
+ "05dc66cd-589b-49d7-ac3d-d6073f870140": {
+ "quantity": 1,
"combined_energy_factor": 0,
- "energy_demand": 120,
- "capacity": 0.12740000000000001,
- "identifier": "7c99a20c-cd71-4f61-ab56-61b2b812552b",
- "in_conditioned_space": true,
+ "comment": "default",
"reference_energy_norm": 2,
- "equipment_type": "PhClothesWasher",
- "user_data": {},
+ "identifier": "05dc66cd-589b-49d7-ac3d-d6073f870140",
"_water_connection": {
"value": "2-COLD WATER CONNECTION"
},
- "display_name": "Laundry - washer",
- "energy_demand_per_use": 0,
- "utilization_factor": 1.0,
- "quantity": 1
- },
- "12e46447-82cc-453a-b25a-d5a77e51f92f": {
- "_cooktop_type": {
- "value": "1-ELECTRICITY"
- },
+ "energy_demand": 269,
+ "capacity_type": 1,
"reference_quantity": 1,
- "comment": "default",
- "combined_energy_factor": 0,
- "energy_demand": 0.20000000000000001,
- "identifier": "12e46447-82cc-453a-b25a-d5a77e51f92f",
"in_conditioned_space": true,
- "reference_energy_norm": 1,
- "equipment_type": "PhCooktop",
+ "equipment_type": "PhDishwasher",
+ "display_name": "Kitchen dishwasher",
"user_data": {},
- "display_name": "Kitchen cooking",
"energy_demand_per_use": 0,
- "quantity": 1
+ "capacity": 12
},
- "7b46d219-e2e7-4846-8f42-c8874f6802fc": {
- "reference_quantity": 1,
- "comment": "default",
+ "97719cd4-8186-4b44-8b4a-c42eaa5419c7": {
+ "quantity": 1,
"combined_energy_factor": 0,
- "energy_demand": 269,
- "capacity_type": 1,
- "capacity": 12,
- "identifier": "7b46d219-e2e7-4846-8f42-c8874f6802fc",
- "in_conditioned_space": true,
+ "comment": "default",
+ "utilization_factor": 1.0,
"reference_energy_norm": 2,
- "equipment_type": "PhDishwasher",
- "user_data": {},
+ "identifier": "97719cd4-8186-4b44-8b4a-c42eaa5419c7",
"_water_connection": {
"value": "2-COLD WATER CONNECTION"
},
- "display_name": "Kitchen dishwasher",
+ "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,
- "quantity": 1
+ "capacity": 0.12740000000000001
},
- "50c3711e-b5c5-4716-b7fb-75beda06b09f": {
- "frac_high_efficiency": 1.0,
- "reference_quantity": 6,
+ "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,
- "identifier": "50c3711e-b5c5-4716-b7fb-75beda06b09f",
+ "reference_quantity": 6,
"in_conditioned_space": false,
- "reference_energy_norm": 1,
"equipment_type": "PhPhiusLightingExterior",
- "user_data": {},
"display_name": "PHIUS+ Exterior Lighting",
+ "user_data": {},
"energy_demand_per_use": 0,
- "quantity": 1
+ "frac_high_efficiency": 1.0
},
- "9218fba4-e37e-4eae-9434-4348855f64fc": {
- "reference_quantity": 4,
- "comment": "default",
+ "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,
- "identifier": "9218fba4-e37e-4eae-9434-4348855f64fc",
+ "reference_quantity": 4,
"in_conditioned_space": true,
- "reference_energy_norm": 1,
"equipment_type": "PhFridgeFreezer",
- "user_data": {},
"display_name": "Kitchen fridge/freeze combo",
- "energy_demand_per_use": 0,
- "quantity": 1
- },
- "3410c641-73d3-471c-ab98-d9a958177ee9": {
- "frac_high_efficiency": 1.0,
- "reference_quantity": 6,
- "comment": "default",
- "combined_energy_factor": 0,
- "energy_demand": 0,
- "identifier": "3410c641-73d3-471c-ab98-d9a958177ee9",
- "in_conditioned_space": true,
- "reference_energy_norm": 1,
- "equipment_type": "PhPhiusLightingInterior",
"user_data": {},
- "display_name": "PHIUS+ Interior Lighting",
- "energy_demand_per_use": 0,
- "quantity": 1
+ "energy_demand_per_use": 0
},
- "19994bd7-a0c0-47b2-a47f-a880e2efe503": {
- "reference_quantity": 3,
- "comment": "default",
+ "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,
- "identifier": "19994bd7-a0c0-47b2-a47f-a880e2efe503",
+ "reference_quantity": 3,
"in_conditioned_space": true,
- "reference_energy_norm": 1,
"equipment_type": "PhPhiusMEL",
- "user_data": {},
"display_name": "PHIUS+ MELS",
- "energy_demand_per_use": 0,
- "quantity": 1
+ "user_data": {},
+ "energy_demand_per_use": 0
},
- "7d24326c-6293-45fd-8658-4497687cd309": {
- "field_utilization_factor_type": 1,
- "reference_quantity": 1,
- "comment": "default",
- "field_utilization_factor": 1.1799999999999999,
+ "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,
- "identifier": "7d24326c-6293-45fd-8658-4497687cd309",
+ "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,
- "reference_energy_norm": 2,
- "equipment_type": "PhClothesDryer",
+ "equipment_type": "PhCooktop",
+ "display_name": "Kitchen cooking",
"user_data": {},
- "gas_efficiency_factor": 2.6699999999999999,
- "display_name": "Laundry - dryer",
"energy_demand_per_use": 0,
- "quantity": 1
+ "_cooktop_type": {
+ "value": "1-ELECTRICITY"
+ }
}
}
- }
- }
- },
- "identifier": "Generic Office Equipment_4c1a4853",
- "schedule": "Generic Office Equipment",
- "lost_fraction": 0.0,
- "type": "ElectricEquipmentAbridged"
+ },
+ "type": "ElectricEquipmentPhProperties"
+ },
+ "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": "102",
- "properties": {
- "type": "SpaceProperties",
- "energy": {
- "id_num": 0,
- "type": "SpaceEnergyProperties"
- },
- "ph": {
- "id_num": 0,
- "_v_sup": null,
- "_v_eta": null,
- "type": "SpacePhProperties",
- "_v_tran": null
- }
- },
+ "identifier": "c56a1f7d-4dab-4f84-ad27-71084d96c934",
+ "wufi_type": 99,
"volumes": [
{
+ "identifier": "58e65ae4-70e9-4908-98ab-5fcba0c6f934",
"avg_ceiling_height": 2.75,
- "identifier": "bb2ecdaa-bdcf-43da-bd9d-e37aad3208c7",
- "user_data": {},
"geometry": [
{
"boundary": [
@@ -5419,8 +2920,13 @@
0.0
]
],
- "type": "Face3D",
"plane": {
+ "type": "Plane",
+ "n": [
+ -0.98480775301220813,
+ 0.17364817766693044,
+ 0.0
+ ],
"o": [
5.2895414217061774,
-10.342081323981931,
@@ -5430,14 +2936,9 @@
0.17364817766693044,
0.98480775301220813,
0.0
- ],
- "type": "Plane",
- "n": [
- -0.98480775301220813,
- 0.17364817766693044,
- 0.0
]
- }
+ },
+ "type": "Face3D"
},
{
"boundary": [
@@ -5462,8 +2963,13 @@
0.0
]
],
- "type": "Face3D",
"plane": {
+ "type": "Plane",
+ "n": [
+ 0.17364817766693053,
+ 0.98480775301220802,
+ 0.0
+ ],
"o": [
5.8625804080070480,
-7.0922157390416434,
@@ -5473,57 +2979,138 @@
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.17364817766693053,
0.98480775301220802,
+ -0.17364817766693053,
+ 0.0
+ ],
+ "o": [
+ 9.1124459929473343,
+ -7.6652547253425141,
+ 2.75
+ ],
+ "x": [
+ -0.17364817766693053,
+ -0.98480775301220802,
0.0
]
- }
+ },
+ "type": "Face3D"
},
{
"boundary": [
[
- 9.1124459929473343,
- -7.6652547253425141,
+ 8.5394070066464636,
+ -10.915120310282800,
2.75
],
[
- 8.5394070066464636,
- -10.915120310282800,
+ 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
]
],
- "type": "Face3D",
"plane": {
- "o": [
- 9.1124459929473343,
- -7.6652547253425141,
- 2.75
+ "type": "Plane",
+ "n": [
+ 0.0,
+ 0.0,
+ -1.0
],
- "x": [
- -0.17364817766693053,
- -0.98480775301220802,
+ "o": [
+ 5.8625804080070480,
+ -7.0922157390416434,
0.0
],
- "type": "Plane",
- "n": [
- 0.98480775301220802,
- -0.17364817766693053,
+ "x": [
+ 1.0,
+ 0.0,
0.0
]
- }
+ },
+ "type": "Face3D"
},
{
"boundary": [
@@ -5533,46 +3120,115 @@
2.75
],
[
- 5.2895414217061774,
- -10.342081323981931,
+ 9.1124459929473343,
+ -7.6652547253425141,
2.75
],
[
- 5.2895414217061774,
- -10.342081323981931,
- 0.0
+ 5.8625804080070480,
+ -7.0922157390416434,
+ 2.75
],
[
- 8.5394070066464636,
- -10.915120310282800,
- 0.0
+ 5.2895414217061774,
+ -10.342081323981931,
+ 2.75
]
],
- "type": "Face3D",
"plane": {
+ "type": "Plane",
+ "n": [
+ 0.0,
+ 0.0,
+ 1.0
+ ],
"o": [
8.5394070066464636,
-10.915120310282800,
2.75
],
"x": [
- -0.98480775301220813,
- 0.17364817766693003,
- 0.0
- ],
- "type": "Plane",
- "n": [
- -0.17364817766693003,
- -0.98480775301220813,
+ 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.8625804080070480,
- -7.0922157390416434,
+ 5.2895414217061774,
+ -10.342081323981931,
+ 0.0
+ ],
+ [
+ 8.5394070066464636,
+ -10.915120310282800,
0.0
],
[
@@ -5581,1521 +3237,3863 @@
0.0
],
[
- 8.5394070066464636,
- -10.915120310282800,
+ 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": {}
+ }
+ }
+ ],
+ "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": [
+ {
+ "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": {}
+ },
+ "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": {}
+ },
+ {
+ "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
+ }
+ ],
+ "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
],
- "type": "Face3D",
- "plane": {
- "o": [
- 5.8625804080070480,
- -7.0922157390416434,
- 0.0
- ],
- "x": [
- 1.0,
- 0.0,
- 0.0
- ],
- "type": "Plane",
- "n": [
- 0.0,
- 0.0,
- -1.0
- ]
- }
+ "v": [
+ 0.0,
+ 0.0,
+ 1.1000000000000001
+ ]
},
- {
- "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
- ]
+ "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
],
- "type": "Face3D",
- "plane": {
- "o": [
- 8.5394070066464636,
- -10.915120310282800,
- 2.75
- ],
- "x": [
- 1.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": {}
+ },
+ "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": {}
+ }
+ ],
+ "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
],
- "type": "Plane",
- "n": [
+ "v": [
0.0,
0.0,
- 1.0
+ 5.5
]
- }
+ },
+ "display_name": "c09cb591-948b-427a-98dc-b4a82ff4c4b9",
+ "user_data": {},
+ "insulation_reflective": false
}
- ],
- "display_name": "bb2ecdaa-bdcf-43da-bd9d-e37aad3208c7",
- "floor": {
- "identifier": "2e86b747-9ddb-42bb-9a0d-3ca00f90eb5a",
- "user_data": {},
- "floor_segments": [
- {
- "identifier": "ec2e9d96-1309-419a-aa72-b5b28e8108c9",
- "floor_area": 10.890000000000001,
- "user_data": {},
- "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
- ]
- ],
- "type": "Face3D",
- "plane": {
- "o": [
- 5.2895414217061774,
- -10.342081323981931,
- 0.0
- ],
- "x": [
- 1.0,
+ },
+ "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
],
- "type": "Plane",
- "n": [
+ "v": [
0.0,
0.0,
- 1.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": "ec2e9d96-1309-419a-aa72-b5b28e8108c9",
- "reference_point": {
- "type": "Point3D",
- "y": -9.0036680246622218,
- "z": 0.11000000000000001,
- "x": 7.2009937073267549
- },
- "weighting_factor": 1.0,
- "weighted_floor_area": 10.890000000000001
+ "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": "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": {}
+ }
+ },
+ "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": {
- "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
- ]
+ "type": "LineSegment3D",
+ "p": [
+ 0.0,
+ -5.5,
+ 0.0
],
- "type": "Face3D",
- "plane": {
- "o": [
- 5.2895414217061774,
- -10.342081323981931,
- 0.0
- ],
- "x": [
- 1.0,
- 0.0,
- 0.0
- ],
- "type": "Plane",
- "n": [
- 0.0,
- 0.0,
- 1.0
- ]
- }
+ "v": [
+ 0.0,
+ 0.0,
+ 1.1000000000000001
+ ]
},
- "display_name": "2e86b747-9ddb-42bb-9a0d-3ca00f90eb5a"
+ "display_name": "2ad4dc5c-21ab-415c-96ee-8f0cb0480660",
+ "user_data": {},
+ "insulation_reflective": true
}
+ },
+ "display_name": "_unnamed_",
+ "user_data": {},
+ "identifier": "00c40aa7-3e15-46d9-9066-2f8bdbfa4f2d"
+ }
+ },
+ "recirc_temp": 48.0,
+ "recirc_hours": 23,
+ "display_name": "SHW System_5a40001e",
+ "id_num": 0
+ },
+ "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"
+ },
+ "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
+ },
+ {
+ "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": [
+ [
+ 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_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
+ },
+ "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
+ },
+ {
+ "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
+ },
+ {
+ "identifier": "OfficeMedium BLDG_OCC_SCH_SmrDsn",
+ "type": "ScheduleDay",
+ "times": [
+ [
+ 0,
+ 0
+ ],
+ [
+ 6,
+ 0
+ ],
+ [
+ 22,
+ 0
+ ]
+ ],
+ "values": [
+ 0.0,
+ 1.0,
+ 0.050000000000000003
+ ],
+ "interpolate": false
+ },
+ {
+ "identifier": "OfficeMedium BLDG_OCC_SCH_WntrDsn",
+ "type": "ScheduleDay",
+ "times": [
+ [
+ 0,
+ 0
+ ]
+ ],
+ "values": [
+ 0.0
+ ],
+ "interpolate": false
+ },
+ {
+ "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
+ },
+ {
+ "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
+ },
+ {
+ "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
+ },
+ "type": "ScheduleRulesetProperties"
+ }
+ },
+ {
+ "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
+ },
+ {
+ "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
+ },
+ {
+ "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"
+ }
+ },
+ {
+ "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"
+ }
+ },
+ {
+ "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
+ }
+ ],
+ "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 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
+ }
+ ],
+ "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",
+ "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 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"
+ }
+ }
+ ],
+ "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"
+ },
+ "floor_set": {
+ "interior_construction": "Generic Interior Floor",
+ "type": "FloorConstructionSetAbridged",
+ "exterior_construction": "Generic Exposed Floor",
+ "ground_construction": "Generic Ground Slab"
+ },
+ "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"
+ },
+ "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,
+ "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": []
+ }
+ },
+ "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
+ },
+ {
+ "identifier": "Generic Window Air Gap",
+ "type": "EnergyWindowMaterialGas",
+ "thickness": 0.012699999999999999,
+ "gas_type": "Air"
+ },
+ {
+ "properties": {
+ "ph": {
+ "user_data": {},
+ "id_num": 0,
+ "divisions": {
+ "column_widths": [],
+ "row_heights": [],
+ "cells": []
}
- ],
- "name": "Room_4",
- "identifier": "3a1cb417-17a7-460a-8f7f-718b516ae459",
- "user_data": {},
- "wufi_type": 99,
- "quantity": 1
- }
- ],
- "specific_heat_capacity": "1-LIGHTWEIGHT",
- "ph_bldg_segment_id": "8cdb4c0b-6ae7-482d-b717-75a7086bfcc5",
- "type": "RoomPhPropertiesAbridged"
+ },
+ "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
+ },
+ {
+ "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
+ },
+ {
+ "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
+ },
+ {
+ "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
+ },
+ {
+ "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
+ },
+ {
+ "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
+ },
+ {
+ "properties": {
+ "ph": {
+ "user_data": {},
+ "id_num": 0,
+ "divisions": {
+ "column_widths": [],
+ "row_heights": [],
+ "cells": []
+ }
+ },
+ "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": []
+ }
+ },
+ "type": "EnergyMaterialProperties"
+ },
+ "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"
+ },
+ "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
+ },
+ {
+ "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
+ },
+ {
+ "properties": {
+ "ph": {
+ "user_data": {},
+ "id_num": 0,
+ "divisions": {
+ "column_widths": [],
+ "row_heights": [],
+ "cells": []
+ }
+ },
+ "type": "EnergyMaterialProperties"
+ },
+ "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
+ }
+ ],
+ "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": "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"
+ },
+ "type": "WindowConstructionAbridged",
+ "identifier": "Generic Single Pane"
+ },
+ {
+ "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"
+ },
+ {
+ "materials": [
+ "Generic Roof Membrane",
+ "Generic 50mm Insulation",
+ "Generic LW Concrete",
+ "Generic Ceiling Air Gap",
+ "Generic Acoustic Tile"
+ ],
+ "type": "OpaqueConstructionAbridged",
+ "identifier": "Generic Roof"
+ }
+ ]
+ },
+ "schedule_type_limits": [
+ {
+ "identifier": "Activity Level",
+ "type": "ScheduleTypeLimit",
+ "upper_limit": {
+ "type": "NoLimit"
+ },
+ "unit_type": "ActivityLevel",
+ "lower_limit": 0.0,
+ "numeric_type": "Continuous"
},
- "ph_hvac": {
- "renewable_devices": [
- {
- "percent_coverage": 1.0,
- "photovoltaic_renewable_energy": 1000.0,
- "array_size": 0.0,
- "device_typename": "PhPhotovoltaicDevice",
- "identifier": "20899181-049b-4a58-9b4f-4c6ce436d8f9",
- "utilization_factor": 1.0,
- "user_data": {},
- "display_name": "my_PV_system"
- }
+ {
+ "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"
+ }
+ ],
+ "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"
+ },
+ "type": "IdealAirSystemAbridged",
+ "economizer_type": "DifferentialDryBulb",
+ "sensible_heat_recovery": 0.0,
+ "cooling_air_temperature": 13.0,
+ "heating_limit": {
+ "type": "Autosize"
+ }
+ },
+ {
+ "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"
],
- "heat_pump_systems": [
- {
- "COP_2": 4.1200000000000001,
- "COP_1": 3.3999999999999999,
- "cooling_params": {
- "ventilation": {
- "capacity": 10.0,
- "identifier": "d07d3b01-e514-4a14-8f1c-9ee503872a6b",
- "min_coil_temp": 12.0,
- "used": false,
+ "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": {},
- "annual_COP": 4.0,
- "display_name": "d07d3b01-e514-4a14-8f1c-9ee503872a6b",
- "single_speed": false
+ "id_num": 0,
+ "width": 0.10000000000000001,
+ "u_factor": 0.123,
+ "chi_value": 0.0
},
- "percent_coverage": 1.0,
- "panel": {
- "identifier": "2888fdf9-ec59-4872-8c2f-be32dfbc042d",
- "used": false,
+ "identifier": "PhWindowFrame_945eda02",
+ "left": {
+ "identifier": "PhWindowFrameElement_638e3ca1",
+ "psi_glazing": 0.040000000000000001,
+ "psi_install": 0.040000000000000001,
+ "display_name": "PhWindowFrameElement_638e3ca1",
"user_data": {},
- "annual_COP": 4.0,
- "display_name": "2888fdf9-ec59-4872-8c2f-be32dfbc042d"
+ "id_num": 0,
+ "width": 0.10000000000000001,
+ "u_factor": 0.123,
+ "chi_value": 0.0
},
- "dehumidification": {
- "identifier": "ba7d8161-f4f2-44d1-b367-8f38ec4cbf99",
- "used": true,
+ "top": {
+ "identifier": "PhWindowFrameElement_638e3ca1",
+ "psi_glazing": 0.040000000000000001,
+ "psi_install": 0.040000000000000001,
+ "display_name": "PhWindowFrameElement_638e3ca1",
"user_data": {},
- "annual_COP": 2.0,
- "display_name": "_unnamed_dehumidification_cooling__52832dc6",
- "useful_heat_loss": false
+ "id_num": 0,
+ "width": 0.10000000000000001,
+ "u_factor": 0.123,
+ "chi_value": 0.0
},
- "recirculation": {
- "flow_rate_m3_hr": 100.08000000000000,
- "flow_rate_variable": true,
- "capacity": 10.0,
- "identifier": "abfba1df-4ea5-4bc4-a115-963e9a5383d9",
- "min_coil_temp": 12.0,
- "used": true,
+ "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": {},
- "annual_COP": 2.0,
- "display_name": "_unnamed_recirculation_cooling__76d5c5ee",
- "single_speed": false
+ "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
+ }
}
},
- "percent_coverage": 1.0,
- "identifier": "78e866d2-8254-4c46-a299-26eb6e23c852",
- "user_data": {},
- "display_name": "78e866d2-8254-4c46-a299-26eb6e23c852",
- "ambient_temp_1": -3.3300000000000001,
- "heat_pump_class_name": "PhHeatPumpRatedMonthly",
- "ambient_temp_2": 12.0
+ "type": "WindowConstructionProperties"
},
- {
- "COP_2": 2.5,
- "COP_1": 2.5,
- "cooling_params": {
- "ventilation": {
- "capacity": 10.0,
- "identifier": "72cfbea0-6146-4055-9c7f-6b6d8086c43b",
- "min_coil_temp": 12.0,
- "used": false,
+ "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"
+ },
+ "phpp_version": 9,
+ "display_name": "f8ec211c-f20c-4b94-8c98-852ce270b5a3",
+ "user_data": {}
+ },
+ "set_points": {
+ "summer": 24.0,
+ "identifier": "9d268728-d26d-42f3-9cca-8cc2053eeb71",
+ "winter": 21.0,
+ "display_name": "9d268728-d26d-42f3-9cca-8cc2053eeb71",
+ "user_data": {}
+ },
+ "identifier": "19f7b0a4-8d2d-4aac-8958-34d179c217ba",
+ "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": "12b83fbc-beb1-4dd0-994f-67ba8062118a",
+ "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"
+ },
+ "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"
+ }
+ },
+ "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"
+ }
+ ]
+ },
+ "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": {},
- "annual_COP": 4.0,
- "display_name": "72cfbea0-6146-4055-9c7f-6b6d8086c43b",
- "single_speed": false
+ "temp": 0.0,
+ "rad_east": 0.0,
+ "rad_global": 0.0
},
- "percent_coverage": 1.0,
- "panel": {
- "identifier": "ed58f62b-a550-4e50-b890-6539336ff9fb",
- "used": false,
+ "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": {},
- "annual_COP": 4.0,
- "display_name": "ed58f62b-a550-4e50-b890-6539336ff9fb"
+ "temp": 0.0,
+ "rad_east": 0.0,
+ "rad_global": 0.0
},
- "dehumidification": {
- "identifier": "d13a3dbb-168c-4d8d-8a0c-8e0a914a29bd",
- "used": false,
+ "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": {},
- "annual_COP": 4.0,
- "display_name": "d13a3dbb-168c-4d8d-8a0c-8e0a914a29bd",
- "useful_heat_loss": false
+ "temp": 0.0,
+ "rad_east": 0.0,
+ "rad_global": 0.0
},
- "recirculation": {
- "flow_rate_m3_hr": 100.0,
- "flow_rate_variable": true,
- "capacity": 10.0,
- "identifier": "76d68e14-fb24-4124-83c5-3b8810d57260",
- "min_coil_temp": 12.0,
- "used": false,
+ "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": {},
- "annual_COP": 4.0,
- "display_name": "76d68e14-fb24-4124-83c5-3b8810d57260",
- "single_speed": false
+ "temp": 0.0,
+ "rad_east": 0.0,
+ "rad_global": 0.0
}
},
- "percent_coverage": 1.0,
- "identifier": "fe16251c-0be9-4a00-b31e-cdc94911f9e2",
- "user_data": {},
- "display_name": "fe16251c-0be9-4a00-b31e-cdc94911f9e2",
- "ambient_temp_1": -8.3330000000000002,
- "heat_pump_class_name": "PhHeatPumpRatedMonthly",
- "ambient_temp_2": 8.3330000000000002
- }
- ],
- "id_num": 0,
- "ventilation_system": {
- "id_num": 0,
- "identifier": "045cfc79-dfdd-431b-a279-b72453466814",
- "exhaust_ducting": [
- {
- "duct_type": 2,
- "identifier": "109a9d75-ce91-4af0-bb1c-c318418f2d78",
+ "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": {},
- "segments": {
- "67c048bf-4b66-4192-b9e0-2be6e2bf6b93": {
- "insulation_conductivity": 0.040000000000000001,
- "insulation_thickness": 0.02794,
- "identifier": "67c048bf-4b66-4192-b9e0-2be6e2bf6b93",
- "insulation_reflective": true,
- "user_data": {},
- "geometry": {
- "v": [
- 1.0832885283134288,
- -0.19101299543362338,
- 0.0
- ],
- "p": [
- 0.0,
- -5.5,
- 0.0
- ],
- "type": "LineSegment3D"
- },
- "display_name": "67c048bf-4b66-4192-b9e0-2be6e2bf6b93",
- "diameter": 0.17600000000000002,
- "height": null,
- "width": null
- }
+ "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
},
- "display_name": "Test_Vent_System_exhaust"
- }
- ],
- "user_data": {},
- "sys_type": 1,
- "display_name": "Test_Vent_System",
- "ventilation_unit": {
- "sensible_heat_recovery": 0.82999999999999996,
- "latent_heat_recovery": 0.0,
- "frost_protection_reqd": true,
- "temperature_below_defrost_used": -5.0,
- "identifier": "4bdf544a-d68c-4bde-a3cb-29a8a890cb0a",
- "in_conditioned_space": true,
- "electric_efficiency": 0.33300000000000002,
- "user_data": {},
- "display_name": "Test_Unit",
- "quantity": 1
- },
- "supply_ducting": [
- {
- "duct_type": 1,
- "identifier": "a4797c6a-cfd0-4e03-8c1d-f73a64e44430",
- "user_data": {},
- "segments": {
- "55ba1a90-d5e0-4618-b385-bf4737716555": {
- "insulation_conductivity": 0.040000000000000001,
- "insulation_thickness": 0.02794,
- "identifier": "55ba1a90-d5e0-4618-b385-bf4737716555",
- "insulation_reflective": true,
- "user_data": {},
- "geometry": {
- "v": [
- 0.0,
- 0.0,
- 1.1000000000000001
- ],
- "p": [
- 0.0,
- -5.5,
- 0.0
- ],
- "type": "LineSegment3D"
- },
- "display_name": "55ba1a90-d5e0-4618-b385-bf4737716555",
- "diameter": 0.17600000000000002,
- "height": null,
- "width": null
- }
+ "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
},
- "display_name": "__unnamed_vent_duct__"
- }
- ]
- },
- "exhaust_vent_devices": [
- {
- "device_class_name": "ExhaustVentDryer",
- "annual_runtime_minutes": 7.625,
- "identifier": "53e48776-8b4f-4df6-a4b0-3ff34f954690",
- "user_data": {},
- "display_name": "example_dryer_vent",
- "exhaust_flow_rate_m3s": 123.0,
- "quantity": 1
- }
- ],
- "heating_systems": [],
- "hot_water_system": {
- "recirc_temp": 48.0,
- "heaters": {
- "5ca7195b-f8db-4e3e-8483-216fd733930b": {
- "annual_system_perf_ratio": null,
- "percent_coverage": 1.0,
- "annual_energy_factor": null,
- "heater_type": "PhHvacHotWaterHeaterHeatPump",
- "identifier": "5ca7195b-f8db-4e3e-8483-216fd733930b",
- "in_conditioned_space": true,
- "user_data": {},
- "annual_COP": null,
- "display_name": "5ca7195b-f8db-4e3e-8483-216fd733930b"
- }
- },
- "recirc_piping": {
- "fe547564-e374-4f3d-917a-c18c45597a52": {
- "user_data": {},
- "identifier": "fe547564-e374-4f3d-917a-c18c45597a52",
- "segments": {
- "8d0e6c1e-b730-4268-afad-37beffb9b0f5": {
- "insulation_thickness_mm": 25.399999999999999,
- "material_value": "2-COPPER_L",
- "insulation_conductivity": 0.040000000000000001,
- "insulation_quality": null,
- "daily_period": 23.0,
- "identifier": "8d0e6c1e-b730-4268-afad-37beffb9b0f5",
- "insulation_reflective": true,
- "user_data": {},
- "geometry": {
- "v": [
- 0.0,
- 0.0,
- 1.1000000000000001
- ],
- "p": [
- 0.0,
- -5.5,
- 0.0
- ],
- "type": "LineSegment3D"
- },
- "diameter_mm": 25.399999999999999,
- "display_name": "8d0e6c1e-b730-4268-afad-37beffb9b0f5",
- "water_temp_c": 48.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
},
- "display_name": "_unnamed_"
- }
- },
- "id_num": 0,
- "identifier": "bbc76f89-78e1-4e63-8cc4-1e99fa391935",
- "recirc_hours": 23,
- "display_name": "SHW System_bbe98316",
- "tank_solar": {
- "room_temp": 20,
- "_tank_type": {
- "value": "2-DHW ONLY"
- },
- "solar_losses": 0.0,
- "standby_fraction": 0.29999999999999999,
- "identifier": "50029ccb-c3c1-4649-ac77-dd30678d9015",
- "in_conditioned_space": true,
- "storage_loss_rate": 0.0,
- "user_data": {},
- "display_name": "_unnamed_hw_tank_",
- "standby_losses": 4.0,
- "solar_connection": false,
- "water_temp": 60,
- "storage_capacity": 300,
- "quantity": 1
- },
- "number_tap_points": 1,
- "type": "PhHvacHotWaterSystemPh",
- "distribution_piping": {
- "6d20a51e-0914-445c-b3d0-c30f45b0e6b1": {
- "pipe_element": {
+ "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
+ },
+ "display_name": "45110201-0b50-4c99-8045-9a73b80eb639",
+ "user_data": {}
+ },
+ "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": {},
- "identifier": "69179a65-8ad5-4534-a531-bfa04a631a60",
- "segments": {
- "ff483dc1-7bf0-4a2b-a824-591afb31be8d": {
- "insulation_thickness_mm": 0.0,
- "material_value": "6-PEX",
- "insulation_conductivity": 0.040000000000000001,
- "insulation_quality": null,
- "daily_period": 24,
- "identifier": "ff483dc1-7bf0-4a2b-a824-591afb31be8d",
- "insulation_reflective": false,
- "user_data": {},
- "geometry": {
- "v": [
- 0.0,
- 0.0,
- 5.5
- ],
- "p": [
- 0.0,
- -5.5,
- 0.0
- ],
- "type": "LineSegment3D"
- },
- "diameter_mm": 38.099999999999994,
- "display_name": "ff483dc1-7bf0-4a2b-a824-591afb31be8d",
- "water_temp_c": 60.0
- }
- },
- "display_name": "69179a65-8ad5-4534-a531-bfa04a631a60"
+ "april": 0.0,
+ "may": 0.0,
+ "august": 0.0,
+ "september": 0.0,
+ "october": 0.0
},
- "multiplier": 1,
- "identifier": "6d20a51e-0914-445c-b3d0-c30f45b0e6b1",
+ "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": {},
- "branches": {
- "80a121de-a215-4bd1-bb75-e96c4d01f2d5": {
- "pipe_element": {
- "user_data": {},
- "identifier": "5a14dcb5-339e-4684-bdea-f16867d818fe",
- "segments": {
- "aab94953-bced-41f5-a114-694766d20c85": {
- "insulation_thickness_mm": 0.0,
- "material_value": "3-COPPER_K",
- "insulation_conductivity": 0.040000000000000001,
- "insulation_quality": null,
- "daily_period": 24,
- "identifier": "aab94953-bced-41f5-a114-694766d20c85",
- "insulation_reflective": false,
- "user_data": {},
- "geometry": {
- "v": [
- 0.0,
- 0.0,
- 5.5
- ],
- "p": [
- 0.0,
- -5.5,
- 0.0
- ],
- "type": "LineSegment3D"
- },
- "diameter_mm": 19.049999999999997,
- "display_name": "aab94953-bced-41f5-a114-694766d20c85",
- "water_temp_c": 60.0
- }
- },
- "display_name": "5a14dcb5-339e-4684-bdea-f16867d818fe"
- },
- "identifier": "80a121de-a215-4bd1-bb75-e96c4d01f2d5",
- "user_data": {},
- "display_name": "Test_Branch",
- "fixtures": {
- "87d139a1-e0a5-488c-9129-3112280b2a55": {
- "user_data": {},
- "identifier": "87d139a1-e0a5-488c-9129-3112280b2a55",
- "segments": {
- "3216ce9f-e461-45ea-b13c-0a5bc636e2fd": {
- "insulation_thickness_mm": 0.0,
- "material_value": "1-COPPER_M",
- "insulation_conductivity": 0.040000000000000001,
- "insulation_quality": null,
- "daily_period": 24,
- "identifier": "3216ce9f-e461-45ea-b13c-0a5bc636e2fd",
- "insulation_reflective": false,
- "user_data": {},
- "geometry": {
- "v": [
- 0.0,
- 0.0,
- 5.5
- ],
- "p": [
- 0.0,
- -5.5,
- 0.0
- ],
- "type": "LineSegment3D"
- },
- "diameter_mm": 9.5249999999999986,
- "display_name": "3216ce9f-e461-45ea-b13c-0a5bc636e2fd",
- "water_temp_c": 55.0
- }
- },
- "display_name": "Test_Fixture"
- }
- }
- }
+ "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
},
- "display_name": "Test_Trunk"
- }
- }
- },
- "supportive_devices": [
- {
- "annual_period_operation_khrs": 6.5,
- "device_class_name": "PhSupportiveDevice",
- "identifier": "61b6f1e1-42f8-42dd-b487-265d0ad3cf63",
- "in_conditioned_space": false,
- "user_data": {},
- "device_type": 10,
- "display_name": "Example Device",
- "norm_energy_demand_W": 123.0,
- "quantity": 3
- }
- ],
- "type": "RoomPhHvacPropertiesAbridged"
- }
- },
- "story": "2",
- "faces": [
- {
- "boundary_condition": {
- "wind_exposure": true,
- "view_factor": {
- "type": "Autocalculate"
- },
- "type": "Outdoors",
- "sun_exposure": true
- },
- "properties": {
- "type": "FacePropertiesAbridged",
- "radiance": {
- "type": "FaceRadiancePropertiesAbridged"
- },
- "energy": {
- "type": "FaceEnergyPropertiesAbridged"
+ "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
},
- "ph": {
- "id_num": 0,
- "type": "FacePhPropertiesAbridged"
+ "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
},
- "ph_hvac": {
- "type": "FacePhHvacProperties"
+ "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": {}
}
},
- "face_type": "Wall",
- "identifier": "Room_4_ffc07550..Face0",
- "geometry": {
- "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
- ]
- ],
- "type": "Face3D",
- "plane": {
- "o": [
- 5.4164426415671443,
- -6.4550649771681172,
- 3.3000000000000003
- ],
- "x": [
- 0.98480775301220802,
- -0.17364817766693047,
- 0.0
- ],
- "type": "Plane",
- "n": [
- 0.17364817766693047,
- 0.98480775301220802,
- 0.0
- ]
- }
+ "summer_hrv_bypass_mode": {
+ "value": "2-TEMPERATURE CONTROLLED"
},
- "display_name": "Room_4_ffc07550..Face0",
- "type": "Face",
- "apertures": [
- {
- "is_operable": false,
- "boundary_condition": {
- "wind_exposure": true,
- "view_factor": {
- "type": "Autocalculate"
- },
- "type": "Outdoors",
- "sun_exposure": true
+ "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"
},
- "properties": {
- "type": "AperturePropertiesAbridged",
- "radiance": {
- "type": "ApertureRadiancePropertiesAbridged"
- },
- "energy": {
- "type": "ApertureEnergyPropertiesAbridged"
- },
- "ph": {
- "id_num": 0,
- "default_monthly_shading_correction_factor": 1.0,
- "summer_shading_factor": 0.75,
- "winter_shading_factor": 0.75,
- "variant_type": "_unnamed_type_",
- "install_depth": 0.1016,
- "type": "AperturePhPropertiesAbridged"
- },
- "ph_hvac": {
- "type": "AperturePhHvacProperties"
- }
+ {
+ "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"
+ }
+ ]
+ },
+ "thermal_bridges": {
+ "e3420bbe-e2f6-4d14-bad6-0f4859812e07": {
+ "quantity": 1.0,
+ "identifier": "e3420bbe-e2f6-4d14-bad6-0f4859812e07",
+ "_group_type": {
+ "value": "15-AMBIENT"
},
- "identifier": "Room_4_ffc07550..Face0_Glz0",
+ "fRsi_value": 0.75,
"geometry": {
- "boundary": [
+ "type": "Polyline3D",
+ "vertices": [
[
- 11.751374618646405,
- -7.5720844056800098,
- 2.7568536488623963
+ 0.0,
+ 4.0,
+ 0.0
],
[
- 11.751374618646405,
- -7.5720844056800098,
- 0.54314635113760423
+ 0.0,
+ 0.0,
+ 0.0
],
[
- 6.6645303626818855,
- -6.6751365166915884,
- 0.54314635113760423
+ 0.0,
+ 0.0,
+ 3.0
],
[
- 6.6645303626818855,
- -6.6751365166915884,
- 2.7568536488623963
- ]
- ],
- "type": "Face3D",
- "plane": {
- "o": [
- 6.6645303626818855,
- -6.6751365166915884,
- 2.7568536488623963
- ],
- "x": [
- 0.98480775301220813,
- -0.17364817766693033,
- 0.0
+ 0.0,
+ 4.0,
+ 3.0
],
- "type": "Plane",
- "n": [
- 0.17364817766693033,
- 0.98480775301220813,
+ [
+ 0.0,
+ 4.0,
0.0
]
- }
+ ]
},
- "display_name": "Room_4_ffc07550..Face0_Glz0",
- "type": "Aperture"
- }
- ]
- },
- {
- "boundary_condition": {
- "wind_exposure": true,
- "view_factor": {
- "type": "Autocalculate"
- },
- "type": "Outdoors",
- "sun_exposure": true
- },
- "properties": {
- "type": "FacePropertiesAbridged",
- "radiance": {
- "type": "FaceRadiancePropertiesAbridged"
- },
- "energy": {
- "type": "FaceEnergyPropertiesAbridged"
+ "display_name": "_unnamed_bldg_segment__04c2e417",
+ "user_data": {},
+ "id_num": 0,
+ "psi_value": 0.01
},
- "ph": {
+ "c1a2a34a-6b25-455e-b4a5-7d8404b1ad72": {
+ "quantity": 1.0,
+ "identifier": "c1a2a34a-6b25-455e-b4a5-7d8404b1ad72",
+ "_group_type": {
+ "value": "15-AMBIENT"
+ },
+ "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
+ ],
+ [
+ 0.82294901687515765,
+ 0.0,
+ 0.49376941012509468
+ ]
+ ]
+ },
+ "display_name": "_unnamed_bldg_segment__2434f508",
+ "user_data": {},
"id_num": 0,
- "type": "FacePhPropertiesAbridged"
+ "psi_value": 0.01
},
- "ph_hvac": {
- "type": "FacePhHvacProperties"
- }
- },
- "face_type": "Wall",
- "identifier": "Room_4_ffc07550..Face1",
- "geometry": {
- "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
- ]
- ],
- "type": "Face3D",
- "plane": {
- "o": [
- 12.999462339761147,
- -7.7921559452034819,
- 3.3000000000000003
- ],
- "x": [
- -0.17364817766693064,
- -0.98480775301220802,
- 0.0
- ],
- "type": "Plane",
- "n": [
- 0.98480775301220802,
- -0.17364817766693064,
- 0.0
- ]
- }
- },
- "display_name": "Room_4_ffc07550..Face1",
- "type": "Face",
- "apertures": [
- {
- "is_operable": false,
- "boundary_condition": {
- "wind_exposure": true,
- "view_factor": {
- "type": "Autocalculate"
- },
- "type": "Outdoors",
- "sun_exposure": true
+ "51ad935b-64ad-44b4-9a66-9551426c3bbb": {
+ "quantity": 1.0,
+ "identifier": "51ad935b-64ad-44b4-9a66-9551426c3bbb",
+ "_group_type": {
+ "value": "15-AMBIENT"
},
- "properties": {
- "type": "AperturePropertiesAbridged",
- "radiance": {
- "type": "ApertureRadiancePropertiesAbridged"
- },
- "energy": {
- "type": "ApertureEnergyPropertiesAbridged"
- },
- "ph": {
- "id_num": 0,
- "default_monthly_shading_correction_factor": 1.0,
- "summer_shading_factor": 0.75,
- "winter_shading_factor": 0.75,
- "variant_type": "_unnamed_type_",
- "install_depth": 0.1016,
- "type": "AperturePhPropertiesAbridged"
- },
- "ph_hvac": {
- "type": "AperturePhHvacProperties"
- }
+ "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
+ },
+ "08e73269-2fff-4eef-9ed9-353242f446aa": {
+ "quantity": 1.0,
+ "identifier": "08e73269-2fff-4eef-9ed9-353242f446aa",
+ "_group_type": {
+ "value": "15-AMBIENT"
},
- "identifier": "Room_4_ffc07550..Face1_Glz0",
+ "fRsi_value": 0.75,
"geometry": {
- "boundary": [
+ "type": "Polyline3D",
+ "vertices": [
[
- 12.361165523468637,
- -11.412117074963060,
- 2.7568536488623963
+ 12.0,
+ 0.0,
+ 0.0
],
[
- 12.361165523468637,
- -11.412117074963060,
- 0.54314635113760423
+ 12.0,
+ 4.0,
+ 0.0
],
[
- 12.873707174319163,
- -8.5053489286976198,
- 0.54314635113760423
+ 12.0,
+ 4.0,
+ 3.0
],
[
- 12.873707174319163,
- -8.5053489286976198,
- 2.7568536488623963
+ 12.0,
+ 0.0,
+ 3.0
+ ],
+ [
+ 12.0,
+ 0.0,
+ 0.0
]
- ],
- "type": "Face3D",
- "plane": {
- "o": [
- 12.873707174319163,
- -8.5053489286976198,
- 2.7568536488623963
+ ]
+ },
+ "display_name": "_unnamed_bldg_segment__74c030c5",
+ "user_data": {},
+ "id_num": 0,
+ "psi_value": 0.01
+ },
+ "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
],
- "x": [
- -0.17364817766693014,
- -0.98480775301220813,
+ [
+ 12.0,
+ 0.0,
0.0
],
- "type": "Plane",
- "n": [
- 0.98480775301220813,
- -0.17364817766693014,
+ [
+ 12.0,
+ 0.0,
+ 3.0
+ ],
+ [
+ 5.0,
+ 0.0,
+ 3.0
+ ],
+ [
+ 5.0,
+ 0.0,
0.0
]
- }
+ ]
},
- "display_name": "Room_4_ffc07550..Face1_Glz0",
- "type": "Aperture"
- }
- ]
- },
- {
- "boundary_condition": {
- "wind_exposure": true,
- "view_factor": {
- "type": "Autocalculate"
- },
- "type": "Outdoors",
- "sun_exposure": true
- },
- "properties": {
- "type": "FacePropertiesAbridged",
- "radiance": {
- "type": "FaceRadiancePropertiesAbridged"
- },
- "energy": {
- "type": "FaceEnergyPropertiesAbridged"
- },
- "ph": {
+ "display_name": "_unnamed_bldg_segment__a1570bbe",
+ "user_data": {},
"id_num": 0,
- "type": "FacePhPropertiesAbridged"
+ "psi_value": 0.01
},
- "ph_hvac": {
- "type": "FacePhHvacProperties"
- }
- },
- "face_type": "Wall",
- "identifier": "Room_4_ffc07550..Face2",
- "geometry": {
- "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
- ]
- ],
- "type": "Face3D",
- "plane": {
- "o": [
- 12.235410358026652,
- -12.125310058457197,
- 3.3000000000000003
- ],
- "x": [
- -0.98480775301220802,
- 0.17364817766693064,
- 0.0
- ],
- "type": "Plane",
- "n": [
- -0.17364817766693064,
- -0.98480775301220802,
- 0.0
- ]
- }
- },
- "display_name": "Room_4_ffc07550..Face2",
- "type": "Face",
- "apertures": [
- {
- "is_operable": false,
- "boundary_condition": {
- "wind_exposure": true,
- "view_factor": {
- "type": "Autocalculate"
- },
- "type": "Outdoors",
- "sun_exposure": true
- },
- "properties": {
- "type": "AperturePropertiesAbridged",
- "radiance": {
- "type": "ApertureRadiancePropertiesAbridged"
- },
- "energy": {
- "type": "ApertureEnergyPropertiesAbridged"
- },
- "ph": {
- "id_num": 0,
- "default_monthly_shading_correction_factor": 1.0,
- "summer_shading_factor": 0.75,
- "winter_shading_factor": 0.75,
- "variant_type": "_unnamed_type_",
- "install_depth": 0.1016,
- "type": "AperturePhPropertiesAbridged"
- },
- "ph_hvac": {
- "type": "AperturePhHvacProperties"
- }
+ "e610e66f-e672-4b31-a757-ac84ac8636f7": {
+ "quantity": 1.0,
+ "identifier": "e610e66f-e672-4b31-a757-ac84ac8636f7",
+ "_group_type": {
+ "value": "15-AMBIENT"
},
- "identifier": "Room_4_ffc07550..Face2_Glz0",
+ "fRsi_value": 0.75,
"geometry": {
- "boundary": [
+ "type": "Polyline3D",
+ "vertices": [
[
- 5.9004783809473924,
- -11.008290629945304,
- 2.7568536488623963
+ 0.0,
+ 0.0,
+ 0.0
],
[
- 5.9004783809473924,
- -11.008290629945304,
- 0.54314635113760423
+ 5.0,
+ 0.0,
+ 0.0
],
[
- 10.987322636911911,
- -11.905238518933727,
- 0.54314635113760423
+ 5.0,
+ 0.0,
+ 3.0
],
[
- 10.987322636911911,
- -11.905238518933727,
- 2.7568536488623963
+ 0.0,
+ 0.0,
+ 3.0
+ ],
+ [
+ 0.0,
+ 0.0,
+ 0.0
]
- ],
- "type": "Face3D",
- "plane": {
- "o": [
- 10.987322636911911,
- -11.905238518933727,
- 2.7568536488623963
+ ]
+ },
+ "display_name": "_unnamed_bldg_segment__fa2f7100",
+ "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
],
- "x": [
- -0.98480775301220802,
- 0.17364817766693069,
- 0.0
+ [
+ 5.0,
+ 4.0,
+ 3.0
],
- "type": "Plane",
- "n": [
- -0.17364817766693069,
- -0.98480775301220802,
+ [
+ 5.0,
+ 4.0,
0.0
]
- }
+ ]
},
- "display_name": "Room_4_ffc07550..Face2_Glz0",
- "type": "Aperture"
- }
- ]
- },
- {
- "boundary_condition": {
- "boundary_condition_objects": [
- "Room_3_8edb1377..Face1",
- "Room_3_8edb1377"
- ],
- "type": "Surface"
- },
- "properties": {
- "type": "FacePropertiesAbridged",
- "radiance": {
- "type": "FaceRadiancePropertiesAbridged"
- },
- "energy": {
- "type": "FaceEnergyPropertiesAbridged"
- },
- "ph": {
- "id_num": 0,
- "type": "FacePhPropertiesAbridged"
- },
- "ph_hvac": {
- "type": "FacePhHvacProperties"
- }
- },
- "face_type": "Wall",
- "identifier": "Room_4_ffc07550..Face3",
- "geometry": {
- "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
- ]
- ],
- "type": "Face3D",
- "plane": {
- "o": [
- 4.6523906598326512,
- -10.788219090421832,
- 3.3000000000000003
- ],
- "x": [
- 0.1736481776669303,
- 0.98480775301220813,
- 0.0
- ],
- "type": "Plane",
- "n": [
- -0.98480775301220813,
- 0.1736481776669303,
- 0.0
- ]
- }
- },
- "display_name": "Room_4_ffc07550..Face3",
- "type": "Face"
- },
- {
- "boundary_condition": {
- "type": "Ground"
- },
- "properties": {
- "type": "FacePropertiesAbridged",
- "radiance": {
- "type": "FaceRadiancePropertiesAbridged"
- },
- "energy": {
- "type": "FaceEnergyPropertiesAbridged"
- },
- "ph": {
- "id_num": 0,
- "type": "FacePhPropertiesAbridged"
- },
- "ph_hvac": {
- "type": "FacePhHvacProperties"
- }
- },
- "face_type": "Floor",
- "identifier": "Room_4_ffc07550..Face4",
- "geometry": {
- "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
- ]
- ],
- "type": "Face3D",
- "plane": {
- "o": [
- 12.999462339761147,
- -7.7921559452034819,
- 0.0
- ],
- "x": [
- 1.0,
- 0.0,
- 0.0
- ],
- "type": "Plane",
- "n": [
- 0.0,
- 0.0,
- -1.0
- ]
- }
- },
- "display_name": "Room_4_ffc07550..Face4",
- "type": "Face"
- },
- {
- "boundary_condition": {
- "wind_exposure": true,
- "view_factor": {
- "type": "Autocalculate"
- },
- "type": "Outdoors",
- "sun_exposure": true
- },
- "properties": {
- "type": "FacePropertiesAbridged",
- "radiance": {
- "type": "FaceRadiancePropertiesAbridged"
- },
- "energy": {
- "type": "FaceEnergyPropertiesAbridged"
- },
- "ph": {
+ "display_name": "_unnamed_bldg_segment__5908386a",
+ "user_data": {},
"id_num": 0,
- "type": "FacePhPropertiesAbridged"
+ "psi_value": 0.01
},
- "ph_hvac": {
- "type": "FacePhHvacProperties"
- }
- },
- "face_type": "RoofCeiling",
- "identifier": "Room_4_ffc07550..Face5",
- "geometry": {
- "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
- ]
- ],
- "type": "Face3D",
- "plane": {
- "o": [
- 4.6523906598326512,
- -10.788219090421832,
- 3.3000000000000003
- ],
- "x": [
- 1.0,
- 0.0,
- 0.0
- ],
- "type": "Plane",
- "n": [
- 0.0,
- 0.0,
- 1.0
- ]
- }
- },
- "display_name": "Room_4_ffc07550..Face5",
- "type": "Face",
- "apertures": [
- {
- "is_operable": false,
- "boundary_condition": {
- "wind_exposure": true,
- "view_factor": {
- "type": "Autocalculate"
- },
- "type": "Outdoors",
- "sun_exposure": true
+ "4abbd33b-d8ef-4aee-bf75-79187a18b603": {
+ "quantity": 1.0,
+ "identifier": "4abbd33b-d8ef-4aee-bf75-79187a18b603",
+ "_group_type": {
+ "value": "15-AMBIENT"
},
- "properties": {
- "type": "AperturePropertiesAbridged",
- "radiance": {
- "type": "ApertureRadiancePropertiesAbridged"
- },
- "energy": {
- "type": "ApertureEnergyPropertiesAbridged"
- },
- "ph": {
- "id_num": 0,
- "default_monthly_shading_correction_factor": 1.0,
- "summer_shading_factor": 0.75,
- "winter_shading_factor": 0.75,
- "variant_type": "_unnamed_type_",
- "install_depth": 0.1016,
- "type": "AperturePhPropertiesAbridged"
- },
- "ph_hvac": {
- "type": "AperturePhHvacProperties"
- }
+ "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
+ ]
+ ]
},
- "identifier": "Room_4_ffc07550..Face5_Glz0",
+ "display_name": "_unnamed_bldg_segment__bdb6b2f6",
+ "user_data": {},
+ "id_num": 0,
+ "psi_value": 0.01
+ },
+ "482acea1-cadc-45fb-8751-3f1f610b1809": {
+ "quantity": 1.0,
+ "identifier": "482acea1-cadc-45fb-8751-3f1f610b1809",
+ "_group_type": {
+ "value": "15-AMBIENT"
+ },
+ "fRsi_value": 0.75,
"geometry": {
- "boundary": [
+ "type": "Polyline3D",
+ "vertices": [
[
- 6.4150573432965654,
- -7.2854531438280699,
- 3.3000000000000003
+ 0.0,
+ 0.0,
+ 3.0
],
[
- 5.8747910058330852,
- -10.349455801236152,
- 3.3000000000000003
+ 5.0,
+ 0.0,
+ 3.0
],
[
- 11.236795656297232,
- -11.294921891797244,
- 3.3000000000000003
+ 5.0,
+ 4.0,
+ 3.0
],
[
- 11.777061993760713,
- -8.2309192343891606,
- 3.3000000000000003
+ 0.0,
+ 4.0,
+ 3.0
+ ],
+ [
+ 0.0,
+ 0.0,
+ 3.0
]
- ],
- "type": "Face3D",
- "plane": {
- "o": [
- 11.236795656297232,
- -11.294921891797244,
- 3.3000000000000003
+ ]
+ },
+ "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"
+ },
+ "fRsi_value": 0.75,
+ "geometry": {
+ "type": "Polyline3D",
+ "vertices": [
+ [
+ 0.0,
+ 3.3416407864998741,
+ 0.49376941012509468
],
- "x": [
- 1.0,
+ [
0.0,
- 0.0
+ 0.65835921350012616,
+ 0.49376941012509468
],
- "type": "Plane",
- "n": [
+ [
+ 0.0,
+ 0.65835921350012616,
+ 2.5062305898749053
+ ],
+ [
0.0,
+ 3.3416407864998741,
+ 2.5062305898749053
+ ],
+ [
0.0,
- 1.0
+ 3.3416407864998741,
+ 0.49376941012509468
]
- }
+ ]
},
- "display_name": "Room_4_ffc07550..Face5_Glz0",
- "type": "Aperture"
+ "display_name": "_unnamed_bldg_segment__a75ccf2b",
+ "user_data": {},
+ "id_num": 0,
+ "psi_value": 0.01
}
- ]
+ }
}
],
- "identifier": "Room_4_ffc07550",
- "display_name": "Room_4",
- "type": "Room"
- }
- ],
- "units": "Meters",
- "version": "1.55.0",
- "identifier": "unnamed_4c664418",
- "display_name": "unnamed",
- "type": "Model",
- "orphaned_shades": [
- {
- "is_detached": true,
- "properties": {
- "type": "ShadePropertiesAbridged",
- "radiance": {
- "type": "ShadeRadiancePropertiesAbridged"
- },
- "energy": {
- "type": "ShadeEnergyPropertiesAbridged"
- },
- "ph": {
- "id_num": 0,
- "type": "ShadePhPropertiesAbridged"
+ "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
},
- "ph_hvac": {
- "type": "ShadePhHvacProperties"
- }
- },
- "identifier": "Shade_c3499279",
- "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
- ]
- ],
- "type": "Face3D",
- "plane": {
- "o": [
- 5.4164426415671443,
- -6.4550649771681172,
- 3.3000000000000003
- ],
- "x": [
- 1.0,
- 0.0,
- 0.0
- ],
- "type": "Plane",
- "n": [
- 0.0,
- 0.0,
- 1.0
- ]
- }
- },
- "display_name": "Shade_c3499279",
- "type": "Shade"
- },
- {
- "is_detached": true,
- "properties": {
- "type": "ShadePropertiesAbridged",
- "radiance": {
- "type": "ShadeRadiancePropertiesAbridged"
+ "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": {
- "id_num": 0,
- "type": "ShadePhPropertiesAbridged"
+ "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
},
- "ph_hvac": {
- "type": "ShadePhHvacProperties"
- }
- },
- "identifier": "Shade_5b371157",
- "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
- ]
- ],
- "type": "Face3D",
- "plane": {
- "o": [
- 12.999462339761147,
- -7.7921559452034819,
- 3.3000000000000003
- ],
- "x": [
- 1.0,
- 0.0,
- 0.0
- ],
- "type": "Plane",
- "n": [
- 0.0,
- 0.0,
- 1.0
- ]
- }
- },
- "display_name": "Shade_5b371157",
- "type": "Shade"
+ "display_name": "5b2affbe-1ea2-42f8-9146-9a17e88e9a86",
+ "user_data": {}
+ }
+ },
+ "ph_hvac": {
+ "type": "ModelPhHvacPropertiesAbridged"
}
- ],
- "tolerance": 0.001
+ }
}
\ 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 fba9abc..6cf1488 100644
--- a/tests/_test_reference_files_xml/Default_Model_Single_Zone.xml
+++ b/tests/_test_reference_files_xml/Default_Model_Single_Zone.xml
@@ -11,9 +11,9 @@
2024
6
- 11
- 16
- 35
+ 17
+ 12
+ 6
diff --git a/tests/_test_reference_files_xml/Multi_Room_Complete.xml b/tests/_test_reference_files_xml/Multi_Room_Complete.xml
index 59a2640..5b7eeb0 100644
--- a/tests/_test_reference_files_xml/Multi_Room_Complete.xml
+++ b/tests/_test_reference_files_xml/Multi_Room_Complete.xml
@@ -11,9 +11,9 @@
2024
6
- 11
- 16
- 37
+ 17
+ 12
+ 6
@@ -654,7 +654,7 @@
44
- PhWindowConstruction_cc5759e8
+ PhWindowConstruction_e3f97648
true
2
4
@@ -676,7 +676,7 @@
49
- PhWindowConstruction_cc5759e8
+ PhWindowConstruction_e3f97648
true
2
4
@@ -702,7 +702,7 @@
50
- Shade_c3499279
+ Shade_de34f9c1
true
1
1
@@ -718,7 +718,7 @@
51
- Shade_5b371157
+ Shade_c07daf16
true
1
1
@@ -742,7 +742,7 @@
1
- 101-Room_3
+ 101-Room_7
99
1
1
@@ -753,7 +753,7 @@
16.58
- 102-Room_4
+ 102-Room_8
99
1
1
@@ -766,14 +766,14 @@
- 101-Room_3
+ 101-Room_7
1
3
0.0
10.89
- 102-Room_4
+ 102-Room_8
1
3
0.0
@@ -782,7 +782,7 @@
- 101-Room_3
+ 101-Room_7
1
1
1
@@ -800,7 +800,7 @@
8760
- 102-Room_4
+ 102-Room_8
1
1
1
@@ -946,72 +946,72 @@
- _unnamed_bldg_segment__3989eb95
+ _unnamed_bldg_segment__04c2e417
-15
14.0
0.01
-1
- _unnamed_bldg_segment__5146e047
+ _unnamed_bldg_segment__2434f508
-15
- 14.0
+ 10.733126291998989
0.01
-1
- _unnamed_bldg_segment__773a180f
+ _unnamed_bldg_segment__5908386a
-15
- 18.0
+ 14.0
0.01
-1
- _unnamed_bldg_segment__89a3b1bb
+ _unnamed_bldg_segment__69ac0b9a
-15
- 14.0
+ 13.416407864998739
0.01
-1
- _unnamed_bldg_segment__99a26d05
+ _unnamed_bldg_segment__74c030c5
-15
14.0
0.01
-1
- _unnamed_bldg_segment__a14d0d50
+ _unnamed_bldg_segment__842a3686
-15
- 10.733126291998989
+ 18.0
0.01
-1
- _unnamed_bldg_segment__cd5431c1
+ _unnamed_bldg_segment__a1570bbe
-15
- 9.391485505499118
+ 20.0
0.01
-1
- _unnamed_bldg_segment__f1bc6c80
+ _unnamed_bldg_segment__a75ccf2b
-15
- 13.416407864998739
+ 9.391485505499118
0.01
-1
- _unnamed_bldg_segment__fab8b0ae
+ _unnamed_bldg_segment__bdb6b2f6
-15
- 16.0
+ 14.0
0.01
-1
- _unnamed_bldg_segment__ff3f1aa5
+ _unnamed_bldg_segment__fa2f7100
-15
- 20.0
+ 16.0
0.01
-1
@@ -1279,7 +1279,7 @@
- 5ca7195b-f8db-4e3e-8483-216fd733930b
+ 9435601e-67e4-413f-9696-2a65e338c5d5
1
5
5
@@ -1295,8 +1295,7 @@
true
-
- 5
+ 3
1.0
@@ -1315,7 +1314,7 @@
- 78e866d2-8254-4c46-a299-26eb6e23c852
+ Example_Heat_Pump
1
5
5
@@ -1352,6 +1351,43 @@
+ None
+ 2
+ 5
+ 5
+ true
+ false
+ false
+ false
+ false
+ false
+
+
+
+ true
+ 2.5
+ 2.5
+ -8.333
+ 8.333
+ 4
+
+
+ 0.0
+ 0.0
+ 1
+
+
+ 1.0
+ 0.0
+ 1
+
+
+ 0.0
+ 0.0
+ 1
+
+
+
Test_Unit
1
1
@@ -1377,7 +1413,7 @@
false
-
+
_unnamed_hw_tank_
1
8
@@ -1402,43 +1438,6 @@
true
-
- fe16251c-0be9-4a00-b31e-cdc94911f9e2
- 2
- 5
- 5
- true
- false
- false
- false
- false
- false
-
-
-
- true
- 2.5
- 2.5
- -8.333
- 8.333
- 4
-
-
- 0.0
- 0.0
- 1
-
-
- 1.0
- 0.0
- 1
-
-
- 0.0
- 0.0
- 1
-
-
my_PV_system
1
@@ -1452,7 +1451,7 @@
false
1
- 1
+ 2
1
0.0
1000.0
@@ -1935,7 +1934,7 @@
1
- PhWindowConstruction_cc5759e8
+ PhWindowConstruction_e3f97648
true
true
0.7242364315535045
@@ -1964,7 +1963,7 @@
2
- PhWindowConstruction_a8b0b4f4
+ PhWindowConstruction_bb09979d
true
true
0.7242364315535045
diff --git a/tests/test_to_WUFI_xml/test_hvac/test_renewable_equip/test_PhxDevicePhotovoltaic.py b/tests/test_to_WUFI_xml/test_hvac/test_renewable_equip/test_PhxDevicePhotovoltaic.py
index 9362906..35244eb 100644
--- a/tests/test_to_WUFI_xml/test_hvac/test_renewable_equip/test_PhxDevicePhotovoltaic.py
+++ b/tests/test_to_WUFI_xml/test_hvac/test_renewable_equip/test_PhxDevicePhotovoltaic.py
@@ -37,7 +37,7 @@ def test_default_PhxDevicePhotovoltaic(reset_class_counters):
"false",
"",
"1",
- "1",
+ "2",
"1",
"0.0",
"0.0",