diff --git a/PHX/from_HBJSON/create_assemblies.py b/PHX/from_HBJSON/create_assemblies.py index b5a344c..73cf839 100644 --- a/PHX/from_HBJSON/create_assemblies.py +++ b/PHX/from_HBJSON/create_assemblies.py @@ -3,6 +3,7 @@ """Functions used to create Project elements from the Honeybee-Model""" +import logging from typing import List, Optional, Tuple, Union from honeybee import model @@ -21,6 +22,8 @@ from PHX.model import constructions, project, shades +logger = logging.getLogger(__name__) + def _conductivity_from_r_value(_r_value: float, _thickness: float) -> float: """Returns a material conductivity value (W/mk), given a known r-value (M2K/W) and thickness (M). @@ -81,7 +84,7 @@ def build_phx_material_from_hb_EnergyMaterial( new_mat.density = _hb_material.density new_mat.heat_capacity = _hb_material.specific_heat - _prop_ph = _hb_material.properties.ph # type: EnergyMaterialPhProperties # type: ignore + _prop_ph: EnergyMaterialPhProperties = getattr(_hb_material.properties, "ph") try: hbph_color = _prop_ph.ph_color @@ -172,34 +175,51 @@ def build_phx_division_grid_from_hb_division_grid(_hb_div_grid: PhDivisionGrid) return new_div_grid -def build_layer_from_hb_material(_hb_material: Union[EnergyMaterial, EnergyMaterialNoMass]) -> constructions.PhxLayer: +def build_layer_from_hb_material( + _hb_material: Union[EnergyMaterial, EnergyMaterialNoMass], _no_mass_thickness_m: float = 0.1 +) -> constructions.PhxLayer: """Returns a new PHX-Layer with attributes based on a Honeybee-Material. Arguments: ---------- - *_hb_material (EnergyMaterial | EnergyMaterialNoMass): The Honeybee Material. + * _hb_material (EnergyMaterial | EnergyMaterialNoMass): The Honeybee Material. + * _no_mass_thickness_m (float): Default=0.1m (4in) The thickness to use for EnergyMaterialNoMass. Returns: -------- - * constructions.Layer: The new PHX-Layer object. + * (PhxLayer): The new PHX-Layer object. """ + logger.debug( + f"build_layer_from_hb_material(_hb_material={_hb_material.identifier}, _no_mass_thickness_m={_no_mass_thickness_m})" + ) new_layer = constructions.PhxLayer() - if isinstance(_hb_material, EnergyMaterial): - new_layer.thickness_m = _hb_material.thickness - new_phx_material = build_phx_material_from_hb_EnergyMaterial(_hb_material) - new_layer.set_material(new_phx_material) + # -- Build the division grid first, so we can check for the 'base' material + hbph_props: EnergyMaterialPhProperties = getattr(_hb_material.properties, "ph") + div_grid = build_phx_division_grid_from_hb_division_grid(hbph_props.divisions) + if mat := div_grid.get_base_material(): + source_material = mat + else: + source_material = _hb_material - # --- Add in any 'mixed' material elements - div_grid = build_phx_division_grid_from_hb_division_grid(_hb_material.properties.ph.divisions) # type: ignore + # -- Set the new PhxLayer attributes + if isinstance(source_material, EnergyMaterial): + new_layer.thickness_m = source_material.thickness + new_phx_material = build_phx_material_from_hb_EnergyMaterial(source_material) + new_layer.set_material(new_phx_material) new_layer.divisions = div_grid - elif isinstance(_hb_material, EnergyMaterialNoMass): - new_layer.thickness_m = 0.1 # 0.1m = 4". Use as default since No-Mass has no thickness - new_layer.set_material(build_phx_material_from_hb_EnergyMaterialNoMass(_hb_material, new_layer.thickness_m)) + elif isinstance(source_material, EnergyMaterialNoMass): + new_layer.thickness_m = _no_mass_thickness_m + new_layer.set_material(build_phx_material_from_hb_EnergyMaterialNoMass(source_material, new_layer.thickness_m)) + + elif isinstance(source_material, constructions.PhxMaterial): + new_layer.thickness_m = _hb_material.thickness + new_layer.set_material(source_material) + new_layer.divisions = div_grid else: - raise TypeError(f"Error: PHX does not support the Material type: '{type(_hb_material)}'.") + raise TypeError(f"Error: PHX does not support the Material type: '{type(source_material)}'.") return new_layer @@ -223,17 +243,17 @@ def build_opaque_assemblies_from_HB_model(_project: project.PhxProject, _hb_mode for room in _hb_model.rooms: for face in room.faces: - face_prop_energy = getattr(face.properties, "energy") # type: FaceEnergyProperties - hb_const = face_prop_energy.construction # type: OpaqueConstruction | AirBoundaryConstruction + face_prop_energy: FaceEnergyProperties = getattr(face.properties, "energy") + hb_const: OpaqueConstruction | AirBoundaryConstruction = face_prop_energy.construction # -- If is an AirBoundary, use the default material - materials = getattr(hb_const, "materials", DEFAULT_MATERIALS) + materials: list[EnergyMaterial] = getattr(hb_const, "materials", DEFAULT_MATERIALS) if not hb_const.identifier in _project.assembly_types: # -- Create a new Assembly with Layers from the Honeybee-Construction new_assembly = constructions.PhxConstructionOpaque() new_assembly.id_num = constructions.PhxConstructionOpaque._count new_assembly.display_name = hb_const.display_name - new_assembly.layers = [build_layer_from_hb_material(layer) for layer in materials] + new_assembly.layers = [build_layer_from_hb_material(mat) for mat in materials] # -- Add the assembly to the Project _project.add_assembly_type(new_assembly, hb_const.identifier) diff --git a/PHX/from_WUFI_XML/phx_schemas.py b/PHX/from_WUFI_XML/phx_schemas.py index d26d657..b3a84c8 100644 --- a/PHX/from_WUFI_XML/phx_schemas.py +++ b/PHX/from_WUFI_XML/phx_schemas.py @@ -22,6 +22,8 @@ PhxLayer, PhxMaterial, PhxWindowFrameElement, + PhxLayerDivisionGrid, + PhxLayerDivisionCell, ) from PHX.model.elec_equip import ( PhxDeviceClothesDryer, @@ -304,17 +306,48 @@ def _PhxConstructionOpaque(_data: wufi_xml.WufiAssembly) -> PhxConstructionOpaqu phx_obj.display_name = _data.Name phx_obj.layer_order = _data.Order_Layers phx_obj.grid_kind = _data.Grid_Kind + + # -- First, create any exchange-materials + exchange_materials: dict[int, PhxMaterial] = {} + for exchange_mat in _data.ExchangeMaterials or []: + new_exchange_mat: PhxMaterial = as_phx_obj(exchange_mat, "PhxExchangeMaterial") + exchange_materials[exchange_mat.IdentNr] = new_exchange_mat + for layer in _data.Layers: - new_layer = as_phx_obj(layer, "PhxLayer") + new_layer = as_phx_obj(layer, "PhxLayer", _exchange_materials=exchange_materials) phx_obj.layers.append(new_layer) return phx_obj -def _PhxLayer(_data: wufi_xml.WufiLayer) -> PhxLayer: +def _PhxLayer(_data: wufi_xml.WufiLayer, _exchange_materials: dict[int, PhxMaterial] = {}) -> PhxLayer: phx_obj = PhxLayer() phx_obj.thickness_m = _data.Thickness - new_mat = as_phx_obj(_data.Material, "PhxMaterial") + new_mat: PhxMaterial = as_phx_obj(_data.Material, "PhxMaterial") + + # -- Build up any sub-divisions (mixed-material layers) + if _data.ExchangeMaterialIdentNrs: + div_grid = PhxLayerDivisionGrid() + div_grid.set_column_widths([div.Distance for div in _data.ExchangeDivisionHorizontal or []]) + div_grid.set_row_heights([div.Distance for div in _data.ExchangeDivisionVertical or []]) + div_grid.populate_defaults() + + # -- I *think* the WUFI XML order just goes by column, top-to-bottom + # -- So split the list into groups , sized by column-count + if div_grid.column_count > 0: + ids_by_column = [ + _data.ExchangeMaterialIdentNrs[i : i + div_grid.row_count] + for i in range(0, len(_data.ExchangeMaterialIdentNrs), div_grid.row_count) + ] + for col_num, wufi_mat_id_nums in enumerate(ids_by_column): + for row_num, wufi_mat_id_num in enumerate(wufi_mat_id_nums): + div_grid.set_cell_material( + _column_num=col_num, + _row_num=row_num, + _phx_material=_exchange_materials.get(wufi_mat_id_num.IdentNr_Object, new_mat), + ) + phx_obj.divisions = div_grid + phx_obj.set_material(new_mat) return phx_obj @@ -332,6 +365,16 @@ def _PhxMaterial(_data: wufi_xml.WufiMaterial) -> PhxMaterial: return phx_obj +def _PhxExchangeMaterial(_data: wufi_xml.WufiExchangeMaterial) -> PhxMaterial: + phx_obj = PhxMaterial() + phx_obj.id_num = _data.IdentNr + phx_obj.display_name = _data.Name + phx_obj.conductivity = _data.ThermalConductivity + phx_obj.density = _data.BulkDensity + phx_obj.heat_capacity = _data.HeatCapacity + return phx_obj + + def _PhxWindowShade(_data: wufi_xml.WufiSolarProtectionType) -> PhxWindowShade: phx_obj = PhxWindowShade() phx_obj.id_num = _data.IdentNr diff --git a/PHX/model/constructions.py b/PHX/model/constructions.py index 8f55f0c..a30286f 100644 --- a/PHX/model/constructions.py +++ b/PHX/model/constructions.py @@ -31,9 +31,9 @@ class PhxMaterial: display_name: str = "" conductivity: float = 0.0 density: float = 0.0 - porosity: float = 0.0 + porosity: float = 0.95 heat_capacity: float = 0.0 - water_vapor_resistance: float = 0.0 + water_vapor_resistance: float = 1.0 reference_water: float = 0.0 percentage_of_assembly: float = 1.0 argb_color: PhxColor = field(default_factory=PhxColor) @@ -45,6 +45,21 @@ def __post_init__(self) -> None: def __eq__(self, other: PhxMaterial) -> bool: return self.id_num == other.id_num + def equivalent(self, other: PhxMaterial) -> bool: + """Check if two materials are equivalent except for their ID-Number.""" + return all( + [ + self.display_name == other.display_name, + self.conductivity == other.conductivity, + self.density == other.density, + self.porosity == other.porosity, + self.heat_capacity == other.heat_capacity, + self.water_vapor_resistance == other.water_vapor_resistance, + self.reference_water == other.reference_water, + self.argb_color == other.argb_color, + ] + ) + def __hash__(self) -> int: return hash(self.id_num) @@ -62,6 +77,16 @@ class PhxLayerDivisionCell: material: PhxMaterial expanding_contracting: int = 2 # 2="Exp./Contr." + def __eq__(self, other: PhxLayerDivisionCell) -> bool: + return all( + [ + self.row == other.row, + self.column == other.column, + self.material.equivalent(other.material), + self.expanding_contracting == other.expanding_contracting, + ] + ) + @dataclass class PhxLayerDivisionGrid: @@ -105,6 +130,11 @@ def cell_count(self) -> int: """Return the total number of cells in the grid.""" return self.row_count * self.column_count + @property + def cells(self) -> list[PhxLayerDivisionCell]: + """Return a list of all the PhxLayerDivisionCells in the grid, ordered by row then column""" + return sorted(self._cells, key=lambda x: (x.row, x.column)) + def set_column_widths(self, _column_widths: Iterable[float]) -> None: """Set the column widths of the grid.""" self._column_widths = [] @@ -177,6 +207,38 @@ def get_cell_area(self, _column_num: int, _row_num) -> float: row_height = self.row_heights[_row_num] return col_width * row_height + def get_base_material(self) -> PhxMaterial | None: + """Get the 'base' material of the grid (the most common material in the layer, by cell-area).""" + if not self._cells: + return None + + material_areas = {} + for cell in self._cells: + cell_area = self.get_cell_area(cell.column, cell.row) + if id(cell.material) not in material_areas: + record = {"material": cell.material, "area": cell_area} + material_areas[id(cell.material)] = record + else: + material_areas[id(cell.material)]["area"] += cell_area + + return max(material_areas.values(), key=lambda x: x["area"])["material"] + + def populate_defaults(self) -> None: + """Populate the grid with default values. Ensure that there is at least one row or column.""" + if self.column_count > 0 and self.row_count == 0: + self.add_new_row(1.0) + elif self.row_count > 0 and self.column_count == 0: + self.add_new_column(1.0) + + def __eq__(self, other: PhxLayerDivisionGrid) -> bool: + return all( + [ + self.row_heights == other.row_heights, + self.column_widths == other.column_widths, + self.cells == other.cells, + ] + ) + @dataclass class PhxLayer: @@ -322,6 +384,16 @@ def division_material_id_numbers(self) -> List[int]: id_numbers_.append(-1) return id_numbers_ + def equivalent(self, other: PhxLayer) -> bool: + """Check if two layers are equivalent.""" + return all( + [ + self.thickness_m == other.thickness_m, + self.material.equivalent(other.material), + self.divisions == other.divisions, + ] + ) + # ----------------------------------------------------------------------------- # Construction diff --git a/output.txt b/output.txt deleted file mode 100644 index e7b9163..0000000 --- a/output.txt +++ /dev/null @@ -1,5 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -> Reading in data from XML-File: /Users/em/Desktop/test/test2.xml -> Converting XML-data to a PHX-Model -> Saving the XML file to: .//Users/em/Desktop/test/test2.xml -> Successfully wrote to file. diff --git a/requirements.txt b/requirements.txt index cf4604f..54d4e98 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,8 +1,8 @@ -honeybee-core>=1.58.60 -honeybee-energy>=1.109.16 -honeybee-ph>=1.28.18 +honeybee-core>=1.61.1 +honeybee-energy>=1.111.0 +honeybee-ph>=1.28.20 pydantic<2.0 -PH-units>=1.5.15 +PH-units>=1.5.17 rich xlwings lxml \ No newline at end of file diff --git a/tests/_regenerated_xml/School.xml b/tests/_regenerated_xml/School.xml index 83a8368..cf6e94e 100644 --- a/tests/_regenerated_xml/School.xml +++ b/tests/_regenerated_xml/School.xml @@ -5823,7 +5823,7 @@ Instant DHW 0 - 6 + 7 1781.2996 6 1353.79 @@ -6066,6 +6066,7 @@ Instant DHW 1 2.193 4 + 2 Slab @@ -6658,9 +6659,44 @@ Instant DHW 255 - - - + + + 0.3683 + 2 + + + 0.0381 + 2 + + + + + 2.4384 + 2 + + + 0.1524 + 2 + + + + + 1 + -1 + + + 1 + 1 + + + 1 + 1 + + + 1 + 1 + + 0.0125 @@ -6684,7 +6720,21 @@ Instant DHW - + + + 1 + Southern Yellow Pine + 0.119 + 500.0 + 1880.0 + + 255 + 255 + 255 + 255 + + + 8 @@ -6781,9 +6831,44 @@ Instant DHW 255 - - - + + + 0.3683 + 2 + + + 0.0381 + 2 + + + + + 2.4384 + 2 + + + 0.1524 + 2 + + + + + 1 + -1 + + + 1 + 1 + + + 1 + 1 + + + 1 + 1 + + 0.0125 @@ -6807,7 +6892,21 @@ Instant DHW - + + + 1 + Southern Yellow Pine + 0.119 + 500.0 + 1880.0 + + 255 + 255 + 255 + 255 + + + 9 @@ -6853,9 +6952,44 @@ Instant DHW 255 - - - + + + 0.3683 + 2 + + + 0.0381 + 2 + + + + + 2.4384 + 2 + + + 0.1524 + 2 + + + + + 1 + -1 + + + 1 + 1 + + + 1 + 1 + + + 1 + 1 + + 0.0125 @@ -6879,7 +7013,21 @@ Instant DHW - + + + 1 + Southern Yellow Pine + 0.119 + 500.0 + 1880.0 + + 255 + 255 + 255 + 255 + + + 10 @@ -6976,9 +7124,44 @@ Instant DHW 255 - - - + + + 0.3683 + 2 + + + 0.0381 + 2 + + + + + 2.4384 + 2 + + + 0.1524 + 2 + + + + + 1 + -1 + + + 1 + 1 + + + 1 + 1 + + + 1 + 1 + + 0.0125 @@ -7002,7 +7185,21 @@ Instant DHW - + + + 1 + Southern Yellow Pine + 0.119 + 500.0 + 1880.0 + + 255 + 255 + 255 + 255 + + + diff --git a/tests/_regenerated_xml/School_10_25_17_9_48.xml b/tests/_regenerated_xml/School_10_25_17_9_48.xml deleted file mode 100644 index 1b2a030..0000000 --- a/tests/_regenerated_xml/School_10_25_17_9_48.xml +++ /dev/null @@ -1,7215 +0,0 @@ - - - 49 - 1 - 3.5.0.1 - 4 - 1 - - 0 - false - - 2020 - 9 - 9 - 0 - 0 - - true - - - - - - - - - - - - - - - - - - - - - - - - - Office - 1 - 5.0 - 52.0 - 12.0 - 1.0 - 0.0 - 0.77 - 0.0 - 0.54 - 12.0 - 0.4 - - - Workshop - 2 - 5.0 - 52.0 - 12.0 - 1.0 - 6.0 - 0.77 - 0.0 - 0.54 - 6.0 - 0.4 - - - - - 1 - Office - 0.5 - 7.0 - 18.0 - 250.0 - 300 - 0.3 - 1 - - - 2 - Workshop - 0.5 - 7.0 - 18.0 - 200.0 - 300 - 0.0 - 1 - - - - - 1 - Preliminary - Assuming windows are outies. -Need to understand additional workshop ventilation if there is any. -Day lighting added back in. -Instant DHW - - - - - 1 - -20.3598865 - -2.982053 - -0.7747 - - - 2 - -20.3598865 - -2.982053 - -2.032 - - - 3 - -20.3598865 - -3.934553 - -2.032 - - - 4 - -20.3598865 - -3.934553 - -0.7747 - - - 5 - -20.3598865 - -10.348053 - -6.096 - - - 6 - -18.8739865 - -10.348053 - -6.096 - - - 7 - -18.8739865 - -10.348053 - -0.6096 - - - 8 - -20.3487745 - -10.348053 - -0.6096 - - - 9 - -20.3598865 - -10.348053 - -0.6096 - - - 10 - -20.3598865 - 0.675547 - -6.096 - - - 11 - -20.3598865 - -2.956653 - -6.096 - - - 12 - -20.3598865 - -2.956653 - -0.6096 - - - 13 - -20.3598865 - 0.675547 - -0.6096 - - - 14 - -9.6283865 - -10.348053 - -6.096 - - - 15 - -7.7995865 - -10.348053 - -6.096 - - - 16 - -7.7995865 - -10.348053 - -0.6096 - - - 17 - -9.6283865 - -10.348053 - -0.6096 - - - 18 - -20.3598865 - -5.839553 - -2.9464 - - - 19 - -20.3598865 - -5.839553 - -2.032 - - - 20 - -20.3598865 - -4.887053 - -2.032 - - - 21 - -20.3598865 - -4.887053 - -2.9464 - - - 22 - -20.3598865 - -3.934553 - -2.9464 - - - 23 - -20.3598865 - -2.982053 - -2.9464 - - - 24 - -20.3598865 - -6.792053 - -2.9464 - - - 25 - -20.3598865 - -6.792053 - -2.032 - - - 26 - -15.1655865 - -10.348053 - -0.6096 - - - 27 - -15.1655865 - -10.348053 - -6.096 - - - 28 - -17.3245865 - -10.348053 - -1.0668 - - - 29 - -18.3913865 - -10.348053 - -1.0668 - - - 30 - -18.3913865 - -10.348053 - -2.1336 - - - 31 - -17.3245865 - -10.348053 - -2.1336 - - - 32 - -7.7741865 - -10.348053 - -4.8768 - - - 33 - -6.7073865 - -10.348053 - -4.8768 - - - 34 - -6.7073865 - -10.348053 - -3.5052 - - - 35 - -7.7741865 - -10.348053 - -3.5052 - - - 36 - -6.2501865 - -10.348053 - -3.5052 - - - 37 - -6.2501865 - -10.348053 - -4.8768 - - - 38 - 0.4427135 - -10.348053 - -0.6096 - - - 39 - -1.9575865 - -10.348053 - -0.6096 - - - 40 - -1.9575865 - -10.348053 - -6.096 - - - 41 - 0.4427135 - -10.348053 - -6.096 - - - 42 - -3.5069865 - -10.348053 - -2.1336 - - - 43 - -2.4401865 - -10.348053 - -2.1336 - - - 44 - -2.4401865 - -10.348053 - -1.0668 - - - 45 - -3.5069865 - -10.348053 - -1.0668 - - - 46 - -18.8485865 - -10.348053 - -2.1336 - - - 47 - -18.8485865 - -10.348053 - -1.0668 - - - 48 - -1.9829865 - -10.348053 - -1.0668 - - - 49 - -1.9829865 - -10.348053 - -2.1336 - - - 50 - -9.6537865 - -10.348053 - -1.0668 - - - 51 - -10.1109865 - -10.348053 - -1.0668 - - - 52 - -10.1109865 - -10.348053 - -2.1336 - - - 53 - -9.6537865 - -10.348053 - -2.1336 - - - 54 - -11.1777865 - -10.348053 - -2.1336 - - - 55 - -11.1777865 - -10.348053 - -1.0668 - - - 56 - -6.2501865 - -10.348053 - -1.0668 - - - 57 - -6.7073865 - -10.348053 - -1.0668 - - - 58 - -6.7073865 - -10.348053 - -2.1336 - - - 59 - -6.2501865 - -10.348053 - -2.1336 - - - 60 - -7.7741865 - -10.348053 - -2.1336 - - - 61 - -7.7741865 - -10.348053 - -1.0668 - - - 62 - -4.1165865 - -10.348053 - -1.0668 - - - 63 - -4.5737865 - -10.348053 - -1.0668 - - - 64 - -4.5737865 - -10.348053 - -2.1336 - - - 65 - -4.1165865 - -10.348053 - -2.1336 - - - 66 - -5.6405865 - -10.348053 - -2.1336 - - - 67 - -5.6405865 - -10.348053 - -1.0668 - - - 68 - -13.3113865 - -10.348053 - -2.1336 - - - 69 - -12.8541865 - -10.348053 - -2.1336 - - - 70 - -12.8541865 - -10.348053 - -1.0668 - - - 71 - -13.3113865 - -10.348053 - -1.0668 - - - 72 - -11.7873865 - -10.348053 - -1.0668 - - - 73 - -11.7873865 - -10.348053 - -2.1336 - - - 74 - -16.7149865 - -10.348053 - -2.1336 - - - 75 - -16.2577865 - -10.348053 - -2.1336 - - - 76 - -16.2577865 - -10.348053 - -1.0668 - - - 77 - -16.7149865 - -10.348053 - -1.0668 - - - 78 - -15.1909865 - -10.348053 - -1.0668 - - - 79 - -15.1909865 - -10.348053 - -2.1336 - - - 80 - -1.9829865 - -10.348053 - -3.5052 - - - 81 - -2.4401865 - -10.348053 - -3.5052 - - - 82 - -2.4401865 - -10.348053 - -4.8768 - - - 83 - -1.9829865 - -10.348053 - -4.8768 - - - 84 - -3.5069865 - -10.348053 - -4.8768 - - - 85 - -3.5069865 - -10.348053 - -3.5052 - - - 86 - -4.1165865 - -10.348053 - -3.5052 - - - 87 - -4.5737865 - -10.348053 - -3.5052 - - - 88 - -4.5737865 - -10.348053 - -4.8768 - - - 89 - -4.1165865 - -10.348053 - -4.8768 - - - 90 - -5.6405865 - -10.348053 - -4.8768 - - - 91 - -5.6405865 - -10.348053 - -3.5052 - - - 92 - -9.6537865 - -10.348053 - -3.5052 - - - 93 - -10.1109865 - -10.348053 - -3.5052 - - - 94 - -10.1109865 - -10.348053 - -4.8768 - - - 95 - -9.6537865 - -10.348053 - -4.8768 - - - 96 - -11.1777865 - -10.348053 - -4.8768 - - - 97 - -11.1777865 - -10.348053 - -3.5052 - - - 98 - -16.7149865 - -10.348053 - -4.8768 - - - 99 - -16.2577865 - -10.348053 - -4.8768 - - - 100 - -16.2577865 - -10.348053 - -3.5052 - - - 101 - -16.7149865 - -10.348053 - -3.5052 - - - 102 - -15.1909865 - -10.348053 - -3.5052 - - - 103 - -15.1909865 - -10.348053 - -4.8768 - - - 104 - -17.3245865 - -10.348053 - -3.5052 - - - 105 - -18.3913865 - -10.348053 - -3.5052 - - - 106 - -18.3913865 - -10.348053 - -4.8768 - - - 107 - -17.3245865 - -10.348053 - -4.8768 - - - 108 - -18.8485865 - -10.348053 - -4.8768 - - - 109 - -18.8485865 - -10.348053 - -3.5052 - - - 110 - -18.3913865 - 0.675547 - -1.0668 - - - 111 - -17.3245865 - 0.675547 - -1.0668 - - - 112 - -17.3245865 - 0.675547 - -2.1336 - - - 113 - -18.3913865 - 0.675547 - -2.1336 - - - 114 - -18.8485865 - 0.675547 - -2.1336 - - - 115 - -18.8485865 - 0.675547 - -1.0668 - - - 116 - -2.4401865 - 0.675547 - -2.1336 - - - 117 - -3.5069865 - 0.675547 - -2.1336 - - - 118 - -3.5069865 - 0.675547 - -1.0668 - - - 119 - -2.4401865 - 0.675547 - -1.0668 - - - 120 - -1.9829865 - 0.675547 - -1.0668 - - - 121 - -1.9829865 - 0.675547 - -2.1336 - - - 122 - -4.5737865 - 0.675547 - -2.1336 - - - 123 - -5.6405865 - 0.675547 - -2.1336 - - - 124 - -5.6405865 - 0.675547 - -1.0668 - - - 125 - -4.5737865 - 0.675547 - -1.0668 - - - 126 - -4.1165865 - 0.675547 - -1.0668 - - - 127 - -4.1165865 - 0.675547 - -2.1336 - - - 128 - -6.7073865 - 0.675547 - -2.1336 - - - 129 - -7.7741865 - 0.675547 - -2.1336 - - - 130 - -7.7741865 - 0.675547 - -1.0668 - - - 131 - -6.7073865 - 0.675547 - -1.0668 - - - 132 - -6.2501865 - 0.675547 - -1.0668 - - - 133 - -6.2501865 - 0.675547 - -2.1336 - - - 134 - -16.2577865 - 0.675547 - -1.0668 - - - 135 - -15.1909865 - 0.675547 - -1.0668 - - - 136 - -15.1909865 - 0.675547 - -2.1336 - - - 137 - -16.2577865 - 0.675547 - -2.1336 - - - 138 - -16.7149865 - 0.675547 - -2.1336 - - - 139 - -16.7149865 - 0.675547 - -1.0668 - - - 140 - -20.3598865 - -5.839553 - -0.7747 - - - 141 - -20.3598865 - -6.792053 - -0.7747 - - - 142 - -1.6273865 - 0.675547 - -2.8956 - - - 143 - -1.6273865 - 0.675547 - -5.9436 - - - 144 - -4.0657865 - 0.675547 - -5.9436 - - - 145 - -4.0657865 - 0.675547 - -2.8956 - - - 146 - -20.3598865 - -4.810853 - -3.81 - - - 147 - -20.3598865 - -3.896453 - -3.81 - - - 148 - -20.3598865 - -3.896453 - -5.9436 - - - 149 - -20.3598865 - -4.810853 - -5.9436 - - - 150 - -20.3598865 - -6.817453 - -0.6096 - - - 151 - -20.3598865 - -6.817453 - -6.096 - - - 152 - 0.4427135 - 0.675547 - -6.096 - - - 153 - 0.4427135 - 0.675547 - -0.6096 - - - 154 - -20.3598865 - -2.982053 - -5.9436 - - - 155 - -20.3598865 - -2.982053 - -3.81 - - - 156 - -13.3113865 - -10.348053 - -3.5052 - - - 157 - -13.3113865 - -10.348053 - -5.033963 - - - 158 - -12.7017865 - -10.348053 - -5.033963 - - - 159 - -12.7017865 - -10.348053 - -3.5052 - - - 160 - -20.3487745 - 0.675547 - -0.6096 - - - 161 - -11.7873865 - -10.348053 - -3.5052 - - - 162 - -12.7017865 - -10.348053 - -5.948362 - - - 163 - -11.7873865 - -10.348053 - -5.948363 - - - 164 - -4.6753865 - 0.675547 - -3.81 - - - 165 - -4.6753865 - 0.675547 - -5.9436 - - - 166 - -5.5897865 - 0.675547 - -5.9436 - - - 167 - -5.5897865 - 0.675547 - -3.81 - - - 168 - -20.3598865 - -4.887053 - -0.7747 - - - 169 - -13.3367865 - -10.348053 - -6.096 - - - 170 - -13.3367865 - -10.348053 - -0.6096 - - - 171 - -37.2122075 - -12.206718 - 3.048 - - - 172 - -30.3970695 - -12.206718 - 3.048 - - - 173 - -30.3970695 - 6.682945 - 3.048 - - - 174 - -37.2122075 - 6.682945 - 3.048 - - - 175 - -37.2122075 - -12.206718 - -6.096 - - - 176 - -30.3970695 - -12.206718 - -6.096 - - - 177 - -30.3970695 - 6.682945 - -6.096 - - - 178 - -37.2122075 - 6.682945 - -6.096 - - - 179 - 5.7606575 - -13.745106 - 6.096 - - - 180 - 37.2122075 - -13.745106 - 6.096 - - - 181 - 37.2122075 - 0.596369 - 6.096 - - - 182 - 5.7606575 - 0.596369 - 6.096 - - - 183 - 5.7606575 - -13.745106 - -6.096 - - - 184 - 37.2122075 - -13.745106 - -6.096 - - - 185 - 37.2122075 - 0.596369 - -6.096 - - - 186 - 5.7606575 - 0.596369 - -6.096 - - - 187 - -3.9568755 - 12.269946 - -3.048 - - - 188 - 0.0762385 - 17.338034 - -3.048 - - - 189 - -0.0082295 - 17.405252 - -3.048 - - - 190 - -8.2500835 - 23.964006 - -3.048 - - - 191 - -12.2831985 - 18.895917 - -3.048 - - - 192 - -3.9568755 - 12.269946 - -6.096 - - - 193 - 0.0762385 - 17.338034 - -6.096 - - - 194 - -0.0082295 - 17.405252 - -6.096 - - - 195 - -8.2500835 - 23.964006 - -6.096 - - - 196 - -12.2831985 - 18.895917 - -6.096 - - - 197 - -7.9670845 - 26.794729 - -6.096 - - - 198 - -13.5222475 - 31.08087 - -6.096 - - - 199 - -13.5222475 - 31.08087 - 0.0 - - - 200 - -7.9670845 - 26.794729 - 0.0 - - - 201 - -21.1202705 - 21.23326 - -6.096 - - - 202 - -21.1202705 - 21.23326 - 0.0 - - - 203 - -15.5234095 - 17.001164 - -6.096 - - - 204 - -15.5234095 - 17.001164 - 0.0 - - - 205 - -20.9312185 - 36.198899 - -6.096 - - - 206 - -28.5292415 - 26.351288 - -6.096 - - - 207 - -28.5292415 - 26.351288 - 0.0 - - - 208 - -20.9312185 - 36.198899 - 0.0 - - - 209 - -22.9323805 - 22.119192 - -6.096 - - - 210 - -22.9323805 - 22.119192 - 0.0 - - - 211 - -15.3760555 - 31.912757 - -6.096 - - - 212 - -15.3760555 - 31.912757 - 0.0 - - - 213 - -27.9838495 - 40.154839 - -6.096 - - - 214 - -35.5818735 - 30.307228 - -6.096 - - - 215 - -35.5818735 - 30.307228 - 0.0 - - - 216 - -27.9838495 - 40.154839 - 0.0 - - - 217 - -29.9850115 - 26.075132 - -6.096 - - - 218 - -29.9850115 - 26.075132 - 0.0 - - - 219 - -22.4286875 - 35.868697 - -6.096 - - - 220 - -22.4286875 - 35.868697 - 0.0 - - - 221 - 6.2482745 - -30.504427 - -6.096 - - - 222 - -15.3945445 - -30.504427 - -6.096 - - - 223 - -15.3945445 - -30.504427 - 1.524 - - - 224 - 6.2482745 - -30.504427 - 1.524 - - - 225 - -15.3945445 - -40.154839 - -6.096 - - - 226 - -15.3945445 - -40.154839 - 1.524 - - - 227 - 6.2482745 - -40.154839 - -6.096 - - - 228 - 6.2482745 - -40.154839 - 1.524 - - - 229 - -25.4353595 - -4.133836 - -6.096 - - - 230 - -25.4029005 - -4.043198 - -6.096 - - - 231 - -25.4029005 - -4.043198 - -1.702228 - - - 232 - -25.5634735 - -4.491576 - -1.702228 - - - 233 - -25.7519575 - -5.017892 - -2.582796 - - - 234 - -25.7519575 - -5.017892 - -4.028435 - - - 235 - -25.5433915 - -4.4355 - -4.709047 - - - 236 - -25.4353595 - -4.133836 - -4.709047 - - - 237 - -24.8046495 - -4.319138 - -1.702228 - - - 238 - -25.3134575 - -4.084453 - -6.096 - - - 239 - -25.3134575 - -4.084453 - -4.709047 - - - 240 - -24.8368865 - -4.304269 - -4.709047 - - - 241 - -24.1958235 - -4.599955 - -3.941609 - - - 242 - -24.1958235 - -4.599955 - -2.436962 - - - 243 - -25.4923425 - -4.001944 - -6.096 - - - 244 - -25.8453645 - -3.839115 - -1.702228 - - - 245 - -26.3647405 - -3.599556 - -2.582796 - - - 246 - -26.3647405 - -3.599556 - -4.028435 - - - 247 - -25.7900285 - -3.864638 - -4.709047 - - - 248 - -25.4923425 - -4.001944 - -4.709047 - - - 249 - -25.1857915 - -3.436953 - -1.702228 - - - 250 - -25.3704405 - -3.952561 - -6.096 - - - 251 - -25.3704405 - -3.952561 - -4.709047 - - - 252 - -25.1974905 - -3.469621 - -4.709047 - - - 253 - -24.9648445 - -2.819991 - -3.941609 - - - 254 - -24.9648445 - -2.819991 - -2.436962 - - - 255 - -8.5203115 - -12.862653 - -3.4798 - - - 256 - -8.5203115 - -10.373453 - -3.4798 - - - 257 - -14.1337115 - -10.373453 - -3.4798 - - - 258 - -14.1337115 - -12.862653 - -3.4798 - - - 259 - -16.5464685 - -17.78509 - -1.549828 - - - 260 - -17.1447195 - -17.50915 - -1.549828 - - - 261 - -17.1447195 - -17.50915 - -5.9436 - - - 262 - -17.0552775 - -17.550405 - -5.9436 - - - 263 - -17.0552775 - -17.550405 - -4.556647 - - - 264 - -16.5787065 - -17.77022 - -4.556647 - - - 265 - -15.9376425 - -18.065907 - -3.789209 - - - 266 - -15.9376425 - -18.065907 - -2.284562 - - - 267 - -17.2341625 - -17.467895 - -5.9436 - - - 268 - -17.5871845 - -17.305066 - -1.549828 - - - 269 - -18.1065605 - -17.065507 - -2.430396 - - - 270 - -18.1065605 - -17.065507 - -3.876035 - - - 271 - -17.5318485 - -17.33059 - -4.556647 - - - 272 - -17.2341625 - -17.467895 - -4.556647 - - - 273 - -16.9276115 - -16.902904 - -1.549828 - - - 274 - -17.1122605 - -17.418512 - -5.9436 - - - 275 - -17.1122605 - -17.418512 - -4.556647 - - - 276 - -16.9393105 - -16.935573 - -4.556647 - - - 277 - -16.7066645 - -16.285942 - -3.789209 - - - 278 - -16.7066645 - -16.285942 - -2.284562 - - - 279 - -17.1771795 - -17.599788 - -5.9436 - - - 280 - -17.3052925 - -17.957528 - -1.549828 - - - 281 - -17.4937775 - -18.483844 - -2.430396 - - - 282 - -17.4937775 - -18.483844 - -3.876035 - - - 283 - -17.2852115 - -17.901452 - -4.556647 - - - 284 - -17.1771795 - -17.599788 - -4.556647 - - - 285 - -11.3054475 - -17.73527 - -5.9436 - - - 286 - -11.2729885 - -17.644632 - -5.9436 - - - 287 - -11.2729885 - -17.644632 - -1.549828 - - - 288 - -11.4335615 - -18.09301 - -1.549828 - - - 289 - -11.6220455 - -18.619326 - -2.430396 - - - 290 - -11.6220455 - -18.619326 - -3.876035 - - - 291 - -11.4134795 - -18.036934 - -4.556647 - - - 292 - -11.3054475 - -17.73527 - -4.556647 - - - 293 - -11.0558795 - -17.038387 - -1.549828 - - - 294 - -11.2405295 - -17.553995 - -5.9436 - - - 295 - -11.2405295 - -17.553995 - -4.556647 - - - 296 - -11.0675785 - -17.071055 - -4.556647 - - - 297 - -10.8349335 - -16.421425 - -3.789209 - - - 298 - -10.8349335 - -16.421425 - -2.284562 - - - 299 - -11.3624305 - -17.603378 - -5.9436 - - - 300 - -11.7154525 - -17.440548 - -1.549828 - - - 301 - -12.2348285 - -17.20099 - -2.430396 - - - 302 - -12.2348285 - -17.20099 - -3.876035 - - - 303 - -11.6601165 - -17.466072 - -4.556647 - - - 304 - -11.3624305 - -17.603378 - -4.556647 - - - 305 - -10.6747375 - -17.920572 - -1.549828 - - - 306 - -11.1835455 - -17.685887 - -5.9436 - - - 307 - -11.1835455 - -17.685887 - -4.556647 - - - 308 - -10.7069745 - -17.905703 - -4.556647 - - - 309 - -10.0659115 - -18.201389 - -3.789209 - - - 310 - -10.0659115 - -18.201389 - -2.284562 - - - 311 - -5.6316115 - -17.473582 - -5.9436 - - - 312 - -5.5421695 - -17.514837 - -5.9436 - - - 313 - -5.5421695 - -17.514837 - -1.549828 - - - 314 - -5.9846335 - -17.310753 - -1.549828 - - - 315 - -6.5040095 - -17.071194 - -2.430396 - - - 316 - -6.5040095 - -17.071194 - -3.876035 - - - 317 - -5.9292975 - -17.336277 - -4.556647 - - - 318 - -5.6316115 - -17.473582 - -4.556647 - - - 319 - -5.5746285 - -17.605475 - -5.9436 - - - 320 - -5.7027425 - -17.963215 - -1.549828 - - - 321 - -5.8912265 - -18.489531 - -2.430396 - - - 322 - -5.8912265 - -18.489531 - -3.876035 - - - 323 - -5.6826605 - -17.907139 - -4.556647 - - - 324 - -5.5746285 - -17.605475 - -4.556647 - - - 325 - -4.9439185 - -17.790777 - -1.549828 - - - 326 - -5.4527265 - -17.556092 - -5.9436 - - - 327 - -5.4527265 - -17.556092 - -4.556647 - - - 328 - -4.9761555 - -17.775907 - -4.556647 - - - 329 - -4.3350925 - -18.071594 - -3.789209 - - - 330 - -4.3350925 - -18.071594 - -2.284562 - - - 331 - -5.3250605 - -16.908591 - -1.549828 - - - 332 - -5.5097095 - -17.424199 - -5.9436 - - - 333 - -5.5097095 - -17.424199 - -4.556647 - - - 334 - -5.3367595 - -16.94126 - -4.556647 - - - 335 - -5.1041135 - -16.291629 - -3.789209 - - - 336 - -5.1041135 - -16.291629 - -2.284562 - - - 337 - -17.7924885 - 13.296623 - -1.702228 - - - 338 - -18.0095975 - 12.690377 - -1.702228 - - - 339 - -18.0095975 - 12.690377 - -6.096 - - - 340 - -17.9771385 - 12.781015 - -6.096 - - - 341 - -17.9771385 - 12.781015 - -4.709047 - - - 342 - -17.8041875 - 13.263954 - -4.709047 - - - 343 - -17.5715425 - 13.913585 - -3.941609 - - - 344 - -17.5715425 - 13.913585 - -2.436962 - - - 345 - -18.0420565 - 12.599739 - -6.096 - - - 346 - -18.1701705 - 12.242 - -1.702228 - - - 347 - -18.3586545 - 11.715683 - -2.582796 - - - 348 - -18.3586545 - 11.715683 - -4.028435 - - - 349 - -18.1500885 - 12.298075 - -4.709047 - - - 350 - -18.0420565 - 12.599739 - -4.709047 - - - 351 - -17.4113465 - 12.414437 - -1.702228 - - - 352 - -17.9201545 - 12.649122 - -6.096 - - - 353 - -17.9201545 - 12.649122 - -4.709047 - - - 354 - -17.4435835 - 12.429307 - -4.709047 - - - 355 - -16.8025205 - 12.13362 - -3.941609 - - - 356 - -16.8025205 - 12.13362 - -2.436962 - - - 357 - -18.0990395 - 12.731632 - -6.096 - - - 358 - -18.4520615 - 12.894461 - -1.702228 - - - 359 - -18.9714375 - 13.13402 - -2.582796 - - - 360 - -18.9714375 - 13.13402 - -4.028435 - - - 361 - -18.3967255 - 12.868937 - -4.709047 - - - 362 - -18.0990395 - 12.731632 - -4.709047 - - - 363 - -26.1283505 - 3.230419 - -1.702228 - - - 364 - -26.7266015 - 3.506358 - -1.702228 - - - 365 - -26.7266015 - 3.506358 - -6.096 - - - 366 - -26.6371585 - 3.465104 - -6.096 - - - 367 - -26.6371585 - 3.465104 - -4.709047 - - - 368 - -26.1605885 - 3.245288 - -4.709047 - - - 369 - -25.5195245 - 2.949602 - -3.941609 - - - 370 - -25.5195245 - 2.949602 - -2.436962 - - - 371 - -26.5094925 - 4.112604 - -1.702228 - - - 372 - -26.6941425 - 3.596996 - -6.096 - - - 373 - -26.6941425 - 3.596996 - -4.709047 - - - 374 - -26.5211915 - 4.079936 - -4.709047 - - - 375 - -26.2885465 - 4.729566 - -3.941609 - - - 376 - -26.2885465 - 4.729566 - -2.436962 - - - 377 - -26.8160445 - 3.547613 - -6.096 - - - 378 - -27.1690665 - 3.710442 - -1.702228 - - - 379 - -27.6884415 - 3.950001 - -2.582796 - - - 380 - -27.6884415 - 3.950001 - -4.028435 - - - 381 - -27.1137295 - 3.684919 - -4.709047 - - - 382 - -26.8160445 - 3.547613 - -4.709047 - - - 383 - -26.7590605 - 3.415721 - -6.096 - - - 384 - -26.8871745 - 3.057981 - -1.702228 - - - 385 - -27.0756595 - 2.531664 - -2.582796 - - - 386 - -27.0756595 - 2.531664 - -4.028435 - - - 387 - -26.8670925 - 3.114057 - -4.709047 - - - 388 - -26.7590605 - 3.415721 - -4.709047 - - - 389 - -25.0046895 - -8.448525 - -1.702228 - - - 390 - -25.6029405 - -8.172586 - -1.702228 - - - 391 - -25.6029405 - -8.172586 - -6.096 - - - 392 - -25.5134985 - -8.213841 - -6.096 - - - 393 - -25.5134985 - -8.213841 - -4.709047 - - - 394 - -25.0369275 - -8.433656 - -4.709047 - - - 395 - -24.3958635 - -8.729343 - -3.941609 - - - 396 - -24.3958635 - -8.729343 - -2.436962 - - - 397 - -25.6923835 - -8.131331 - -6.096 - - - 398 - -26.0454055 - -7.968502 - -1.702228 - - - 399 - -26.5647815 - -7.728943 - -2.582796 - - - 400 - -26.5647815 - -7.728943 - -4.028435 - - - 401 - -25.9900695 - -7.994025 - -4.709047 - - - 402 - -25.6923835 - -8.131331 - -4.709047 - - - 403 - -25.3858325 - -7.56634 - -1.702228 - - - 404 - -25.5704815 - -8.081948 - -6.096 - - - 405 - -25.5704815 - -8.081948 - -4.709047 - - - 406 - -25.3975315 - -7.599008 - -4.709047 - - - 407 - -25.1648855 - -6.949378 - -3.941609 - - - 408 - -25.1648855 - -6.949378 - -2.436962 - - - 409 - -25.6354005 - -8.263224 - -6.096 - - - 410 - -25.7635135 - -8.620963 - -1.702228 - - - 411 - -25.9519985 - -9.14728 - -2.582796 - - - 412 - -25.9519985 - -9.14728 - -4.028435 - - - 413 - -25.7434325 - -8.564888 - -4.709047 - - - 414 - -25.6354005 - -8.263224 - -4.709047 - - - 415 - -26.0228905 - 8.64713 - -1.702228 - - - 416 - -26.6211415 - 8.92307 - -1.702228 - - - 417 - -26.6211415 - 8.92307 - -6.096 - - - 418 - -26.5316985 - 8.881815 - -6.096 - - - 419 - -26.5316985 - 8.881815 - -4.709047 - - - 420 - -26.0551285 - 8.662 - -4.709047 - - - 421 - -25.4140645 - 8.366313 - -3.941609 - - - 422 - -25.4140645 - 8.366313 - -2.436962 - - - 423 - -26.4040325 - 9.529316 - -1.702228 - - - 424 - -26.5886825 - 9.013708 - -6.096 - - - 425 - -26.5886825 - 9.013708 - -4.709047 - - - 426 - -26.4157315 - 9.496647 - -4.709047 - - - 427 - -26.1830865 - 10.146278 - -3.941609 - - - 428 - -26.1830865 - 10.146278 - -2.436962 - - - 429 - -26.7105845 - 8.964325 - -6.096 - - - 430 - -27.0636065 - 9.127154 - -1.702228 - - - 431 - -27.5829815 - 9.366713 - -2.582796 - - - 432 - -27.5829815 - 9.366713 - -4.028435 - - - 433 - -27.0082695 - 9.10163 - -4.709047 - - - 434 - -26.7105845 - 8.964325 - -4.709047 - - - 435 - -26.6536005 - 8.832432 - -6.096 - - - 436 - -26.7817145 - 8.474693 - -1.702228 - - - 437 - -26.9701995 - 7.948376 - -2.582796 - - - 438 - -26.9701995 - 7.948376 - -4.028435 - - - 439 - -26.7616325 - 8.530768 - -4.709047 - - - 440 - -26.6536005 - 8.832432 - -4.709047 - - - 441 - -22.7609895 - 8.047008 - -1.702228 - - - 442 - -22.9780985 - 7.440762 - -1.702228 - - - 443 - -22.9780985 - 7.440762 - -6.096 - - - 444 - -22.9456395 - 7.5314 - -6.096 - - - 445 - -22.9456395 - 7.5314 - -4.709047 - - - 446 - -22.7726885 - 8.014339 - -4.709047 - - - 447 - -22.5400425 - 8.66397 - -3.941609 - - - 448 - -22.5400425 - 8.66397 - -2.436962 - - - 449 - -22.3798475 - 7.164822 - -1.702228 - - - 450 - -22.8886555 - 7.399507 - -6.096 - - - 451 - -22.8886555 - 7.399507 - -4.709047 - - - 452 - -22.4120845 - 7.179692 - -4.709047 - - - 453 - -21.7710215 - 6.884005 - -3.941609 - - - 454 - -21.7710215 - 6.884005 - -2.436962 - - - 455 - -23.0105575 - 7.350124 - -6.096 - - - 456 - -23.1386715 - 6.992384 - -1.702228 - - - 457 - -23.3271555 - 6.466068 - -2.582796 - - - 458 - -23.3271555 - 6.466068 - -4.028435 - - - 459 - -23.1185895 - 7.04846 - -4.709047 - - - 460 - -23.0105575 - 7.350124 - -4.709047 - - - 461 - -23.0675405 - 7.482017 - -6.096 - - - 462 - -23.4205625 - 7.644846 - -1.702228 - - - 463 - -23.9399385 - 7.884405 - -2.582796 - - - 464 - -23.9399385 - 7.884405 - -4.028435 - - - 465 - -23.3652265 - 7.619322 - -4.709047 - - - 466 - -23.0675405 - 7.482017 - -4.709047 - - - 467 - -20.7963335 - 10.765735 - -6.096 - - - 468 - -20.7068905 - 10.72448 - -6.096 - - - 469 - -20.7068905 - 10.72448 - -1.702228 - - - 470 - -21.1493555 - 10.928564 - -1.702228 - - - 471 - -21.6687315 - 11.168123 - -2.582796 - - - 472 - -21.6687315 - 11.168123 - -4.028435 - - - 473 - -21.0940185 - 10.90304 - -4.709047 - - - 474 - -20.7963335 - 10.765735 - -4.709047 - - - 475 - -20.1086395 - 10.44854 - -1.702228 - - - 476 - -20.6174485 - 10.683225 - -6.096 - - - 477 - -20.6174485 - 10.683225 - -4.709047 - - - 478 - -20.1408775 - 10.46341 - -4.709047 - - - 479 - -19.4998135 - 10.167723 - -3.941609 - - - 480 - -19.4998135 - 10.167723 - -2.436962 - - - 481 - -20.4897815 - 11.330725 - -1.702228 - - - 482 - -20.6744315 - 10.815118 - -6.096 - - - 483 - -20.6744315 - 10.815118 - -4.709047 - - - 484 - -20.5014815 - 11.298057 - -4.709047 - - - 485 - -20.2688355 - 11.947688 - -3.941609 - - - 486 - -20.2688355 - 11.947688 - -2.436962 - - - 487 - -20.7393495 - 10.633842 - -6.096 - - - 488 - -20.8674635 - 10.276102 - -1.702228 - - - 489 - -21.0559485 - 9.749786 - -2.582796 - - - 490 - -21.0559485 - 9.749786 - -4.028435 - - - 491 - -20.8473815 - 10.332178 - -4.709047 - - - 492 - -20.7393495 - 10.633842 - -4.709047 - - - 493 - -20.3487745 - 0.675547 - -0.0762 - - - 494 - -20.3487745 - -10.348053 - -0.0762 - - - 495 - 0.4427135 - 0.675547 - -0.0762 - - - 496 - 0.4427135 - -1.915253 - 1.2954 - - - 497 - -20.3487745 - -1.915253 - 1.2954 - - - 498 - 0.4427135 - -10.348053 - -0.0762 - - - 499 - 0.7681505 - -10.951625 - -0.3048 - - - 500 - -20.7202485 - -10.951625 - -0.3048 - - - 501 - -20.7202485 - 1.279119 - -0.3048 - - - 502 - 0.7681505 - 1.279119 - -0.3048 - - - 503 - -13.3113865 - -10.348053 - -5.948363 - - - - - 10000000 - -1.0 - 0.0 - 0.0 - - 1 - 2 - 3 - 4 - - - - - 10000004 - -1.0 - 0.0 - 0.0 - - 18 - 19 - 20 - 21 - - - - - 10000005 - -1.0 - 0.0 - 0.0 - - 22 - 3 - 2 - 23 - - - - - 10000006 - -1.0 - 0.0 - 0.0 - - 24 - 25 - 19 - 18 - - - - - 10000007 - -1.0 - 0.0 - 0.0 - - 21 - 20 - 3 - 22 - - - - - 10000009 - 0.0 - -1.0 - 0.0 - - 28 - 29 - 30 - 31 - - - - - 10000010 - 0.0 - -1.0 - 0.0 - - 32 - 33 - 34 - 35 - - - - - 10000013 - 0.0 - -1.0 - 0.0 - - 42 - 43 - 44 - 45 - - - - - 10000014 - 0.0 - -1.0 - 0.0 - - 46 - 30 - 29 - 47 - - - - - 10000015 - 0.0 - -1.0 - 0.0 - - 48 - 44 - 43 - 49 - - - - - 10000016 - 0.0 - -1.0 - 0.0 - - 50 - 51 - 52 - 53 - - - - - 10000017 - 0.0 - -1.0 - 0.0 - - 54 - 52 - 51 - 55 - - - - - 10000018 - 0.0 - -1.0 - 0.0 - - 56 - 57 - 58 - 59 - - - - - 10000019 - 0.0 - -1.0 - 0.0 - - 60 - 58 - 57 - 61 - - - - - 10000020 - 0.0 - -1.0 - 0.0 - - 62 - 63 - 64 - 65 - - - - - 10000021 - 0.0 - -1.0 - 0.0 - - 66 - 64 - 63 - 67 - - - - - 10000022 - 0.0 - -1.0 - 0.0 - - 68 - 69 - 70 - 71 - - - - - 10000023 - 0.0 - -1.0 - 0.0 - - 72 - 70 - 69 - 73 - - - - - 10000024 - 0.0 - -1.0 - 0.0 - - 74 - 75 - 76 - 77 - - - - - 10000025 - 0.0 - -1.0 - 0.0 - - 78 - 76 - 75 - 79 - - - - - 10000027 - 0.0 - -1.0 - 0.0 - - 84 - 82 - 81 - 85 - - - - - 10000029 - 0.0 - -1.0 - 0.0 - - 90 - 88 - 87 - 91 - - - - - 10000031 - 0.0 - -1.0 - 0.0 - - 96 - 94 - 93 - 97 - - - - - 10000033 - 0.0 - -1.0 - 0.0 - - 102 - 100 - 99 - 103 - - - - - 10000034 - 0.0 - -1.0 - 0.0 - - 104 - 105 - 106 - 107 - - - - - 10000036 - 0.0 - 1.0 - 0.0 - - 110 - 111 - 112 - 113 - - - - - 10000037 - 0.0 - 1.0 - 0.0 - - 113 - 114 - 115 - 110 - - - - - 10000038 - 0.0 - 1.0 - 0.0 - - 116 - 117 - 118 - 119 - - - - - 10000039 - 0.0 - 1.0 - 0.0 - - 119 - 120 - 121 - 116 - - - - - 10000040 - 0.0 - 1.0 - 0.0 - - 122 - 123 - 124 - 125 - - - - - 10000041 - 0.0 - 1.0 - 0.0 - - 125 - 126 - 127 - 122 - - - - - 10000042 - 0.0 - 1.0 - 0.0 - - 128 - 129 - 130 - 131 - - - - - 10000043 - 0.0 - 1.0 - 0.0 - - 131 - 132 - 133 - 128 - - - - - 10000044 - 0.0 - 1.0 - 0.0 - - 134 - 135 - 136 - 137 - - - - - 10000045 - 0.0 - 1.0 - 0.0 - - 137 - 138 - 139 - 134 - - - - - 10000046 - -1.0 - 0.0 - 0.0 - - 140 - 19 - 25 - 141 - - - - - 10000056 - -1.0 - 0.0 - 0.0 - - 168 - 20 - 19 - 140 - - - - - 10000059 - -1.0 - 0.0 - 0.0 - - 4 - 3 - 20 - 168 - - - - - 10000001 - 0.0 - -1.0 - 0.0 - - 5 - 6 - 7 - 8 - 9 - - - - - 10000002 - -1.0 - 0.0 - 0.0 - - 10 - 11 - 12 - 13 - - - - - 10000003 - 0.0 - -1.0 - 0.0 - - 14 - 15 - 16 - 17 - - - - - 10000008 - 0.0 - -1.0 - 0.0 - - 26 - 7 - 6 - 27 - - - 10000009 - 10000014 - 10000024 - 10000025 - 10000032 - 10000033 - 10000034 - 10000035 - - - - 10000012 - 0.0 - -1.0 - 0.0 - - 38 - 39 - 40 - 41 - - - - - 10000049 - -1.0 - 0.0 - 0.0 - - 9 - 150 - 151 - 5 - - - - - 10000050 - 1.0 - 0.0 - 0.0 - - 41 - 152 - 153 - 38 - - - - - 10000053 - 0.0 - 1.0 - 0.0 - - 152 - 10 - 13 - 160 - 153 - - - 10000036 - 10000037 - 10000038 - 10000039 - 10000040 - 10000041 - 10000042 - 10000043 - 10000044 - 10000045 - 10000047 - 10000055 - - - - 10000057 - -1.0 - 0.0 - 0.0 - - 11 - 151 - 150 - 12 - - - 10000000 - 10000004 - 10000005 - 10000006 - 10000007 - 10000046 - 10000048 - 10000051 - 10000056 - 10000059 - - - - 10000058 - 0.0 - -1.0 - 0.0 - - 27 - 169 - 170 - 26 - - - - - 10000061 - 0.0 - -1.0 - 0.0 - - 169 - 14 - 17 - 170 - - - 10000016 - 10000017 - 10000022 - 10000023 - 10000030 - 10000031 - 10000052 - 10000054 - 10000151 - - - - 10000062 - 0.0 - -1.0 - 0.0 - - 15 - 40 - 39 - 16 - - - 10000010 - 10000011 - 10000013 - 10000015 - 10000018 - 10000019 - 10000020 - 10000021 - 10000026 - 10000027 - 10000028 - 10000029 - - - - 10000139 - -1.0 - 0.0 - 0.0 - - 160 - 493 - 494 - 8 - - - - - 10000140 - 0.0 - 1.0 - 0.0 - - 153 - 495 - 493 - 160 - - - - - 10000143 - 0.0 - -1.0 - 0.0 - - 498 - 38 - 39 - 16 - 17 - 170 - 26 - 7 - 8 - 494 - - - - - 10000144 - 1.0 - 0.0 - 0.0 - - 153 - 495 - 498 - 38 - - - - - 10000147 - -1.0 - 0.0 - 0.0 - - 497 - 494 - 493 - - - - - 10000149 - 1.0 - 0.0 - 0.0 - - 496 - 498 - 495 - - - - - 10000047 - 0.0 - 1.0 - 0.0 - - 142 - 143 - 144 - 145 - - - - - 10000060 - 0.0 - 0.0 - -1.0 - - 152 - 41 - 40 - 15 - 14 - 169 - 27 - 6 - 5 - 151 - 11 - 10 - - - - - 10000063 - 0.0 - 0.0 - 1.0 - - 171 - 172 - 173 - 174 - - - - - 10000068 - 0.0 - 0.0 - 1.0 - - 179 - 180 - 181 - 182 - - - - - 10000073 - 0.0 - 0.0 - 1.0 - - 187 - 188 - 189 - 190 - 191 - - - - - 10000085 - 0.0 - 0.0 - 1.0 - - 212 - 208 - 207 - 210 - - - - - 10000090 - 0.0 - 0.0 - 1.0 - - 220 - 216 - 215 - 218 - - - - - 10000096 - 0.0 - 0.0 - 1.0 - - 200 - 199 - 202 - 204 - - - - - 10000097 - 0.0 - 0.0 - 1.0 - - 224 - 223 - 226 - 228 - - - - - 10000102 - 0.0 - 0.0 - 1.0 - - 255 - 256 - 257 - 258 - - - - - 10000064 - 0.0 - -1.0 - 0.0 - - 175 - 176 - 172 - 171 - - - - - 10000065 - 1.0 - 0.0 - 0.0 - - 176 - 177 - 173 - 172 - - - - - 10000066 - 0.0 - 1.0 - 0.0 - - 177 - 178 - 174 - 173 - - - - - 10000067 - -1.0 - 0.0 - 0.0 - - 178 - 175 - 171 - 174 - - - - - 10000069 - 0.0 - -1.0 - 0.0 - - 183 - 184 - 180 - 179 - - - - - 10000070 - 1.0 - 0.0 - 0.0 - - 184 - 185 - 181 - 180 - - - - - 10000071 - 0.0 - 1.0 - 0.0 - - 185 - 186 - 182 - 181 - - - - - 10000072 - -1.0 - 0.0 - 0.0 - - 186 - 183 - 179 - 182 - - - - - 10000074 - 0.782474644 - -0.622682448 - 0.0 - - 192 - 193 - 188 - 187 - - - - - 10000075 - 0.622682513 - 0.782474592 - 0.0 - - 194 - 195 - 190 - 189 - - - - - 10000076 - -0.782474629 - 0.622682467 - 0.0 - - 195 - 196 - 191 - 190 - - - - - 10000077 - -0.622682383 - -0.782474696 - 0.0 - - 196 - 192 - 187 - 191 - - - - - 10000078 - 0.610868637 - 0.791731968 - 0.0 - - 197 - 198 - 199 - 200 - - - - - 10000079 - -0.791731889 - 0.610868739 - 0.0 - - 198 - 201 - 202 - 199 - - - - - 10000080 - -0.603137567 - -0.797637182 - 0.0 - - 201 - 203 - 204 - 202 - - - - - 10000081 - 0.791731851 - -0.610868788 - 0.0 - - 203 - 197 - 200 - 204 - - - - - 10000082 - -0.791731919 - 0.6108687 - 0.0 - - 205 - 206 - 207 - 208 - - - - - 10000083 - -0.603137567 - -0.797637182 - 0.0 - - 206 - 209 - 210 - 207 - - - - - 10000084 - 0.610868726 - 0.791731899 - 0.0 - - 211 - 205 - 208 - 212 - - - - - 10000086 - 0.791731851 - -0.610868788 - 0.0 - - 209 - 211 - 212 - 210 - - - - - 10000087 - -0.79173188 - 0.61086875 - 0.0 - - 213 - 214 - 215 - 216 - - - - - 10000088 - -0.603137499 - -0.797637234 - 0.0 - - 214 - 217 - 218 - 215 - - - - - 10000089 - 0.610868795 - 0.791731846 - 0.0 - - 219 - 213 - 216 - 220 - - - - - 10000091 - 0.79173189 - -0.610868737 - 0.0 - - 217 - 219 - 220 - 218 - - - - - 10000092 - 0.0 - 1.0 - 0.0 - - 221 - 222 - 223 - 224 - - - - - 10000093 - -1.0 - 0.0 - 0.0 - - 222 - 225 - 226 - 223 - - - - - 10000094 - 0.0 - -1.0 - 0.0 - - 225 - 227 - 228 - 226 - - - - - 10000095 - 1.0 - 0.0 - 0.0 - - 227 - 221 - 224 - 228 - - - - - 10000098 - 0.941450263 - -0.337151897 - 0.0 - - 229 - 230 - 231 - 232 - 233 - 234 - 235 - 236 - - - - - 10000099 - -0.418837338 - -0.908061278 - 0.0 - - 237 - 231 - 230 - 238 - 239 - 240 - 241 - 242 - - - - - 10000100 - -0.418836268 - -0.908061771 - 0.0 - - 243 - 230 - 231 - 244 - 245 - 246 - 247 - 248 - - - - - 10000101 - 0.941446625 - -0.337162058 - 0.0 - - 249 - 231 - 230 - 250 - 251 - 252 - 253 - 254 - - - - - 10000103 - -0.418841199 - -0.908059497 - 0.0 - - 259 - 260 - 261 - 262 - 263 - 264 - 265 - 266 - - - - - 10000104 - -0.41883718 - -0.908061351 - 0.0 - - 267 - 261 - 260 - 268 - 269 - 270 - 271 - 272 - - - - - 10000105 - 0.941451102 - -0.337149555 - 0.0 - - 273 - 260 - 261 - 274 - 275 - 276 - 277 - 278 - - - - - 10000106 - 0.941450263 - -0.337151897 - 0.0 - - 279 - 261 - 260 - 280 - 281 - 282 - 283 - 284 - - - - - 10000107 - 0.941450263 - -0.337151897 - 0.0 - - 285 - 286 - 287 - 288 - 289 - 290 - 291 - 292 - - - - - 10000108 - 0.941449922 - -0.337152852 - 0.0 - - 293 - 287 - 286 - 294 - 295 - 296 - 297 - 298 - - - - - 10000109 - -0.41883796 - -0.908060991 - 0.0 - - 299 - 286 - 287 - 300 - 301 - 302 - 303 - 304 - - - - - 10000110 - -0.418838495 - -0.908060744 - 0.0 - - 305 - 287 - 286 - 306 - 307 - 308 - 309 - 310 - - - - - 10000111 - -0.41883796 - -0.908060991 - 0.0 - - 311 - 312 - 313 - 314 - 315 - 316 - 317 - 318 - - - - - 10000112 - 0.941450263 - -0.337151897 - 0.0 - - 319 - 312 - 313 - 320 - 321 - 322 - 323 - 324 - - - - - 10000113 - -0.418837338 - -0.908061278 - 0.0 - - 325 - 313 - 312 - 326 - 327 - 328 - 329 - 330 - - - - - 10000114 - 0.941447805 - -0.337158761 - 0.0 - - 331 - 313 - 312 - 332 - 333 - 334 - 335 - 336 - - - - - 10000115 - 0.941451102 - -0.337149555 - 0.0 - - 337 - 338 - 339 - 340 - 341 - 342 - 343 - 344 - - - - - 10000116 - 0.941450025 - -0.337152563 - 0.0 - - 345 - 339 - 338 - 346 - 347 - 348 - 349 - 350 - - - - - 10000117 - -0.418837338 - -0.908061278 - 0.0 - - 351 - 338 - 339 - 352 - 353 - 354 - 355 - 356 - - - - - 10000118 - -0.41883796 - -0.908060991 - 0.0 - - 357 - 339 - 338 - 358 - 359 - 360 - 361 - 362 - - - - - 10000119 - -0.418828966 - -0.908065139 - 0.0 - - 363 - 364 - 365 - 366 - 367 - 368 - 369 - 370 - - - - - 10000120 - 0.941451102 - -0.337149555 - 0.0 - - 371 - 364 - 365 - 372 - 373 - 374 - 375 - 376 - - - - - 10000121 - -0.41883718 - -0.908061351 - 0.0 - - 377 - 365 - 364 - 378 - 379 - 380 - 381 - 382 - - - - - 10000122 - 0.941450025 - -0.337152563 - 0.0 - - 383 - 365 - 364 - 384 - 385 - 386 - 387 - 388 - - - - - 10000123 - -0.418836924 - -0.908061469 - 0.0 - - 389 - 390 - 391 - 392 - 393 - 394 - 395 - 396 - - - - - 10000124 - -0.41883718 - -0.908061351 - 0.0 - - 397 - 391 - 390 - 398 - 399 - 400 - 401 - 402 - - - - - 10000125 - 0.941451102 - -0.337149555 - 0.0 - - 403 - 390 - 391 - 404 - 405 - 406 - 407 - 408 - - - - - 10000126 - 0.941450025 - -0.337152563 - 0.0 - - 409 - 391 - 390 - 410 - 411 - 412 - 413 - 414 - - - - - 10000127 - -0.418837649 - -0.908061134 - 0.0 - - 415 - 416 - 417 - 418 - 419 - 420 - 421 - 422 - - - - - 10000128 - 0.941451102 - -0.337149555 - 0.0 - - 423 - 416 - 417 - 424 - 425 - 426 - 427 - 428 - - - - - 10000129 - -0.41883718 - -0.908061351 - 0.0 - - 429 - 417 - 416 - 430 - 431 - 432 - 433 - 434 - - - - - 10000130 - 0.941450025 - -0.337152563 - 0.0 - - 435 - 417 - 416 - 436 - 437 - 438 - 439 - 440 - - - - - 10000131 - 0.941451102 - -0.337149555 - 0.0 - - 441 - 442 - 443 - 444 - 445 - 446 - 447 - 448 - - - - - 10000132 - -0.418837338 - -0.908061278 - 0.0 - - 449 - 442 - 443 - 450 - 451 - 452 - 453 - 454 - - - - - 10000133 - 0.941450263 - -0.337151897 - 0.0 - - 455 - 443 - 442 - 456 - 457 - 458 - 459 - 460 - - - - - 10000134 - -0.41883796 - -0.908060991 - 0.0 - - 461 - 443 - 442 - 462 - 463 - 464 - 465 - 466 - - - - - 10000135 - -0.41883718 - -0.908061351 - 0.0 - - 467 - 468 - 469 - 470 - 471 - 472 - 473 - 474 - - - - - 10000136 - -0.418841199 - -0.908059497 - 0.0 - - 475 - 469 - 468 - 476 - 477 - 478 - 479 - 480 - - - - - 10000137 - 0.941451102 - -0.337149555 - 0.0 - - 481 - 469 - 468 - 482 - 483 - 484 - 485 - 486 - - - - - 10000138 - 0.941450263 - -0.337151897 - 0.0 - - 487 - 468 - 469 - 488 - 489 - 490 - 491 - 492 - - - - - 10000141 - 0.0 - 0.46788772 - 0.883787916 - - 495 - 496 - 497 - 493 - - - - - 10000142 - 0.0 - -0.160540892 - 0.98702919 - - 496 - 498 - 494 - 497 - - - - - 10000145 - 0.0 - 0.354192161 - -0.935172665 - - 498 - 499 - 500 - 494 - - - - - 10000146 - 0.0 - -0.354192161 - -0.935172665 - - 493 - 501 - 502 - 495 - - - - - 10000148 - 0.524098449 - 0.0 - -0.851657687 - - 493 - 494 - 500 - 501 - - - - - 10000150 - -0.574801657 - 0.0 - -0.818292769 - - 498 - 495 - 502 - 499 - - - - - 10000011 - 0.0 - -1.0 - 0.0 - - 36 - 34 - 33 - 37 - - - - - 10000026 - 0.0 - -1.0 - 0.0 - - 80 - 81 - 82 - 83 - - - - - 10000028 - 0.0 - -1.0 - 0.0 - - 86 - 87 - 88 - 89 - - - - - 10000030 - 0.0 - -1.0 - 0.0 - - 92 - 93 - 94 - 95 - - - - - 10000032 - 0.0 - -1.0 - 0.0 - - 98 - 99 - 100 - 101 - - - - - 10000035 - 0.0 - -1.0 - 0.0 - - 108 - 106 - 105 - 109 - - - - - 10000052 - 0.0 - -1.0 - 0.0 - - 156 - 157 - 158 - 159 - - - - - 10000054 - 0.0 - -1.0 - 0.0 - - 161 - 159 - 158 - 162 - 163 - - - - - 10000151 - 0.0 - -1.0 - 0.0 - - 158 - 157 - 503 - 162 - - - - - 10000055 - 0.0 - 1.0 - 0.0 - - 164 - 165 - 166 - 167 - - - - - 10000048 - -1.0 - 0.0 - 0.0 - - 146 - 147 - 148 - 149 - - - - - 10000051 - -1.0 - 0.0 - 0.0 - - 154 - 148 - 147 - 155 - - - - - - - - - 1 - Fixed Windows - true - 2 - 4 - 4 - 1 - -1 - -1 - -1 - 6 - - 10000000 - 10000004 - 10000005 - 10000006 - 10000007 - 10000009 - 10000010 - 10000013 - 10000014 - 10000015 - 10000016 - 10000017 - 10000018 - 10000019 - 10000020 - 10000021 - 10000022 - 10000023 - 10000024 - 10000025 - 10000027 - 10000029 - 10000031 - 10000033 - 10000034 - 10000036 - 10000037 - 10000038 - 10000039 - 10000040 - 10000041 - 10000042 - 10000043 - 10000044 - 10000045 - 10000046 - 10000056 - 10000059 - - 0.0508 - 0.0762 - -1 - -1 - 1.0 - - - 2 - Above Grade Walls - true - 1 - 1 - 2 - 1 - -1 - -1 - 11 - -1 - - 10000001 - 10000002 - 10000003 - 10000008 - 10000139 - 10000012 - 10000140 - 10000143 - 10000144 - 10000049 - 10000050 - 10000147 - 10000053 - 10000149 - 10000057 - 10000058 - 10000061 - 10000062 - - - - 4 - Garage Door - true - 1 - 1 - 2 - 1 - -1 - -1 - 10 - -1 - - 10000047 - - - - 7 - Slab On Grade - true - 1 - 5 - 12 - 1 - -2 - -1 - 3 - -1 - - 10000060 - - - - 8 - __unnamed_component__ - true - 1 - 11 - 10 - -1 - -1 - -1 - -1 - -1 - - 10000096 - 10000097 - 10000068 - 10000102 - 10000073 - 10000085 - 10000090 - 10000063 - - - - 9 - __unnamed_component__ - true - 1 - 1 - 2 - -1 - -1 - -1 - -1 - -1 - - 10000128 - 10000129 - 10000130 - 10000131 - 10000132 - 10000133 - 10000134 - 10000135 - 10000136 - 10000137 - 10000138 - 10000064 - 10000065 - 10000066 - 10000067 - 10000069 - 10000070 - 10000071 - 10000072 - 10000074 - 10000075 - 10000076 - 10000077 - 10000078 - 10000079 - 10000080 - 10000081 - 10000082 - 10000083 - 10000084 - 10000086 - 10000087 - 10000088 - 10000089 - 10000091 - 10000092 - 10000093 - 10000094 - 10000095 - 10000098 - 10000099 - 10000100 - 10000101 - 10000103 - 10000104 - 10000105 - 10000106 - 10000107 - 10000108 - 10000109 - 10000110 - 10000111 - 10000112 - 10000113 - 10000114 - 10000115 - 10000116 - 10000117 - 10000118 - 10000119 - 10000120 - 10000121 - 10000122 - 10000123 - 10000124 - 10000125 - 10000126 - 10000127 - - - - 10 - Roof - true - 1 - 9 - 7 - 1 - -1 - -1 - 8 - -1 - - 10000141 - - - - 11 - Roof - true - 1 - 6 - 10 - 1 - -1 - -1 - 8 - -1 - - 10000142 - - - - 12 - __unnamed_component__ - true - 1 - 1 - 2 - -1 - -1 - -1 - -1 - -1 - - 10000145 - 10000146 - - - - 13 - __unnamed_component__ - true - 1 - 1 - 2 - -1 - -1 - -1 - -1 - -1 - - 10000148 - - - - 14 - __unnamed_component__ - true - 1 - 1 - 2 - -1 - -1 - -1 - -1 - -1 - - 10000150 - - - - 78 - Operable Windows - true - 2 - 4 - 4 - 1 - -1 - -1 - -1 - 5 - - 10000032 - 10000035 - 10000011 - 10000026 - 10000028 - 10000030 - - 0.0508 - 0.0762 - -1 - -1 - 1.0 - - - 91 - Glass Doors - true - 2 - 4 - 4 - 1 - -1 - -1 - -1 - 3 - - 10000052 - 10000054 - 10000151 - - 0.1016 - 0.127 - -1 - -1 - 1.0 - - - 98 - Solid Door - true - 2 - 1 - 2 - 1 - -1 - -1 - -1 - 7 - - 10000055 - - 0.1016 - 0.0762 - -1 - -1 - 1.0 - - - 101 - Hollow Metal Doors - true - 2 - 4 - 4 - 1 - -1 - -1 - -1 - 7 - - 10000048 - 10000051 - - 0.1016 - 0.0762 - -1 - -1 - 1.0 - - - - - PUSH Training Center - 1 - 0 - 1.0 - 1 - - - a - 99 - 1 - 5 - 1 - 0.0 - 0.0 - 67.96 - 67.96 - - - b - 99 - 2 - 5 - 1 - 0.0 - 0.0 - 849.51 - 849.51 - - - - - a - 3 - 3 - 0.0 - 0.0 - - - b - 4 - 3 - 0.0 - 0.0 - - - - - a - 3 - 1 - 1 - true - false - false - 1 - 0 - 1 - 1 - 1 - 1 - 1 - 0.0 - 0 - - - b - 4 - 1 - 1 - true - false - false - 1 - 0 - 1 - 1 - 1 - 1 - 1 - 0.0 - 0 - - - 7 - 1781.2996 - 6 - 1353.79 - 6 - 268.7685 - 1 - 2.5 - 2 - 132 - 1 - 6 - 4 - - - - 0 - 0 - - - - - 1 - 42.933 - -78.733 - 189.8904 - -5 - -2 - 0.2 - 0.1 - 0.9 - 0.66 - 350 - 48 - - 6 - 10.0 - 4.0 - 42.933 - -78.733 - 215.0 - -5 - 189.8904 - 1 - 2.0 - 1000.0 - 2000.0 - 3.0 - 0.05 - - -3.4 - -4.2 - 2.7 - 7.5 - 13.7 - 18.6 - 22.0 - 20.7 - 16.5 - 9.7 - 6.0 - -2.2 - - - -8.7 - -8.1 - -2.8 - 1.9 - 5.8 - 11.5 - 16.1 - 13.7 - 11.2 - 5.0 - 0.8 - -5.3 - - - -19.2 - -19.6 - -12.3 - -6.1 - -0.4 - 5.5 - 10.7 - 8.4 - 5.6 - -2.4 - -6.8 - -16.0 - - - 25.0 - 34.0 - 45.0 - 51.0 - 50.0 - 59.0 - 56.0 - 47.0 - 34.0 - 26.0 - 19.0 - 22.0 - - - 40.0 - 52.0 - 79.0 - 93.0 - 97.0 - 104.0 - 103.0 - 93.0 - 75.0 - 54.0 - 33.0 - 31.0 - - - 75.0 - 82.0 - 116.0 - 100.0 - 87.0 - 83.0 - 87.0 - 93.0 - 98.0 - 90.0 - 62.0 - 63.0 - - - 35.0 - 49.0 - 81.0 - 90.0 - 97.0 - 113.0 - 104.0 - 94.0 - 72.0 - 50.0 - 31.0 - 32.0 - - - 47.0 - 65.0 - 107.0 - 136.0 - 174.0 - 195.0 - 188.0 - 161.0 - 119.0 - 80.0 - 46.0 - 41.0 - - -11.0 - 53.0 - 93.0 - 158.0 - 80.0 - 107.0 - -2.9 - 30.0 - 39.0 - 61.0 - 37.0 - 50.0 - 25.0 - 69.0 - 129.0 - 116.0 - 90.0 - 228.0 - - - - - - - 1 - - 1.1 - 1.1 - 1.1 - 1.1 - 0.2 - 2.8 - 1.7 - 0.8 - 1.1 - 1.5 - 0.7 - 1.1 - 1.5 - 0.8 - 1.1 - 1.5 - - - 309.9966 - 250.0171 - 270.0102 - 439.9864 - 53.4289 - 680.0068 - 250.0171 - 239.9864 - 319.9932 - 409.9966 - -70.0102 - 129.9898 - 319.9932 - 100 - 250.0171 - 409.9966 - - - - - 3 - 2 - 78.8648 - 78.8648 - 78.8648 - 78.8648 - - - 3 - 2 - 1 - 1 - 1 - 2 - 1 - 1 - 2.193 - 4 - 2 - - - Slab - 6 - 3 - 6 - 231.2728 - 6 - 0.2839 - 6 - 63.8861 - 1 - 1.2192 - 0.0288 - 0.0762 - - - - 15 - true - 1 - 1 - false - - - 20.0 - 20.0 - 25.0 - false - - - true - - - - - Basic - 1 - 1 - - - 1 - 1.0 - 1.0 - 1.0 - 1.0 - 1.0 - - - - - Basic - 5 - 1 - 1 - false - false - false - true - false - false - false - -1 - 0.75 - 0.0 - - 2 - 0.0 - 0.5886 - true - true - -2.2222 - true - false - - - - GSHP Water Furnace NBV12 - 1 - 5 - 5 - true - false - true - false - false - false - - - - true - 4.0 - 0.25 - 3 - - - 0.0 - 0.0 - 1 - - - 1.0 - 0.0 - 1 - - - 1.0 - 0.0 - 1 - - - - Lochnivar - 1 - 5 - 5 - false - true - false - false - false - false - - - - true - 4.0 - 0.25 - 3.57 - 5 - - - 1.0 - 0.0 - 1 - - - 0.0 - 0.0 - 1 - - - 0.0 - 0.0 - 1 - - - - PV - Per worst case - 1 - 10 - 10 - false - false - false - false - false - false - - 1 - 1 - 1 - 0.0 - 32720.0 - 1.0 - 0.0 - 0.0 - false - - - - - - 2 - true - 1 - 2 - true - 1 - 6 - 2.0 - 20.0 - 50.0 - 24.0 - 0.0 - - 0 - - - - - true - false - 13.793 - 9.6111 - 4.0 - 1324.2581 - true - true - true - 2.0 - - - - - - - - 1 - 254000.0 - 0.0 - 0.0 - 3.048 - 50800.0 - 0.0481 - 1 - 1 - 1 - true - - 5 - - - - - 2 - 254000.0 - 0.0 - 0.0 - 3.048 - 50800.0 - 0.0481 - 1 - 2 - 1 - true - - 5 - - - - false - true - - - - - - - - - - 1 - R-40 SIP - 2 - 2 - - - 0.0125 - - Oriented Strand Board - 0.092 - 650.0 - 0.95 - 1880.0 - 812.8 - 83.3 - - 255 - 255 - 255 - 255 - - - - - - - - 0.2794 - - EPS (heat cond.: 0.04 W/mK - density: 15 kg/m³) - 0.04 - 15.0 - 0.95 - 1500.0 - 30.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.0125 - - Oriented Strand Board - 0.092 - 650.0 - 0.95 - 1880.0 - 812.8 - 83.3 - - 255 - 255 - 255 - 255 - - - - - - - - - - - 3 - R-20 Slab - 2 - 2 - - - 0.1016 - - XPS Core (heat cond.: 0,03 W/mK) - 0.03 - 40.0 - 0.95 - 1500.0 - 100.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.1524 - - Concrete - 1.373 - 2104.0 - 0.22 - 776.0 - 76.0 - 101.0 - - 255 - 255 - 255 - 255 - - - - - - - - - - - 4 - R-60 SIP - 2 - 2 - - - 0.0125 - - Oriented Strand Board - 0.092 - 650.0 - 0.95 - 1880.0 - 812.8 - 83.3 - - 255 - 255 - 255 - 255 - - - - - - - - 0.4064 - - EPS (heat cond.: 0.04 W/mK - density: 15 kg/m³) - 0.04 - 15.0 - 0.95 - 1500.0 - 30.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.0125 - - Oriented Strand Board - 0.092 - 650.0 - 0.95 - 1880.0 - 812.8 - 83.3 - - 255 - 255 - 255 - 255 - - - - - - - - - - - 2 - Doors - 2 - 2 - - - 0.0254 - - Polyisocyanurate Board - 0.0577 - 32.5 - 0.99 - 1470.0 - 72.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - - - - 5 - R15 Slab - 2 - 2 - - - 0.0762 - - XPS Core (heat cond.: 0,03 W/mK) - 0.03 - 40.0 - 0.95 - 1500.0 - 100.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.1524 - - Concrete - 1.373 - 2104.0 - 0.22 - 776.0 - 76.0 - 101.0 - - 255 - 255 - 255 - 255 - - - - - - - - - - - 6 - 2X10 R-32 cellulose w/ R-9.6 ZIP-R - 2 - 2 - - - 0.0125 - - Oriented Strand Board - 0.092 - 650.0 - 0.95 - 1880.0 - 812.8 - 83.3 - - 255 - 255 - 255 - 255 - - - - - - - - 0.0381 - - Polyisocyanurate Board - 0.024 - 32.5 - 0.99 - 1470.0 - 72.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.2413 - - Cellulose Fibre Insulation - 0.036 - 30.0 - 0.99 - 1880.0 - 1.86 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.0125 - - Gypsum Board (USA) - 0.163 - 850.0 - 0.65 - 870.0 - 6.0 - 35.0 - - 255 - 255 - 255 - 255 - - - - - - - - - - - 8 - Attic R-60 Blown - 2 - 2 - - - 0.0125 - - Gypsum Board (USA) - 0.163 - 850.0 - 0.65 - 870.0 - 6.0 - 35.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.4064 - - Cellulose Fibre Insulation - 0.0401 - 30.0 - 0.99 - 1880.0 - 1.86 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - - - - 7 - 2X10 R-32 cellulose - 2 - 2 - - - 0.0125 - - Oriented Strand Board - 0.092 - 650.0 - 0.95 - 1880.0 - 812.8 - 83.3 - - 255 - 255 - 255 - 255 - - - - - - - - 0.2413 - - Cellulose Fibre Insulation - 0.036 - 30.0 - 0.99 - 1880.0 - 1.86 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.0125 - - Gypsum Board (USA) - 0.163 - 850.0 - 0.65 - 870.0 - 6.0 - 35.0 - - 255 - 255 - 255 - 255 - - - - - - - - - - - 9 - 2X10 R-30 cellulose w/ ZIP sheathing - 2 - 2 - - - 0.0125 - - Oriented Strand Board - 0.092 - 650.0 - 0.95 - 1880.0 - 812.8 - 83.3 - - 255 - 255 - 255 - 255 - - - - - - - - 0.235 - - Cellulose Fibre Insulation - 0.038 - 30.0 - 0.99 - 1880.0 - 1.86 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.0125 - - Oriented Strand Board - 0.092 - 650.0 - 0.95 - 1880.0 - 812.8 - 83.3 - - 255 - 255 - 255 - 255 - - - - - - - - - - - 10 - Garage Doors - 2 - 2 - - - 0.1346 - - Polyisocyanurate Board - 0.0288 - 32.5 - 0.99 - 1470.0 - 72.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - - - - 11 - 2X10 R-30 cellulose w/ ZIP R-12 sheathing - 2 - 2 - - - 0.0125 - - Oriented Strand Board - 0.092 - 650.0 - 0.95 - 1880.0 - 812.8 - 83.3 - - 255 - 255 - 255 - 255 - - - - - - - - 0.0508 - - Polyisocyanurate Board - 0.0241 - 32.5 - 0.99 - 1470.0 - 72.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.235 - - Cellulose Fibre Insulation - 0.038 - 30.0 - 0.99 - 1880.0 - 1.86 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.0125 - - Oriented Strand Board - 0.092 - 650.0 - 0.95 - 1880.0 - 812.8 - 83.3 - - 255 - 255 - 255 - 255 - - - - - - - - - - - - - 1 - Alpen Zenith Balanced 6 Casement - false - false - 0.75 - 0.9769 - 0.636 - 0.8 - 0.337 - 0.337 - 1.3291 - 0.0726 - 0.0346 - 1.0789 - 0.0554 - 0.0726 - 0.0346 - 1.0789 - 0.0554 - 0.0726 - 0.0346 - 1.0789 - 0.0554 - 0.0726 - 0.0346 - 1.0789 - 0.0554 - - - 2 - Kohltech Supreme HiGain - false - false - 0.75 - 1.0134 - 0.7893 - 0.8 - 0.612 - 0.612 - 1.3103 - 0.0498 - 0.0346 - 1.1357 - 0.026 - 0.0498 - 0.0346 - 1.1357 - 0.026 - 0.0498 - 0.0346 - 1.1357 - 0.026 - 0.0498 - 0.0346 - 1.1357 - 0.026 - - - 3 - TU2400 - true - false - 0.75 - 2.8654 - 1.6467 - 0.8 - 0.38 - 0.38 - 4.7316 - 0.127 - 0.0502 - 4.4858 - 0.0398 - 0.127 - 0.0502 - 4.4858 - 0.0398 - 0.127 - 0.0502 - 4.4858 - 0.0398 - 0.127 - 0.0502 - 4.4858 - 0.0398 - - - 4 - Wausau - false - false - 0.75 - 1.2908 - 0.9085 - 0.8 - 0.28 - 0.28 - 1.477 - 0.0635 - 0.0519 - 1.1357 - 0.0692 - 0.0635 - 0.0519 - 1.1357 - 0.0692 - 0.0635 - 0.0519 - 1.1357 - 0.0692 - 0.0635 - 0.0519 - 1.1357 - 0.0692 - - - 5 - TubeLite Casement (calc) - true - false - 0.75 - 2.4909 - 1.6467 - 0.8 - 0.38 - 0.38 - 5.5387 - 0.0508 - 0.0502 - 5.2808 - 0.0398 - 0.0508 - 0.0502 - 5.2808 - 0.0398 - 0.0762 - 0.0502 - 5.2808 - 0.0398 - 0.0762 - 0.0502 - 5.2808 - 0.0398 - - - 6 - TubeLite Fixed (calc) - true - false - 0.75 - 2.1428 - 1.6467 - 0.8 - 0.38 - 0.38 - 3.381 - 0.0508 - 0.0502 - 3.123 - 0.0398 - 0.0508 - 0.0502 - 3.123 - 0.0398 - 0.0762 - 0.0502 - 3.123 - 0.0398 - 0.0762 - 0.0502 - 3.123 - 0.0398 - - - 7 - Exterior Door - true - false - 0.75 - 2.8391 - 1.1357 - 0.8 - 0.1 - 0.1 - - 0.0762 - 0.0502 - 0.7382 - 0.0398 - 0.0762 - 0.0502 - 0.7382 - 0.0398 - 0.0762 - 0.0502 - 0.7382 - 0.0398 - 0.0762 - 0.0502 - 0.7382 - 0.0398 - - - - diff --git a/tests/_regenerated_xml/School_7_16_17_34_4.xml b/tests/_regenerated_xml/School_7_16_17_34_4.xml deleted file mode 100644 index 1b2a030..0000000 --- a/tests/_regenerated_xml/School_7_16_17_34_4.xml +++ /dev/null @@ -1,7215 +0,0 @@ - - - 49 - 1 - 3.5.0.1 - 4 - 1 - - 0 - false - - 2020 - 9 - 9 - 0 - 0 - - true - - - - - - - - - - - - - - - - - - - - - - - - - Office - 1 - 5.0 - 52.0 - 12.0 - 1.0 - 0.0 - 0.77 - 0.0 - 0.54 - 12.0 - 0.4 - - - Workshop - 2 - 5.0 - 52.0 - 12.0 - 1.0 - 6.0 - 0.77 - 0.0 - 0.54 - 6.0 - 0.4 - - - - - 1 - Office - 0.5 - 7.0 - 18.0 - 250.0 - 300 - 0.3 - 1 - - - 2 - Workshop - 0.5 - 7.0 - 18.0 - 200.0 - 300 - 0.0 - 1 - - - - - 1 - Preliminary - Assuming windows are outies. -Need to understand additional workshop ventilation if there is any. -Day lighting added back in. -Instant DHW - - - - - 1 - -20.3598865 - -2.982053 - -0.7747 - - - 2 - -20.3598865 - -2.982053 - -2.032 - - - 3 - -20.3598865 - -3.934553 - -2.032 - - - 4 - -20.3598865 - -3.934553 - -0.7747 - - - 5 - -20.3598865 - -10.348053 - -6.096 - - - 6 - -18.8739865 - -10.348053 - -6.096 - - - 7 - -18.8739865 - -10.348053 - -0.6096 - - - 8 - -20.3487745 - -10.348053 - -0.6096 - - - 9 - -20.3598865 - -10.348053 - -0.6096 - - - 10 - -20.3598865 - 0.675547 - -6.096 - - - 11 - -20.3598865 - -2.956653 - -6.096 - - - 12 - -20.3598865 - -2.956653 - -0.6096 - - - 13 - -20.3598865 - 0.675547 - -0.6096 - - - 14 - -9.6283865 - -10.348053 - -6.096 - - - 15 - -7.7995865 - -10.348053 - -6.096 - - - 16 - -7.7995865 - -10.348053 - -0.6096 - - - 17 - -9.6283865 - -10.348053 - -0.6096 - - - 18 - -20.3598865 - -5.839553 - -2.9464 - - - 19 - -20.3598865 - -5.839553 - -2.032 - - - 20 - -20.3598865 - -4.887053 - -2.032 - - - 21 - -20.3598865 - -4.887053 - -2.9464 - - - 22 - -20.3598865 - -3.934553 - -2.9464 - - - 23 - -20.3598865 - -2.982053 - -2.9464 - - - 24 - -20.3598865 - -6.792053 - -2.9464 - - - 25 - -20.3598865 - -6.792053 - -2.032 - - - 26 - -15.1655865 - -10.348053 - -0.6096 - - - 27 - -15.1655865 - -10.348053 - -6.096 - - - 28 - -17.3245865 - -10.348053 - -1.0668 - - - 29 - -18.3913865 - -10.348053 - -1.0668 - - - 30 - -18.3913865 - -10.348053 - -2.1336 - - - 31 - -17.3245865 - -10.348053 - -2.1336 - - - 32 - -7.7741865 - -10.348053 - -4.8768 - - - 33 - -6.7073865 - -10.348053 - -4.8768 - - - 34 - -6.7073865 - -10.348053 - -3.5052 - - - 35 - -7.7741865 - -10.348053 - -3.5052 - - - 36 - -6.2501865 - -10.348053 - -3.5052 - - - 37 - -6.2501865 - -10.348053 - -4.8768 - - - 38 - 0.4427135 - -10.348053 - -0.6096 - - - 39 - -1.9575865 - -10.348053 - -0.6096 - - - 40 - -1.9575865 - -10.348053 - -6.096 - - - 41 - 0.4427135 - -10.348053 - -6.096 - - - 42 - -3.5069865 - -10.348053 - -2.1336 - - - 43 - -2.4401865 - -10.348053 - -2.1336 - - - 44 - -2.4401865 - -10.348053 - -1.0668 - - - 45 - -3.5069865 - -10.348053 - -1.0668 - - - 46 - -18.8485865 - -10.348053 - -2.1336 - - - 47 - -18.8485865 - -10.348053 - -1.0668 - - - 48 - -1.9829865 - -10.348053 - -1.0668 - - - 49 - -1.9829865 - -10.348053 - -2.1336 - - - 50 - -9.6537865 - -10.348053 - -1.0668 - - - 51 - -10.1109865 - -10.348053 - -1.0668 - - - 52 - -10.1109865 - -10.348053 - -2.1336 - - - 53 - -9.6537865 - -10.348053 - -2.1336 - - - 54 - -11.1777865 - -10.348053 - -2.1336 - - - 55 - -11.1777865 - -10.348053 - -1.0668 - - - 56 - -6.2501865 - -10.348053 - -1.0668 - - - 57 - -6.7073865 - -10.348053 - -1.0668 - - - 58 - -6.7073865 - -10.348053 - -2.1336 - - - 59 - -6.2501865 - -10.348053 - -2.1336 - - - 60 - -7.7741865 - -10.348053 - -2.1336 - - - 61 - -7.7741865 - -10.348053 - -1.0668 - - - 62 - -4.1165865 - -10.348053 - -1.0668 - - - 63 - -4.5737865 - -10.348053 - -1.0668 - - - 64 - -4.5737865 - -10.348053 - -2.1336 - - - 65 - -4.1165865 - -10.348053 - -2.1336 - - - 66 - -5.6405865 - -10.348053 - -2.1336 - - - 67 - -5.6405865 - -10.348053 - -1.0668 - - - 68 - -13.3113865 - -10.348053 - -2.1336 - - - 69 - -12.8541865 - -10.348053 - -2.1336 - - - 70 - -12.8541865 - -10.348053 - -1.0668 - - - 71 - -13.3113865 - -10.348053 - -1.0668 - - - 72 - -11.7873865 - -10.348053 - -1.0668 - - - 73 - -11.7873865 - -10.348053 - -2.1336 - - - 74 - -16.7149865 - -10.348053 - -2.1336 - - - 75 - -16.2577865 - -10.348053 - -2.1336 - - - 76 - -16.2577865 - -10.348053 - -1.0668 - - - 77 - -16.7149865 - -10.348053 - -1.0668 - - - 78 - -15.1909865 - -10.348053 - -1.0668 - - - 79 - -15.1909865 - -10.348053 - -2.1336 - - - 80 - -1.9829865 - -10.348053 - -3.5052 - - - 81 - -2.4401865 - -10.348053 - -3.5052 - - - 82 - -2.4401865 - -10.348053 - -4.8768 - - - 83 - -1.9829865 - -10.348053 - -4.8768 - - - 84 - -3.5069865 - -10.348053 - -4.8768 - - - 85 - -3.5069865 - -10.348053 - -3.5052 - - - 86 - -4.1165865 - -10.348053 - -3.5052 - - - 87 - -4.5737865 - -10.348053 - -3.5052 - - - 88 - -4.5737865 - -10.348053 - -4.8768 - - - 89 - -4.1165865 - -10.348053 - -4.8768 - - - 90 - -5.6405865 - -10.348053 - -4.8768 - - - 91 - -5.6405865 - -10.348053 - -3.5052 - - - 92 - -9.6537865 - -10.348053 - -3.5052 - - - 93 - -10.1109865 - -10.348053 - -3.5052 - - - 94 - -10.1109865 - -10.348053 - -4.8768 - - - 95 - -9.6537865 - -10.348053 - -4.8768 - - - 96 - -11.1777865 - -10.348053 - -4.8768 - - - 97 - -11.1777865 - -10.348053 - -3.5052 - - - 98 - -16.7149865 - -10.348053 - -4.8768 - - - 99 - -16.2577865 - -10.348053 - -4.8768 - - - 100 - -16.2577865 - -10.348053 - -3.5052 - - - 101 - -16.7149865 - -10.348053 - -3.5052 - - - 102 - -15.1909865 - -10.348053 - -3.5052 - - - 103 - -15.1909865 - -10.348053 - -4.8768 - - - 104 - -17.3245865 - -10.348053 - -3.5052 - - - 105 - -18.3913865 - -10.348053 - -3.5052 - - - 106 - -18.3913865 - -10.348053 - -4.8768 - - - 107 - -17.3245865 - -10.348053 - -4.8768 - - - 108 - -18.8485865 - -10.348053 - -4.8768 - - - 109 - -18.8485865 - -10.348053 - -3.5052 - - - 110 - -18.3913865 - 0.675547 - -1.0668 - - - 111 - -17.3245865 - 0.675547 - -1.0668 - - - 112 - -17.3245865 - 0.675547 - -2.1336 - - - 113 - -18.3913865 - 0.675547 - -2.1336 - - - 114 - -18.8485865 - 0.675547 - -2.1336 - - - 115 - -18.8485865 - 0.675547 - -1.0668 - - - 116 - -2.4401865 - 0.675547 - -2.1336 - - - 117 - -3.5069865 - 0.675547 - -2.1336 - - - 118 - -3.5069865 - 0.675547 - -1.0668 - - - 119 - -2.4401865 - 0.675547 - -1.0668 - - - 120 - -1.9829865 - 0.675547 - -1.0668 - - - 121 - -1.9829865 - 0.675547 - -2.1336 - - - 122 - -4.5737865 - 0.675547 - -2.1336 - - - 123 - -5.6405865 - 0.675547 - -2.1336 - - - 124 - -5.6405865 - 0.675547 - -1.0668 - - - 125 - -4.5737865 - 0.675547 - -1.0668 - - - 126 - -4.1165865 - 0.675547 - -1.0668 - - - 127 - -4.1165865 - 0.675547 - -2.1336 - - - 128 - -6.7073865 - 0.675547 - -2.1336 - - - 129 - -7.7741865 - 0.675547 - -2.1336 - - - 130 - -7.7741865 - 0.675547 - -1.0668 - - - 131 - -6.7073865 - 0.675547 - -1.0668 - - - 132 - -6.2501865 - 0.675547 - -1.0668 - - - 133 - -6.2501865 - 0.675547 - -2.1336 - - - 134 - -16.2577865 - 0.675547 - -1.0668 - - - 135 - -15.1909865 - 0.675547 - -1.0668 - - - 136 - -15.1909865 - 0.675547 - -2.1336 - - - 137 - -16.2577865 - 0.675547 - -2.1336 - - - 138 - -16.7149865 - 0.675547 - -2.1336 - - - 139 - -16.7149865 - 0.675547 - -1.0668 - - - 140 - -20.3598865 - -5.839553 - -0.7747 - - - 141 - -20.3598865 - -6.792053 - -0.7747 - - - 142 - -1.6273865 - 0.675547 - -2.8956 - - - 143 - -1.6273865 - 0.675547 - -5.9436 - - - 144 - -4.0657865 - 0.675547 - -5.9436 - - - 145 - -4.0657865 - 0.675547 - -2.8956 - - - 146 - -20.3598865 - -4.810853 - -3.81 - - - 147 - -20.3598865 - -3.896453 - -3.81 - - - 148 - -20.3598865 - -3.896453 - -5.9436 - - - 149 - -20.3598865 - -4.810853 - -5.9436 - - - 150 - -20.3598865 - -6.817453 - -0.6096 - - - 151 - -20.3598865 - -6.817453 - -6.096 - - - 152 - 0.4427135 - 0.675547 - -6.096 - - - 153 - 0.4427135 - 0.675547 - -0.6096 - - - 154 - -20.3598865 - -2.982053 - -5.9436 - - - 155 - -20.3598865 - -2.982053 - -3.81 - - - 156 - -13.3113865 - -10.348053 - -3.5052 - - - 157 - -13.3113865 - -10.348053 - -5.033963 - - - 158 - -12.7017865 - -10.348053 - -5.033963 - - - 159 - -12.7017865 - -10.348053 - -3.5052 - - - 160 - -20.3487745 - 0.675547 - -0.6096 - - - 161 - -11.7873865 - -10.348053 - -3.5052 - - - 162 - -12.7017865 - -10.348053 - -5.948362 - - - 163 - -11.7873865 - -10.348053 - -5.948363 - - - 164 - -4.6753865 - 0.675547 - -3.81 - - - 165 - -4.6753865 - 0.675547 - -5.9436 - - - 166 - -5.5897865 - 0.675547 - -5.9436 - - - 167 - -5.5897865 - 0.675547 - -3.81 - - - 168 - -20.3598865 - -4.887053 - -0.7747 - - - 169 - -13.3367865 - -10.348053 - -6.096 - - - 170 - -13.3367865 - -10.348053 - -0.6096 - - - 171 - -37.2122075 - -12.206718 - 3.048 - - - 172 - -30.3970695 - -12.206718 - 3.048 - - - 173 - -30.3970695 - 6.682945 - 3.048 - - - 174 - -37.2122075 - 6.682945 - 3.048 - - - 175 - -37.2122075 - -12.206718 - -6.096 - - - 176 - -30.3970695 - -12.206718 - -6.096 - - - 177 - -30.3970695 - 6.682945 - -6.096 - - - 178 - -37.2122075 - 6.682945 - -6.096 - - - 179 - 5.7606575 - -13.745106 - 6.096 - - - 180 - 37.2122075 - -13.745106 - 6.096 - - - 181 - 37.2122075 - 0.596369 - 6.096 - - - 182 - 5.7606575 - 0.596369 - 6.096 - - - 183 - 5.7606575 - -13.745106 - -6.096 - - - 184 - 37.2122075 - -13.745106 - -6.096 - - - 185 - 37.2122075 - 0.596369 - -6.096 - - - 186 - 5.7606575 - 0.596369 - -6.096 - - - 187 - -3.9568755 - 12.269946 - -3.048 - - - 188 - 0.0762385 - 17.338034 - -3.048 - - - 189 - -0.0082295 - 17.405252 - -3.048 - - - 190 - -8.2500835 - 23.964006 - -3.048 - - - 191 - -12.2831985 - 18.895917 - -3.048 - - - 192 - -3.9568755 - 12.269946 - -6.096 - - - 193 - 0.0762385 - 17.338034 - -6.096 - - - 194 - -0.0082295 - 17.405252 - -6.096 - - - 195 - -8.2500835 - 23.964006 - -6.096 - - - 196 - -12.2831985 - 18.895917 - -6.096 - - - 197 - -7.9670845 - 26.794729 - -6.096 - - - 198 - -13.5222475 - 31.08087 - -6.096 - - - 199 - -13.5222475 - 31.08087 - 0.0 - - - 200 - -7.9670845 - 26.794729 - 0.0 - - - 201 - -21.1202705 - 21.23326 - -6.096 - - - 202 - -21.1202705 - 21.23326 - 0.0 - - - 203 - -15.5234095 - 17.001164 - -6.096 - - - 204 - -15.5234095 - 17.001164 - 0.0 - - - 205 - -20.9312185 - 36.198899 - -6.096 - - - 206 - -28.5292415 - 26.351288 - -6.096 - - - 207 - -28.5292415 - 26.351288 - 0.0 - - - 208 - -20.9312185 - 36.198899 - 0.0 - - - 209 - -22.9323805 - 22.119192 - -6.096 - - - 210 - -22.9323805 - 22.119192 - 0.0 - - - 211 - -15.3760555 - 31.912757 - -6.096 - - - 212 - -15.3760555 - 31.912757 - 0.0 - - - 213 - -27.9838495 - 40.154839 - -6.096 - - - 214 - -35.5818735 - 30.307228 - -6.096 - - - 215 - -35.5818735 - 30.307228 - 0.0 - - - 216 - -27.9838495 - 40.154839 - 0.0 - - - 217 - -29.9850115 - 26.075132 - -6.096 - - - 218 - -29.9850115 - 26.075132 - 0.0 - - - 219 - -22.4286875 - 35.868697 - -6.096 - - - 220 - -22.4286875 - 35.868697 - 0.0 - - - 221 - 6.2482745 - -30.504427 - -6.096 - - - 222 - -15.3945445 - -30.504427 - -6.096 - - - 223 - -15.3945445 - -30.504427 - 1.524 - - - 224 - 6.2482745 - -30.504427 - 1.524 - - - 225 - -15.3945445 - -40.154839 - -6.096 - - - 226 - -15.3945445 - -40.154839 - 1.524 - - - 227 - 6.2482745 - -40.154839 - -6.096 - - - 228 - 6.2482745 - -40.154839 - 1.524 - - - 229 - -25.4353595 - -4.133836 - -6.096 - - - 230 - -25.4029005 - -4.043198 - -6.096 - - - 231 - -25.4029005 - -4.043198 - -1.702228 - - - 232 - -25.5634735 - -4.491576 - -1.702228 - - - 233 - -25.7519575 - -5.017892 - -2.582796 - - - 234 - -25.7519575 - -5.017892 - -4.028435 - - - 235 - -25.5433915 - -4.4355 - -4.709047 - - - 236 - -25.4353595 - -4.133836 - -4.709047 - - - 237 - -24.8046495 - -4.319138 - -1.702228 - - - 238 - -25.3134575 - -4.084453 - -6.096 - - - 239 - -25.3134575 - -4.084453 - -4.709047 - - - 240 - -24.8368865 - -4.304269 - -4.709047 - - - 241 - -24.1958235 - -4.599955 - -3.941609 - - - 242 - -24.1958235 - -4.599955 - -2.436962 - - - 243 - -25.4923425 - -4.001944 - -6.096 - - - 244 - -25.8453645 - -3.839115 - -1.702228 - - - 245 - -26.3647405 - -3.599556 - -2.582796 - - - 246 - -26.3647405 - -3.599556 - -4.028435 - - - 247 - -25.7900285 - -3.864638 - -4.709047 - - - 248 - -25.4923425 - -4.001944 - -4.709047 - - - 249 - -25.1857915 - -3.436953 - -1.702228 - - - 250 - -25.3704405 - -3.952561 - -6.096 - - - 251 - -25.3704405 - -3.952561 - -4.709047 - - - 252 - -25.1974905 - -3.469621 - -4.709047 - - - 253 - -24.9648445 - -2.819991 - -3.941609 - - - 254 - -24.9648445 - -2.819991 - -2.436962 - - - 255 - -8.5203115 - -12.862653 - -3.4798 - - - 256 - -8.5203115 - -10.373453 - -3.4798 - - - 257 - -14.1337115 - -10.373453 - -3.4798 - - - 258 - -14.1337115 - -12.862653 - -3.4798 - - - 259 - -16.5464685 - -17.78509 - -1.549828 - - - 260 - -17.1447195 - -17.50915 - -1.549828 - - - 261 - -17.1447195 - -17.50915 - -5.9436 - - - 262 - -17.0552775 - -17.550405 - -5.9436 - - - 263 - -17.0552775 - -17.550405 - -4.556647 - - - 264 - -16.5787065 - -17.77022 - -4.556647 - - - 265 - -15.9376425 - -18.065907 - -3.789209 - - - 266 - -15.9376425 - -18.065907 - -2.284562 - - - 267 - -17.2341625 - -17.467895 - -5.9436 - - - 268 - -17.5871845 - -17.305066 - -1.549828 - - - 269 - -18.1065605 - -17.065507 - -2.430396 - - - 270 - -18.1065605 - -17.065507 - -3.876035 - - - 271 - -17.5318485 - -17.33059 - -4.556647 - - - 272 - -17.2341625 - -17.467895 - -4.556647 - - - 273 - -16.9276115 - -16.902904 - -1.549828 - - - 274 - -17.1122605 - -17.418512 - -5.9436 - - - 275 - -17.1122605 - -17.418512 - -4.556647 - - - 276 - -16.9393105 - -16.935573 - -4.556647 - - - 277 - -16.7066645 - -16.285942 - -3.789209 - - - 278 - -16.7066645 - -16.285942 - -2.284562 - - - 279 - -17.1771795 - -17.599788 - -5.9436 - - - 280 - -17.3052925 - -17.957528 - -1.549828 - - - 281 - -17.4937775 - -18.483844 - -2.430396 - - - 282 - -17.4937775 - -18.483844 - -3.876035 - - - 283 - -17.2852115 - -17.901452 - -4.556647 - - - 284 - -17.1771795 - -17.599788 - -4.556647 - - - 285 - -11.3054475 - -17.73527 - -5.9436 - - - 286 - -11.2729885 - -17.644632 - -5.9436 - - - 287 - -11.2729885 - -17.644632 - -1.549828 - - - 288 - -11.4335615 - -18.09301 - -1.549828 - - - 289 - -11.6220455 - -18.619326 - -2.430396 - - - 290 - -11.6220455 - -18.619326 - -3.876035 - - - 291 - -11.4134795 - -18.036934 - -4.556647 - - - 292 - -11.3054475 - -17.73527 - -4.556647 - - - 293 - -11.0558795 - -17.038387 - -1.549828 - - - 294 - -11.2405295 - -17.553995 - -5.9436 - - - 295 - -11.2405295 - -17.553995 - -4.556647 - - - 296 - -11.0675785 - -17.071055 - -4.556647 - - - 297 - -10.8349335 - -16.421425 - -3.789209 - - - 298 - -10.8349335 - -16.421425 - -2.284562 - - - 299 - -11.3624305 - -17.603378 - -5.9436 - - - 300 - -11.7154525 - -17.440548 - -1.549828 - - - 301 - -12.2348285 - -17.20099 - -2.430396 - - - 302 - -12.2348285 - -17.20099 - -3.876035 - - - 303 - -11.6601165 - -17.466072 - -4.556647 - - - 304 - -11.3624305 - -17.603378 - -4.556647 - - - 305 - -10.6747375 - -17.920572 - -1.549828 - - - 306 - -11.1835455 - -17.685887 - -5.9436 - - - 307 - -11.1835455 - -17.685887 - -4.556647 - - - 308 - -10.7069745 - -17.905703 - -4.556647 - - - 309 - -10.0659115 - -18.201389 - -3.789209 - - - 310 - -10.0659115 - -18.201389 - -2.284562 - - - 311 - -5.6316115 - -17.473582 - -5.9436 - - - 312 - -5.5421695 - -17.514837 - -5.9436 - - - 313 - -5.5421695 - -17.514837 - -1.549828 - - - 314 - -5.9846335 - -17.310753 - -1.549828 - - - 315 - -6.5040095 - -17.071194 - -2.430396 - - - 316 - -6.5040095 - -17.071194 - -3.876035 - - - 317 - -5.9292975 - -17.336277 - -4.556647 - - - 318 - -5.6316115 - -17.473582 - -4.556647 - - - 319 - -5.5746285 - -17.605475 - -5.9436 - - - 320 - -5.7027425 - -17.963215 - -1.549828 - - - 321 - -5.8912265 - -18.489531 - -2.430396 - - - 322 - -5.8912265 - -18.489531 - -3.876035 - - - 323 - -5.6826605 - -17.907139 - -4.556647 - - - 324 - -5.5746285 - -17.605475 - -4.556647 - - - 325 - -4.9439185 - -17.790777 - -1.549828 - - - 326 - -5.4527265 - -17.556092 - -5.9436 - - - 327 - -5.4527265 - -17.556092 - -4.556647 - - - 328 - -4.9761555 - -17.775907 - -4.556647 - - - 329 - -4.3350925 - -18.071594 - -3.789209 - - - 330 - -4.3350925 - -18.071594 - -2.284562 - - - 331 - -5.3250605 - -16.908591 - -1.549828 - - - 332 - -5.5097095 - -17.424199 - -5.9436 - - - 333 - -5.5097095 - -17.424199 - -4.556647 - - - 334 - -5.3367595 - -16.94126 - -4.556647 - - - 335 - -5.1041135 - -16.291629 - -3.789209 - - - 336 - -5.1041135 - -16.291629 - -2.284562 - - - 337 - -17.7924885 - 13.296623 - -1.702228 - - - 338 - -18.0095975 - 12.690377 - -1.702228 - - - 339 - -18.0095975 - 12.690377 - -6.096 - - - 340 - -17.9771385 - 12.781015 - -6.096 - - - 341 - -17.9771385 - 12.781015 - -4.709047 - - - 342 - -17.8041875 - 13.263954 - -4.709047 - - - 343 - -17.5715425 - 13.913585 - -3.941609 - - - 344 - -17.5715425 - 13.913585 - -2.436962 - - - 345 - -18.0420565 - 12.599739 - -6.096 - - - 346 - -18.1701705 - 12.242 - -1.702228 - - - 347 - -18.3586545 - 11.715683 - -2.582796 - - - 348 - -18.3586545 - 11.715683 - -4.028435 - - - 349 - -18.1500885 - 12.298075 - -4.709047 - - - 350 - -18.0420565 - 12.599739 - -4.709047 - - - 351 - -17.4113465 - 12.414437 - -1.702228 - - - 352 - -17.9201545 - 12.649122 - -6.096 - - - 353 - -17.9201545 - 12.649122 - -4.709047 - - - 354 - -17.4435835 - 12.429307 - -4.709047 - - - 355 - -16.8025205 - 12.13362 - -3.941609 - - - 356 - -16.8025205 - 12.13362 - -2.436962 - - - 357 - -18.0990395 - 12.731632 - -6.096 - - - 358 - -18.4520615 - 12.894461 - -1.702228 - - - 359 - -18.9714375 - 13.13402 - -2.582796 - - - 360 - -18.9714375 - 13.13402 - -4.028435 - - - 361 - -18.3967255 - 12.868937 - -4.709047 - - - 362 - -18.0990395 - 12.731632 - -4.709047 - - - 363 - -26.1283505 - 3.230419 - -1.702228 - - - 364 - -26.7266015 - 3.506358 - -1.702228 - - - 365 - -26.7266015 - 3.506358 - -6.096 - - - 366 - -26.6371585 - 3.465104 - -6.096 - - - 367 - -26.6371585 - 3.465104 - -4.709047 - - - 368 - -26.1605885 - 3.245288 - -4.709047 - - - 369 - -25.5195245 - 2.949602 - -3.941609 - - - 370 - -25.5195245 - 2.949602 - -2.436962 - - - 371 - -26.5094925 - 4.112604 - -1.702228 - - - 372 - -26.6941425 - 3.596996 - -6.096 - - - 373 - -26.6941425 - 3.596996 - -4.709047 - - - 374 - -26.5211915 - 4.079936 - -4.709047 - - - 375 - -26.2885465 - 4.729566 - -3.941609 - - - 376 - -26.2885465 - 4.729566 - -2.436962 - - - 377 - -26.8160445 - 3.547613 - -6.096 - - - 378 - -27.1690665 - 3.710442 - -1.702228 - - - 379 - -27.6884415 - 3.950001 - -2.582796 - - - 380 - -27.6884415 - 3.950001 - -4.028435 - - - 381 - -27.1137295 - 3.684919 - -4.709047 - - - 382 - -26.8160445 - 3.547613 - -4.709047 - - - 383 - -26.7590605 - 3.415721 - -6.096 - - - 384 - -26.8871745 - 3.057981 - -1.702228 - - - 385 - -27.0756595 - 2.531664 - -2.582796 - - - 386 - -27.0756595 - 2.531664 - -4.028435 - - - 387 - -26.8670925 - 3.114057 - -4.709047 - - - 388 - -26.7590605 - 3.415721 - -4.709047 - - - 389 - -25.0046895 - -8.448525 - -1.702228 - - - 390 - -25.6029405 - -8.172586 - -1.702228 - - - 391 - -25.6029405 - -8.172586 - -6.096 - - - 392 - -25.5134985 - -8.213841 - -6.096 - - - 393 - -25.5134985 - -8.213841 - -4.709047 - - - 394 - -25.0369275 - -8.433656 - -4.709047 - - - 395 - -24.3958635 - -8.729343 - -3.941609 - - - 396 - -24.3958635 - -8.729343 - -2.436962 - - - 397 - -25.6923835 - -8.131331 - -6.096 - - - 398 - -26.0454055 - -7.968502 - -1.702228 - - - 399 - -26.5647815 - -7.728943 - -2.582796 - - - 400 - -26.5647815 - -7.728943 - -4.028435 - - - 401 - -25.9900695 - -7.994025 - -4.709047 - - - 402 - -25.6923835 - -8.131331 - -4.709047 - - - 403 - -25.3858325 - -7.56634 - -1.702228 - - - 404 - -25.5704815 - -8.081948 - -6.096 - - - 405 - -25.5704815 - -8.081948 - -4.709047 - - - 406 - -25.3975315 - -7.599008 - -4.709047 - - - 407 - -25.1648855 - -6.949378 - -3.941609 - - - 408 - -25.1648855 - -6.949378 - -2.436962 - - - 409 - -25.6354005 - -8.263224 - -6.096 - - - 410 - -25.7635135 - -8.620963 - -1.702228 - - - 411 - -25.9519985 - -9.14728 - -2.582796 - - - 412 - -25.9519985 - -9.14728 - -4.028435 - - - 413 - -25.7434325 - -8.564888 - -4.709047 - - - 414 - -25.6354005 - -8.263224 - -4.709047 - - - 415 - -26.0228905 - 8.64713 - -1.702228 - - - 416 - -26.6211415 - 8.92307 - -1.702228 - - - 417 - -26.6211415 - 8.92307 - -6.096 - - - 418 - -26.5316985 - 8.881815 - -6.096 - - - 419 - -26.5316985 - 8.881815 - -4.709047 - - - 420 - -26.0551285 - 8.662 - -4.709047 - - - 421 - -25.4140645 - 8.366313 - -3.941609 - - - 422 - -25.4140645 - 8.366313 - -2.436962 - - - 423 - -26.4040325 - 9.529316 - -1.702228 - - - 424 - -26.5886825 - 9.013708 - -6.096 - - - 425 - -26.5886825 - 9.013708 - -4.709047 - - - 426 - -26.4157315 - 9.496647 - -4.709047 - - - 427 - -26.1830865 - 10.146278 - -3.941609 - - - 428 - -26.1830865 - 10.146278 - -2.436962 - - - 429 - -26.7105845 - 8.964325 - -6.096 - - - 430 - -27.0636065 - 9.127154 - -1.702228 - - - 431 - -27.5829815 - 9.366713 - -2.582796 - - - 432 - -27.5829815 - 9.366713 - -4.028435 - - - 433 - -27.0082695 - 9.10163 - -4.709047 - - - 434 - -26.7105845 - 8.964325 - -4.709047 - - - 435 - -26.6536005 - 8.832432 - -6.096 - - - 436 - -26.7817145 - 8.474693 - -1.702228 - - - 437 - -26.9701995 - 7.948376 - -2.582796 - - - 438 - -26.9701995 - 7.948376 - -4.028435 - - - 439 - -26.7616325 - 8.530768 - -4.709047 - - - 440 - -26.6536005 - 8.832432 - -4.709047 - - - 441 - -22.7609895 - 8.047008 - -1.702228 - - - 442 - -22.9780985 - 7.440762 - -1.702228 - - - 443 - -22.9780985 - 7.440762 - -6.096 - - - 444 - -22.9456395 - 7.5314 - -6.096 - - - 445 - -22.9456395 - 7.5314 - -4.709047 - - - 446 - -22.7726885 - 8.014339 - -4.709047 - - - 447 - -22.5400425 - 8.66397 - -3.941609 - - - 448 - -22.5400425 - 8.66397 - -2.436962 - - - 449 - -22.3798475 - 7.164822 - -1.702228 - - - 450 - -22.8886555 - 7.399507 - -6.096 - - - 451 - -22.8886555 - 7.399507 - -4.709047 - - - 452 - -22.4120845 - 7.179692 - -4.709047 - - - 453 - -21.7710215 - 6.884005 - -3.941609 - - - 454 - -21.7710215 - 6.884005 - -2.436962 - - - 455 - -23.0105575 - 7.350124 - -6.096 - - - 456 - -23.1386715 - 6.992384 - -1.702228 - - - 457 - -23.3271555 - 6.466068 - -2.582796 - - - 458 - -23.3271555 - 6.466068 - -4.028435 - - - 459 - -23.1185895 - 7.04846 - -4.709047 - - - 460 - -23.0105575 - 7.350124 - -4.709047 - - - 461 - -23.0675405 - 7.482017 - -6.096 - - - 462 - -23.4205625 - 7.644846 - -1.702228 - - - 463 - -23.9399385 - 7.884405 - -2.582796 - - - 464 - -23.9399385 - 7.884405 - -4.028435 - - - 465 - -23.3652265 - 7.619322 - -4.709047 - - - 466 - -23.0675405 - 7.482017 - -4.709047 - - - 467 - -20.7963335 - 10.765735 - -6.096 - - - 468 - -20.7068905 - 10.72448 - -6.096 - - - 469 - -20.7068905 - 10.72448 - -1.702228 - - - 470 - -21.1493555 - 10.928564 - -1.702228 - - - 471 - -21.6687315 - 11.168123 - -2.582796 - - - 472 - -21.6687315 - 11.168123 - -4.028435 - - - 473 - -21.0940185 - 10.90304 - -4.709047 - - - 474 - -20.7963335 - 10.765735 - -4.709047 - - - 475 - -20.1086395 - 10.44854 - -1.702228 - - - 476 - -20.6174485 - 10.683225 - -6.096 - - - 477 - -20.6174485 - 10.683225 - -4.709047 - - - 478 - -20.1408775 - 10.46341 - -4.709047 - - - 479 - -19.4998135 - 10.167723 - -3.941609 - - - 480 - -19.4998135 - 10.167723 - -2.436962 - - - 481 - -20.4897815 - 11.330725 - -1.702228 - - - 482 - -20.6744315 - 10.815118 - -6.096 - - - 483 - -20.6744315 - 10.815118 - -4.709047 - - - 484 - -20.5014815 - 11.298057 - -4.709047 - - - 485 - -20.2688355 - 11.947688 - -3.941609 - - - 486 - -20.2688355 - 11.947688 - -2.436962 - - - 487 - -20.7393495 - 10.633842 - -6.096 - - - 488 - -20.8674635 - 10.276102 - -1.702228 - - - 489 - -21.0559485 - 9.749786 - -2.582796 - - - 490 - -21.0559485 - 9.749786 - -4.028435 - - - 491 - -20.8473815 - 10.332178 - -4.709047 - - - 492 - -20.7393495 - 10.633842 - -4.709047 - - - 493 - -20.3487745 - 0.675547 - -0.0762 - - - 494 - -20.3487745 - -10.348053 - -0.0762 - - - 495 - 0.4427135 - 0.675547 - -0.0762 - - - 496 - 0.4427135 - -1.915253 - 1.2954 - - - 497 - -20.3487745 - -1.915253 - 1.2954 - - - 498 - 0.4427135 - -10.348053 - -0.0762 - - - 499 - 0.7681505 - -10.951625 - -0.3048 - - - 500 - -20.7202485 - -10.951625 - -0.3048 - - - 501 - -20.7202485 - 1.279119 - -0.3048 - - - 502 - 0.7681505 - 1.279119 - -0.3048 - - - 503 - -13.3113865 - -10.348053 - -5.948363 - - - - - 10000000 - -1.0 - 0.0 - 0.0 - - 1 - 2 - 3 - 4 - - - - - 10000004 - -1.0 - 0.0 - 0.0 - - 18 - 19 - 20 - 21 - - - - - 10000005 - -1.0 - 0.0 - 0.0 - - 22 - 3 - 2 - 23 - - - - - 10000006 - -1.0 - 0.0 - 0.0 - - 24 - 25 - 19 - 18 - - - - - 10000007 - -1.0 - 0.0 - 0.0 - - 21 - 20 - 3 - 22 - - - - - 10000009 - 0.0 - -1.0 - 0.0 - - 28 - 29 - 30 - 31 - - - - - 10000010 - 0.0 - -1.0 - 0.0 - - 32 - 33 - 34 - 35 - - - - - 10000013 - 0.0 - -1.0 - 0.0 - - 42 - 43 - 44 - 45 - - - - - 10000014 - 0.0 - -1.0 - 0.0 - - 46 - 30 - 29 - 47 - - - - - 10000015 - 0.0 - -1.0 - 0.0 - - 48 - 44 - 43 - 49 - - - - - 10000016 - 0.0 - -1.0 - 0.0 - - 50 - 51 - 52 - 53 - - - - - 10000017 - 0.0 - -1.0 - 0.0 - - 54 - 52 - 51 - 55 - - - - - 10000018 - 0.0 - -1.0 - 0.0 - - 56 - 57 - 58 - 59 - - - - - 10000019 - 0.0 - -1.0 - 0.0 - - 60 - 58 - 57 - 61 - - - - - 10000020 - 0.0 - -1.0 - 0.0 - - 62 - 63 - 64 - 65 - - - - - 10000021 - 0.0 - -1.0 - 0.0 - - 66 - 64 - 63 - 67 - - - - - 10000022 - 0.0 - -1.0 - 0.0 - - 68 - 69 - 70 - 71 - - - - - 10000023 - 0.0 - -1.0 - 0.0 - - 72 - 70 - 69 - 73 - - - - - 10000024 - 0.0 - -1.0 - 0.0 - - 74 - 75 - 76 - 77 - - - - - 10000025 - 0.0 - -1.0 - 0.0 - - 78 - 76 - 75 - 79 - - - - - 10000027 - 0.0 - -1.0 - 0.0 - - 84 - 82 - 81 - 85 - - - - - 10000029 - 0.0 - -1.0 - 0.0 - - 90 - 88 - 87 - 91 - - - - - 10000031 - 0.0 - -1.0 - 0.0 - - 96 - 94 - 93 - 97 - - - - - 10000033 - 0.0 - -1.0 - 0.0 - - 102 - 100 - 99 - 103 - - - - - 10000034 - 0.0 - -1.0 - 0.0 - - 104 - 105 - 106 - 107 - - - - - 10000036 - 0.0 - 1.0 - 0.0 - - 110 - 111 - 112 - 113 - - - - - 10000037 - 0.0 - 1.0 - 0.0 - - 113 - 114 - 115 - 110 - - - - - 10000038 - 0.0 - 1.0 - 0.0 - - 116 - 117 - 118 - 119 - - - - - 10000039 - 0.0 - 1.0 - 0.0 - - 119 - 120 - 121 - 116 - - - - - 10000040 - 0.0 - 1.0 - 0.0 - - 122 - 123 - 124 - 125 - - - - - 10000041 - 0.0 - 1.0 - 0.0 - - 125 - 126 - 127 - 122 - - - - - 10000042 - 0.0 - 1.0 - 0.0 - - 128 - 129 - 130 - 131 - - - - - 10000043 - 0.0 - 1.0 - 0.0 - - 131 - 132 - 133 - 128 - - - - - 10000044 - 0.0 - 1.0 - 0.0 - - 134 - 135 - 136 - 137 - - - - - 10000045 - 0.0 - 1.0 - 0.0 - - 137 - 138 - 139 - 134 - - - - - 10000046 - -1.0 - 0.0 - 0.0 - - 140 - 19 - 25 - 141 - - - - - 10000056 - -1.0 - 0.0 - 0.0 - - 168 - 20 - 19 - 140 - - - - - 10000059 - -1.0 - 0.0 - 0.0 - - 4 - 3 - 20 - 168 - - - - - 10000001 - 0.0 - -1.0 - 0.0 - - 5 - 6 - 7 - 8 - 9 - - - - - 10000002 - -1.0 - 0.0 - 0.0 - - 10 - 11 - 12 - 13 - - - - - 10000003 - 0.0 - -1.0 - 0.0 - - 14 - 15 - 16 - 17 - - - - - 10000008 - 0.0 - -1.0 - 0.0 - - 26 - 7 - 6 - 27 - - - 10000009 - 10000014 - 10000024 - 10000025 - 10000032 - 10000033 - 10000034 - 10000035 - - - - 10000012 - 0.0 - -1.0 - 0.0 - - 38 - 39 - 40 - 41 - - - - - 10000049 - -1.0 - 0.0 - 0.0 - - 9 - 150 - 151 - 5 - - - - - 10000050 - 1.0 - 0.0 - 0.0 - - 41 - 152 - 153 - 38 - - - - - 10000053 - 0.0 - 1.0 - 0.0 - - 152 - 10 - 13 - 160 - 153 - - - 10000036 - 10000037 - 10000038 - 10000039 - 10000040 - 10000041 - 10000042 - 10000043 - 10000044 - 10000045 - 10000047 - 10000055 - - - - 10000057 - -1.0 - 0.0 - 0.0 - - 11 - 151 - 150 - 12 - - - 10000000 - 10000004 - 10000005 - 10000006 - 10000007 - 10000046 - 10000048 - 10000051 - 10000056 - 10000059 - - - - 10000058 - 0.0 - -1.0 - 0.0 - - 27 - 169 - 170 - 26 - - - - - 10000061 - 0.0 - -1.0 - 0.0 - - 169 - 14 - 17 - 170 - - - 10000016 - 10000017 - 10000022 - 10000023 - 10000030 - 10000031 - 10000052 - 10000054 - 10000151 - - - - 10000062 - 0.0 - -1.0 - 0.0 - - 15 - 40 - 39 - 16 - - - 10000010 - 10000011 - 10000013 - 10000015 - 10000018 - 10000019 - 10000020 - 10000021 - 10000026 - 10000027 - 10000028 - 10000029 - - - - 10000139 - -1.0 - 0.0 - 0.0 - - 160 - 493 - 494 - 8 - - - - - 10000140 - 0.0 - 1.0 - 0.0 - - 153 - 495 - 493 - 160 - - - - - 10000143 - 0.0 - -1.0 - 0.0 - - 498 - 38 - 39 - 16 - 17 - 170 - 26 - 7 - 8 - 494 - - - - - 10000144 - 1.0 - 0.0 - 0.0 - - 153 - 495 - 498 - 38 - - - - - 10000147 - -1.0 - 0.0 - 0.0 - - 497 - 494 - 493 - - - - - 10000149 - 1.0 - 0.0 - 0.0 - - 496 - 498 - 495 - - - - - 10000047 - 0.0 - 1.0 - 0.0 - - 142 - 143 - 144 - 145 - - - - - 10000060 - 0.0 - 0.0 - -1.0 - - 152 - 41 - 40 - 15 - 14 - 169 - 27 - 6 - 5 - 151 - 11 - 10 - - - - - 10000063 - 0.0 - 0.0 - 1.0 - - 171 - 172 - 173 - 174 - - - - - 10000068 - 0.0 - 0.0 - 1.0 - - 179 - 180 - 181 - 182 - - - - - 10000073 - 0.0 - 0.0 - 1.0 - - 187 - 188 - 189 - 190 - 191 - - - - - 10000085 - 0.0 - 0.0 - 1.0 - - 212 - 208 - 207 - 210 - - - - - 10000090 - 0.0 - 0.0 - 1.0 - - 220 - 216 - 215 - 218 - - - - - 10000096 - 0.0 - 0.0 - 1.0 - - 200 - 199 - 202 - 204 - - - - - 10000097 - 0.0 - 0.0 - 1.0 - - 224 - 223 - 226 - 228 - - - - - 10000102 - 0.0 - 0.0 - 1.0 - - 255 - 256 - 257 - 258 - - - - - 10000064 - 0.0 - -1.0 - 0.0 - - 175 - 176 - 172 - 171 - - - - - 10000065 - 1.0 - 0.0 - 0.0 - - 176 - 177 - 173 - 172 - - - - - 10000066 - 0.0 - 1.0 - 0.0 - - 177 - 178 - 174 - 173 - - - - - 10000067 - -1.0 - 0.0 - 0.0 - - 178 - 175 - 171 - 174 - - - - - 10000069 - 0.0 - -1.0 - 0.0 - - 183 - 184 - 180 - 179 - - - - - 10000070 - 1.0 - 0.0 - 0.0 - - 184 - 185 - 181 - 180 - - - - - 10000071 - 0.0 - 1.0 - 0.0 - - 185 - 186 - 182 - 181 - - - - - 10000072 - -1.0 - 0.0 - 0.0 - - 186 - 183 - 179 - 182 - - - - - 10000074 - 0.782474644 - -0.622682448 - 0.0 - - 192 - 193 - 188 - 187 - - - - - 10000075 - 0.622682513 - 0.782474592 - 0.0 - - 194 - 195 - 190 - 189 - - - - - 10000076 - -0.782474629 - 0.622682467 - 0.0 - - 195 - 196 - 191 - 190 - - - - - 10000077 - -0.622682383 - -0.782474696 - 0.0 - - 196 - 192 - 187 - 191 - - - - - 10000078 - 0.610868637 - 0.791731968 - 0.0 - - 197 - 198 - 199 - 200 - - - - - 10000079 - -0.791731889 - 0.610868739 - 0.0 - - 198 - 201 - 202 - 199 - - - - - 10000080 - -0.603137567 - -0.797637182 - 0.0 - - 201 - 203 - 204 - 202 - - - - - 10000081 - 0.791731851 - -0.610868788 - 0.0 - - 203 - 197 - 200 - 204 - - - - - 10000082 - -0.791731919 - 0.6108687 - 0.0 - - 205 - 206 - 207 - 208 - - - - - 10000083 - -0.603137567 - -0.797637182 - 0.0 - - 206 - 209 - 210 - 207 - - - - - 10000084 - 0.610868726 - 0.791731899 - 0.0 - - 211 - 205 - 208 - 212 - - - - - 10000086 - 0.791731851 - -0.610868788 - 0.0 - - 209 - 211 - 212 - 210 - - - - - 10000087 - -0.79173188 - 0.61086875 - 0.0 - - 213 - 214 - 215 - 216 - - - - - 10000088 - -0.603137499 - -0.797637234 - 0.0 - - 214 - 217 - 218 - 215 - - - - - 10000089 - 0.610868795 - 0.791731846 - 0.0 - - 219 - 213 - 216 - 220 - - - - - 10000091 - 0.79173189 - -0.610868737 - 0.0 - - 217 - 219 - 220 - 218 - - - - - 10000092 - 0.0 - 1.0 - 0.0 - - 221 - 222 - 223 - 224 - - - - - 10000093 - -1.0 - 0.0 - 0.0 - - 222 - 225 - 226 - 223 - - - - - 10000094 - 0.0 - -1.0 - 0.0 - - 225 - 227 - 228 - 226 - - - - - 10000095 - 1.0 - 0.0 - 0.0 - - 227 - 221 - 224 - 228 - - - - - 10000098 - 0.941450263 - -0.337151897 - 0.0 - - 229 - 230 - 231 - 232 - 233 - 234 - 235 - 236 - - - - - 10000099 - -0.418837338 - -0.908061278 - 0.0 - - 237 - 231 - 230 - 238 - 239 - 240 - 241 - 242 - - - - - 10000100 - -0.418836268 - -0.908061771 - 0.0 - - 243 - 230 - 231 - 244 - 245 - 246 - 247 - 248 - - - - - 10000101 - 0.941446625 - -0.337162058 - 0.0 - - 249 - 231 - 230 - 250 - 251 - 252 - 253 - 254 - - - - - 10000103 - -0.418841199 - -0.908059497 - 0.0 - - 259 - 260 - 261 - 262 - 263 - 264 - 265 - 266 - - - - - 10000104 - -0.41883718 - -0.908061351 - 0.0 - - 267 - 261 - 260 - 268 - 269 - 270 - 271 - 272 - - - - - 10000105 - 0.941451102 - -0.337149555 - 0.0 - - 273 - 260 - 261 - 274 - 275 - 276 - 277 - 278 - - - - - 10000106 - 0.941450263 - -0.337151897 - 0.0 - - 279 - 261 - 260 - 280 - 281 - 282 - 283 - 284 - - - - - 10000107 - 0.941450263 - -0.337151897 - 0.0 - - 285 - 286 - 287 - 288 - 289 - 290 - 291 - 292 - - - - - 10000108 - 0.941449922 - -0.337152852 - 0.0 - - 293 - 287 - 286 - 294 - 295 - 296 - 297 - 298 - - - - - 10000109 - -0.41883796 - -0.908060991 - 0.0 - - 299 - 286 - 287 - 300 - 301 - 302 - 303 - 304 - - - - - 10000110 - -0.418838495 - -0.908060744 - 0.0 - - 305 - 287 - 286 - 306 - 307 - 308 - 309 - 310 - - - - - 10000111 - -0.41883796 - -0.908060991 - 0.0 - - 311 - 312 - 313 - 314 - 315 - 316 - 317 - 318 - - - - - 10000112 - 0.941450263 - -0.337151897 - 0.0 - - 319 - 312 - 313 - 320 - 321 - 322 - 323 - 324 - - - - - 10000113 - -0.418837338 - -0.908061278 - 0.0 - - 325 - 313 - 312 - 326 - 327 - 328 - 329 - 330 - - - - - 10000114 - 0.941447805 - -0.337158761 - 0.0 - - 331 - 313 - 312 - 332 - 333 - 334 - 335 - 336 - - - - - 10000115 - 0.941451102 - -0.337149555 - 0.0 - - 337 - 338 - 339 - 340 - 341 - 342 - 343 - 344 - - - - - 10000116 - 0.941450025 - -0.337152563 - 0.0 - - 345 - 339 - 338 - 346 - 347 - 348 - 349 - 350 - - - - - 10000117 - -0.418837338 - -0.908061278 - 0.0 - - 351 - 338 - 339 - 352 - 353 - 354 - 355 - 356 - - - - - 10000118 - -0.41883796 - -0.908060991 - 0.0 - - 357 - 339 - 338 - 358 - 359 - 360 - 361 - 362 - - - - - 10000119 - -0.418828966 - -0.908065139 - 0.0 - - 363 - 364 - 365 - 366 - 367 - 368 - 369 - 370 - - - - - 10000120 - 0.941451102 - -0.337149555 - 0.0 - - 371 - 364 - 365 - 372 - 373 - 374 - 375 - 376 - - - - - 10000121 - -0.41883718 - -0.908061351 - 0.0 - - 377 - 365 - 364 - 378 - 379 - 380 - 381 - 382 - - - - - 10000122 - 0.941450025 - -0.337152563 - 0.0 - - 383 - 365 - 364 - 384 - 385 - 386 - 387 - 388 - - - - - 10000123 - -0.418836924 - -0.908061469 - 0.0 - - 389 - 390 - 391 - 392 - 393 - 394 - 395 - 396 - - - - - 10000124 - -0.41883718 - -0.908061351 - 0.0 - - 397 - 391 - 390 - 398 - 399 - 400 - 401 - 402 - - - - - 10000125 - 0.941451102 - -0.337149555 - 0.0 - - 403 - 390 - 391 - 404 - 405 - 406 - 407 - 408 - - - - - 10000126 - 0.941450025 - -0.337152563 - 0.0 - - 409 - 391 - 390 - 410 - 411 - 412 - 413 - 414 - - - - - 10000127 - -0.418837649 - -0.908061134 - 0.0 - - 415 - 416 - 417 - 418 - 419 - 420 - 421 - 422 - - - - - 10000128 - 0.941451102 - -0.337149555 - 0.0 - - 423 - 416 - 417 - 424 - 425 - 426 - 427 - 428 - - - - - 10000129 - -0.41883718 - -0.908061351 - 0.0 - - 429 - 417 - 416 - 430 - 431 - 432 - 433 - 434 - - - - - 10000130 - 0.941450025 - -0.337152563 - 0.0 - - 435 - 417 - 416 - 436 - 437 - 438 - 439 - 440 - - - - - 10000131 - 0.941451102 - -0.337149555 - 0.0 - - 441 - 442 - 443 - 444 - 445 - 446 - 447 - 448 - - - - - 10000132 - -0.418837338 - -0.908061278 - 0.0 - - 449 - 442 - 443 - 450 - 451 - 452 - 453 - 454 - - - - - 10000133 - 0.941450263 - -0.337151897 - 0.0 - - 455 - 443 - 442 - 456 - 457 - 458 - 459 - 460 - - - - - 10000134 - -0.41883796 - -0.908060991 - 0.0 - - 461 - 443 - 442 - 462 - 463 - 464 - 465 - 466 - - - - - 10000135 - -0.41883718 - -0.908061351 - 0.0 - - 467 - 468 - 469 - 470 - 471 - 472 - 473 - 474 - - - - - 10000136 - -0.418841199 - -0.908059497 - 0.0 - - 475 - 469 - 468 - 476 - 477 - 478 - 479 - 480 - - - - - 10000137 - 0.941451102 - -0.337149555 - 0.0 - - 481 - 469 - 468 - 482 - 483 - 484 - 485 - 486 - - - - - 10000138 - 0.941450263 - -0.337151897 - 0.0 - - 487 - 468 - 469 - 488 - 489 - 490 - 491 - 492 - - - - - 10000141 - 0.0 - 0.46788772 - 0.883787916 - - 495 - 496 - 497 - 493 - - - - - 10000142 - 0.0 - -0.160540892 - 0.98702919 - - 496 - 498 - 494 - 497 - - - - - 10000145 - 0.0 - 0.354192161 - -0.935172665 - - 498 - 499 - 500 - 494 - - - - - 10000146 - 0.0 - -0.354192161 - -0.935172665 - - 493 - 501 - 502 - 495 - - - - - 10000148 - 0.524098449 - 0.0 - -0.851657687 - - 493 - 494 - 500 - 501 - - - - - 10000150 - -0.574801657 - 0.0 - -0.818292769 - - 498 - 495 - 502 - 499 - - - - - 10000011 - 0.0 - -1.0 - 0.0 - - 36 - 34 - 33 - 37 - - - - - 10000026 - 0.0 - -1.0 - 0.0 - - 80 - 81 - 82 - 83 - - - - - 10000028 - 0.0 - -1.0 - 0.0 - - 86 - 87 - 88 - 89 - - - - - 10000030 - 0.0 - -1.0 - 0.0 - - 92 - 93 - 94 - 95 - - - - - 10000032 - 0.0 - -1.0 - 0.0 - - 98 - 99 - 100 - 101 - - - - - 10000035 - 0.0 - -1.0 - 0.0 - - 108 - 106 - 105 - 109 - - - - - 10000052 - 0.0 - -1.0 - 0.0 - - 156 - 157 - 158 - 159 - - - - - 10000054 - 0.0 - -1.0 - 0.0 - - 161 - 159 - 158 - 162 - 163 - - - - - 10000151 - 0.0 - -1.0 - 0.0 - - 158 - 157 - 503 - 162 - - - - - 10000055 - 0.0 - 1.0 - 0.0 - - 164 - 165 - 166 - 167 - - - - - 10000048 - -1.0 - 0.0 - 0.0 - - 146 - 147 - 148 - 149 - - - - - 10000051 - -1.0 - 0.0 - 0.0 - - 154 - 148 - 147 - 155 - - - - - - - - - 1 - Fixed Windows - true - 2 - 4 - 4 - 1 - -1 - -1 - -1 - 6 - - 10000000 - 10000004 - 10000005 - 10000006 - 10000007 - 10000009 - 10000010 - 10000013 - 10000014 - 10000015 - 10000016 - 10000017 - 10000018 - 10000019 - 10000020 - 10000021 - 10000022 - 10000023 - 10000024 - 10000025 - 10000027 - 10000029 - 10000031 - 10000033 - 10000034 - 10000036 - 10000037 - 10000038 - 10000039 - 10000040 - 10000041 - 10000042 - 10000043 - 10000044 - 10000045 - 10000046 - 10000056 - 10000059 - - 0.0508 - 0.0762 - -1 - -1 - 1.0 - - - 2 - Above Grade Walls - true - 1 - 1 - 2 - 1 - -1 - -1 - 11 - -1 - - 10000001 - 10000002 - 10000003 - 10000008 - 10000139 - 10000012 - 10000140 - 10000143 - 10000144 - 10000049 - 10000050 - 10000147 - 10000053 - 10000149 - 10000057 - 10000058 - 10000061 - 10000062 - - - - 4 - Garage Door - true - 1 - 1 - 2 - 1 - -1 - -1 - 10 - -1 - - 10000047 - - - - 7 - Slab On Grade - true - 1 - 5 - 12 - 1 - -2 - -1 - 3 - -1 - - 10000060 - - - - 8 - __unnamed_component__ - true - 1 - 11 - 10 - -1 - -1 - -1 - -1 - -1 - - 10000096 - 10000097 - 10000068 - 10000102 - 10000073 - 10000085 - 10000090 - 10000063 - - - - 9 - __unnamed_component__ - true - 1 - 1 - 2 - -1 - -1 - -1 - -1 - -1 - - 10000128 - 10000129 - 10000130 - 10000131 - 10000132 - 10000133 - 10000134 - 10000135 - 10000136 - 10000137 - 10000138 - 10000064 - 10000065 - 10000066 - 10000067 - 10000069 - 10000070 - 10000071 - 10000072 - 10000074 - 10000075 - 10000076 - 10000077 - 10000078 - 10000079 - 10000080 - 10000081 - 10000082 - 10000083 - 10000084 - 10000086 - 10000087 - 10000088 - 10000089 - 10000091 - 10000092 - 10000093 - 10000094 - 10000095 - 10000098 - 10000099 - 10000100 - 10000101 - 10000103 - 10000104 - 10000105 - 10000106 - 10000107 - 10000108 - 10000109 - 10000110 - 10000111 - 10000112 - 10000113 - 10000114 - 10000115 - 10000116 - 10000117 - 10000118 - 10000119 - 10000120 - 10000121 - 10000122 - 10000123 - 10000124 - 10000125 - 10000126 - 10000127 - - - - 10 - Roof - true - 1 - 9 - 7 - 1 - -1 - -1 - 8 - -1 - - 10000141 - - - - 11 - Roof - true - 1 - 6 - 10 - 1 - -1 - -1 - 8 - -1 - - 10000142 - - - - 12 - __unnamed_component__ - true - 1 - 1 - 2 - -1 - -1 - -1 - -1 - -1 - - 10000145 - 10000146 - - - - 13 - __unnamed_component__ - true - 1 - 1 - 2 - -1 - -1 - -1 - -1 - -1 - - 10000148 - - - - 14 - __unnamed_component__ - true - 1 - 1 - 2 - -1 - -1 - -1 - -1 - -1 - - 10000150 - - - - 78 - Operable Windows - true - 2 - 4 - 4 - 1 - -1 - -1 - -1 - 5 - - 10000032 - 10000035 - 10000011 - 10000026 - 10000028 - 10000030 - - 0.0508 - 0.0762 - -1 - -1 - 1.0 - - - 91 - Glass Doors - true - 2 - 4 - 4 - 1 - -1 - -1 - -1 - 3 - - 10000052 - 10000054 - 10000151 - - 0.1016 - 0.127 - -1 - -1 - 1.0 - - - 98 - Solid Door - true - 2 - 1 - 2 - 1 - -1 - -1 - -1 - 7 - - 10000055 - - 0.1016 - 0.0762 - -1 - -1 - 1.0 - - - 101 - Hollow Metal Doors - true - 2 - 4 - 4 - 1 - -1 - -1 - -1 - 7 - - 10000048 - 10000051 - - 0.1016 - 0.0762 - -1 - -1 - 1.0 - - - - - PUSH Training Center - 1 - 0 - 1.0 - 1 - - - a - 99 - 1 - 5 - 1 - 0.0 - 0.0 - 67.96 - 67.96 - - - b - 99 - 2 - 5 - 1 - 0.0 - 0.0 - 849.51 - 849.51 - - - - - a - 3 - 3 - 0.0 - 0.0 - - - b - 4 - 3 - 0.0 - 0.0 - - - - - a - 3 - 1 - 1 - true - false - false - 1 - 0 - 1 - 1 - 1 - 1 - 1 - 0.0 - 0 - - - b - 4 - 1 - 1 - true - false - false - 1 - 0 - 1 - 1 - 1 - 1 - 1 - 0.0 - 0 - - - 7 - 1781.2996 - 6 - 1353.79 - 6 - 268.7685 - 1 - 2.5 - 2 - 132 - 1 - 6 - 4 - - - - 0 - 0 - - - - - 1 - 42.933 - -78.733 - 189.8904 - -5 - -2 - 0.2 - 0.1 - 0.9 - 0.66 - 350 - 48 - - 6 - 10.0 - 4.0 - 42.933 - -78.733 - 215.0 - -5 - 189.8904 - 1 - 2.0 - 1000.0 - 2000.0 - 3.0 - 0.05 - - -3.4 - -4.2 - 2.7 - 7.5 - 13.7 - 18.6 - 22.0 - 20.7 - 16.5 - 9.7 - 6.0 - -2.2 - - - -8.7 - -8.1 - -2.8 - 1.9 - 5.8 - 11.5 - 16.1 - 13.7 - 11.2 - 5.0 - 0.8 - -5.3 - - - -19.2 - -19.6 - -12.3 - -6.1 - -0.4 - 5.5 - 10.7 - 8.4 - 5.6 - -2.4 - -6.8 - -16.0 - - - 25.0 - 34.0 - 45.0 - 51.0 - 50.0 - 59.0 - 56.0 - 47.0 - 34.0 - 26.0 - 19.0 - 22.0 - - - 40.0 - 52.0 - 79.0 - 93.0 - 97.0 - 104.0 - 103.0 - 93.0 - 75.0 - 54.0 - 33.0 - 31.0 - - - 75.0 - 82.0 - 116.0 - 100.0 - 87.0 - 83.0 - 87.0 - 93.0 - 98.0 - 90.0 - 62.0 - 63.0 - - - 35.0 - 49.0 - 81.0 - 90.0 - 97.0 - 113.0 - 104.0 - 94.0 - 72.0 - 50.0 - 31.0 - 32.0 - - - 47.0 - 65.0 - 107.0 - 136.0 - 174.0 - 195.0 - 188.0 - 161.0 - 119.0 - 80.0 - 46.0 - 41.0 - - -11.0 - 53.0 - 93.0 - 158.0 - 80.0 - 107.0 - -2.9 - 30.0 - 39.0 - 61.0 - 37.0 - 50.0 - 25.0 - 69.0 - 129.0 - 116.0 - 90.0 - 228.0 - - - - - - - 1 - - 1.1 - 1.1 - 1.1 - 1.1 - 0.2 - 2.8 - 1.7 - 0.8 - 1.1 - 1.5 - 0.7 - 1.1 - 1.5 - 0.8 - 1.1 - 1.5 - - - 309.9966 - 250.0171 - 270.0102 - 439.9864 - 53.4289 - 680.0068 - 250.0171 - 239.9864 - 319.9932 - 409.9966 - -70.0102 - 129.9898 - 319.9932 - 100 - 250.0171 - 409.9966 - - - - - 3 - 2 - 78.8648 - 78.8648 - 78.8648 - 78.8648 - - - 3 - 2 - 1 - 1 - 1 - 2 - 1 - 1 - 2.193 - 4 - 2 - - - Slab - 6 - 3 - 6 - 231.2728 - 6 - 0.2839 - 6 - 63.8861 - 1 - 1.2192 - 0.0288 - 0.0762 - - - - 15 - true - 1 - 1 - false - - - 20.0 - 20.0 - 25.0 - false - - - true - - - - - Basic - 1 - 1 - - - 1 - 1.0 - 1.0 - 1.0 - 1.0 - 1.0 - - - - - Basic - 5 - 1 - 1 - false - false - false - true - false - false - false - -1 - 0.75 - 0.0 - - 2 - 0.0 - 0.5886 - true - true - -2.2222 - true - false - - - - GSHP Water Furnace NBV12 - 1 - 5 - 5 - true - false - true - false - false - false - - - - true - 4.0 - 0.25 - 3 - - - 0.0 - 0.0 - 1 - - - 1.0 - 0.0 - 1 - - - 1.0 - 0.0 - 1 - - - - Lochnivar - 1 - 5 - 5 - false - true - false - false - false - false - - - - true - 4.0 - 0.25 - 3.57 - 5 - - - 1.0 - 0.0 - 1 - - - 0.0 - 0.0 - 1 - - - 0.0 - 0.0 - 1 - - - - PV - Per worst case - 1 - 10 - 10 - false - false - false - false - false - false - - 1 - 1 - 1 - 0.0 - 32720.0 - 1.0 - 0.0 - 0.0 - false - - - - - - 2 - true - 1 - 2 - true - 1 - 6 - 2.0 - 20.0 - 50.0 - 24.0 - 0.0 - - 0 - - - - - true - false - 13.793 - 9.6111 - 4.0 - 1324.2581 - true - true - true - 2.0 - - - - - - - - 1 - 254000.0 - 0.0 - 0.0 - 3.048 - 50800.0 - 0.0481 - 1 - 1 - 1 - true - - 5 - - - - - 2 - 254000.0 - 0.0 - 0.0 - 3.048 - 50800.0 - 0.0481 - 1 - 2 - 1 - true - - 5 - - - - false - true - - - - - - - - - - 1 - R-40 SIP - 2 - 2 - - - 0.0125 - - Oriented Strand Board - 0.092 - 650.0 - 0.95 - 1880.0 - 812.8 - 83.3 - - 255 - 255 - 255 - 255 - - - - - - - - 0.2794 - - EPS (heat cond.: 0.04 W/mK - density: 15 kg/m³) - 0.04 - 15.0 - 0.95 - 1500.0 - 30.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.0125 - - Oriented Strand Board - 0.092 - 650.0 - 0.95 - 1880.0 - 812.8 - 83.3 - - 255 - 255 - 255 - 255 - - - - - - - - - - - 3 - R-20 Slab - 2 - 2 - - - 0.1016 - - XPS Core (heat cond.: 0,03 W/mK) - 0.03 - 40.0 - 0.95 - 1500.0 - 100.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.1524 - - Concrete - 1.373 - 2104.0 - 0.22 - 776.0 - 76.0 - 101.0 - - 255 - 255 - 255 - 255 - - - - - - - - - - - 4 - R-60 SIP - 2 - 2 - - - 0.0125 - - Oriented Strand Board - 0.092 - 650.0 - 0.95 - 1880.0 - 812.8 - 83.3 - - 255 - 255 - 255 - 255 - - - - - - - - 0.4064 - - EPS (heat cond.: 0.04 W/mK - density: 15 kg/m³) - 0.04 - 15.0 - 0.95 - 1500.0 - 30.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.0125 - - Oriented Strand Board - 0.092 - 650.0 - 0.95 - 1880.0 - 812.8 - 83.3 - - 255 - 255 - 255 - 255 - - - - - - - - - - - 2 - Doors - 2 - 2 - - - 0.0254 - - Polyisocyanurate Board - 0.0577 - 32.5 - 0.99 - 1470.0 - 72.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - - - - 5 - R15 Slab - 2 - 2 - - - 0.0762 - - XPS Core (heat cond.: 0,03 W/mK) - 0.03 - 40.0 - 0.95 - 1500.0 - 100.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.1524 - - Concrete - 1.373 - 2104.0 - 0.22 - 776.0 - 76.0 - 101.0 - - 255 - 255 - 255 - 255 - - - - - - - - - - - 6 - 2X10 R-32 cellulose w/ R-9.6 ZIP-R - 2 - 2 - - - 0.0125 - - Oriented Strand Board - 0.092 - 650.0 - 0.95 - 1880.0 - 812.8 - 83.3 - - 255 - 255 - 255 - 255 - - - - - - - - 0.0381 - - Polyisocyanurate Board - 0.024 - 32.5 - 0.99 - 1470.0 - 72.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.2413 - - Cellulose Fibre Insulation - 0.036 - 30.0 - 0.99 - 1880.0 - 1.86 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.0125 - - Gypsum Board (USA) - 0.163 - 850.0 - 0.65 - 870.0 - 6.0 - 35.0 - - 255 - 255 - 255 - 255 - - - - - - - - - - - 8 - Attic R-60 Blown - 2 - 2 - - - 0.0125 - - Gypsum Board (USA) - 0.163 - 850.0 - 0.65 - 870.0 - 6.0 - 35.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.4064 - - Cellulose Fibre Insulation - 0.0401 - 30.0 - 0.99 - 1880.0 - 1.86 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - - - - 7 - 2X10 R-32 cellulose - 2 - 2 - - - 0.0125 - - Oriented Strand Board - 0.092 - 650.0 - 0.95 - 1880.0 - 812.8 - 83.3 - - 255 - 255 - 255 - 255 - - - - - - - - 0.2413 - - Cellulose Fibre Insulation - 0.036 - 30.0 - 0.99 - 1880.0 - 1.86 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.0125 - - Gypsum Board (USA) - 0.163 - 850.0 - 0.65 - 870.0 - 6.0 - 35.0 - - 255 - 255 - 255 - 255 - - - - - - - - - - - 9 - 2X10 R-30 cellulose w/ ZIP sheathing - 2 - 2 - - - 0.0125 - - Oriented Strand Board - 0.092 - 650.0 - 0.95 - 1880.0 - 812.8 - 83.3 - - 255 - 255 - 255 - 255 - - - - - - - - 0.235 - - Cellulose Fibre Insulation - 0.038 - 30.0 - 0.99 - 1880.0 - 1.86 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.0125 - - Oriented Strand Board - 0.092 - 650.0 - 0.95 - 1880.0 - 812.8 - 83.3 - - 255 - 255 - 255 - 255 - - - - - - - - - - - 10 - Garage Doors - 2 - 2 - - - 0.1346 - - Polyisocyanurate Board - 0.0288 - 32.5 - 0.99 - 1470.0 - 72.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - - - - 11 - 2X10 R-30 cellulose w/ ZIP R-12 sheathing - 2 - 2 - - - 0.0125 - - Oriented Strand Board - 0.092 - 650.0 - 0.95 - 1880.0 - 812.8 - 83.3 - - 255 - 255 - 255 - 255 - - - - - - - - 0.0508 - - Polyisocyanurate Board - 0.0241 - 32.5 - 0.99 - 1470.0 - 72.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.235 - - Cellulose Fibre Insulation - 0.038 - 30.0 - 0.99 - 1880.0 - 1.86 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.0125 - - Oriented Strand Board - 0.092 - 650.0 - 0.95 - 1880.0 - 812.8 - 83.3 - - 255 - 255 - 255 - 255 - - - - - - - - - - - - - 1 - Alpen Zenith Balanced 6 Casement - false - false - 0.75 - 0.9769 - 0.636 - 0.8 - 0.337 - 0.337 - 1.3291 - 0.0726 - 0.0346 - 1.0789 - 0.0554 - 0.0726 - 0.0346 - 1.0789 - 0.0554 - 0.0726 - 0.0346 - 1.0789 - 0.0554 - 0.0726 - 0.0346 - 1.0789 - 0.0554 - - - 2 - Kohltech Supreme HiGain - false - false - 0.75 - 1.0134 - 0.7893 - 0.8 - 0.612 - 0.612 - 1.3103 - 0.0498 - 0.0346 - 1.1357 - 0.026 - 0.0498 - 0.0346 - 1.1357 - 0.026 - 0.0498 - 0.0346 - 1.1357 - 0.026 - 0.0498 - 0.0346 - 1.1357 - 0.026 - - - 3 - TU2400 - true - false - 0.75 - 2.8654 - 1.6467 - 0.8 - 0.38 - 0.38 - 4.7316 - 0.127 - 0.0502 - 4.4858 - 0.0398 - 0.127 - 0.0502 - 4.4858 - 0.0398 - 0.127 - 0.0502 - 4.4858 - 0.0398 - 0.127 - 0.0502 - 4.4858 - 0.0398 - - - 4 - Wausau - false - false - 0.75 - 1.2908 - 0.9085 - 0.8 - 0.28 - 0.28 - 1.477 - 0.0635 - 0.0519 - 1.1357 - 0.0692 - 0.0635 - 0.0519 - 1.1357 - 0.0692 - 0.0635 - 0.0519 - 1.1357 - 0.0692 - 0.0635 - 0.0519 - 1.1357 - 0.0692 - - - 5 - TubeLite Casement (calc) - true - false - 0.75 - 2.4909 - 1.6467 - 0.8 - 0.38 - 0.38 - 5.5387 - 0.0508 - 0.0502 - 5.2808 - 0.0398 - 0.0508 - 0.0502 - 5.2808 - 0.0398 - 0.0762 - 0.0502 - 5.2808 - 0.0398 - 0.0762 - 0.0502 - 5.2808 - 0.0398 - - - 6 - TubeLite Fixed (calc) - true - false - 0.75 - 2.1428 - 1.6467 - 0.8 - 0.38 - 0.38 - 3.381 - 0.0508 - 0.0502 - 3.123 - 0.0398 - 0.0508 - 0.0502 - 3.123 - 0.0398 - 0.0762 - 0.0502 - 3.123 - 0.0398 - 0.0762 - 0.0502 - 3.123 - 0.0398 - - - 7 - Exterior Door - true - false - 0.75 - 2.8391 - 1.1357 - 0.8 - 0.1 - 0.1 - - 0.0762 - 0.0502 - 0.7382 - 0.0398 - 0.0762 - 0.0502 - 0.7382 - 0.0398 - 0.0762 - 0.0502 - 0.7382 - 0.0398 - 0.0762 - 0.0502 - 0.7382 - 0.0398 - - - - diff --git a/tests/_regenerated_xml/_la_mora.xml b/tests/_regenerated_xml/_la_mora.xml index 026160e..83ddd5d 100644 --- a/tests/_regenerated_xml/_la_mora.xml +++ b/tests/_regenerated_xml/_la_mora.xml @@ -62050,12 +62050,73 @@ 255 - - - + + + 0.038099999999999995 + 2 + + + 0.36829999999999996 + 2 + + + + + 0.038099999999999995 + 2 + + + 2.3622 + 2 + + + 0.038099999999999995 + 2 + + + + + 1 + -1 + + + 1 + -1 + + + 1 + -1 + + + 1 + -1 + + + 1 + 1 + + + 1 + -1 + + - + + + 1 + Fiberglass_True comfort (R4.18/in) + 0.034441624669200005 + 29.999378255520003 + 839.872197351 + + 255 + 255 + 255 + 255 + + + 6 @@ -62143,9 +62204,27 @@ 255 - + + + 0.038099999999999995 + 2 + + + 0.36829999999999996 + 2 + + - + + + 1 + -1 + + + 1 + 1 + + 0.019049999999999997 @@ -62169,7 +62248,21 @@ - + + + 1 + Sprayed Polyurethane Foam; closed cell + 0.0249225826752 + 39.000152839980004 + 1469.9856853935 + + 255 + 255 + 255 + 255 + + + 8 @@ -62194,9 +62287,27 @@ 255 - + + + 0.038099999999999995 + 2 + + + 0.36829999999999996 + 2 + + - + + + 1 + -1 + + + 1 + 3 + + 0.019049999999999997 @@ -62241,7 +62352,21 @@ - + + + 3 + Mineral wool_Comfortbatt + 0.0359992860864 + 60.00035835738 + 849.9205187550001 + + 255 + 255 + 255 + 255 + + + 9 @@ -62401,9 +62526,56 @@ 255 - - - + + + 0.038099999999999995 + 2 + + + 0.36829999999999996 + 2 + + + + + 0.07619999999999999 + 2 + + + 2.54 + 2 + + + 0.0254 + 2 + + + + + 1 + 1 + + + 1 + 1 + + + 1 + 1 + + + 1 + 1 + + + 1 + -1 + + + 1 + 1 + + 0.0127 @@ -62427,7 +62599,21 @@ - + + + 1 + Softwood + 0.089998215216 + 400.00025325408 + 1400.0661156239998 + + 255 + 255 + 255 + 255 + + + 15 @@ -62494,9 +62680,56 @@ 255 - - - + + + 0.038099999999999995 + 2 + + + 0.36829999999999996 + 2 + + + + + 0.038099999999999995 + 2 + + + 2.3622 + 2 + + + 0.038099999999999995 + 2 + + + + + 1 + -1 + + + 1 + -1 + + + 1 + -1 + + + 1 + -1 + + + 1 + 1 + + + 1 + -1 + + 0.03175 @@ -62520,7 +62753,21 @@ - + + + 1 + Fiberglass_True comfort (R4.18/in) + 0.034441624669200005 + 29.999378255520003 + 839.872197351 + + 255 + 255 + 255 + 255 + + + 4 @@ -62629,9 +62876,56 @@ 255 - - - + + + 0.038099999999999995 + 2 + + + 0.36829999999999996 + 2 + + + + + 0.07619999999999999 + 2 + + + 2.54 + 2 + + + 0.0254 + 2 + + + + + 1 + 1 + + + 1 + 1 + + + 1 + 1 + + + 1 + 1 + + + 1 + -1 + + + 1 + 1 + + 0.0127 @@ -62655,7 +62949,21 @@ - + + + 1 + Softwood + 0.089998215216 + 400.00025325408 + 1400.0661156239998 + + 255 + 255 + 255 + 255 + + + 1 @@ -62740,9 +63048,27 @@ 255 - + + + 0.038099999999999995 + 2 + + + 0.36829999999999996 + 2 + + - + + + 1 + -1 + + + 1 + 3 + + 0.1016 @@ -62761,9 +63087,27 @@ 255 - + + + 0.038099999999999995 + 2 + + + 0.36829999999999996 + 2 + + - + + + 1 + -1 + + + 1 + 1 + + 0.019049999999999997 @@ -62808,7 +63152,34 @@ - + + + 3 + Mineral wool_Comfortbatt + 0.0359992860864 + 60.00035835738 + 849.9205187550001 + + 255 + 255 + 255 + 255 + + + + 1 + Sprayed Polyurethane Foam; closed cell + 0.0249225826752 + 39.000152839980004 + 1469.9856853935 + + 255 + 255 + 255 + 255 + + + 10 diff --git a/tests/_source_gh/hbph_test_models.gh b/tests/_source_gh/hbph_test_models.gh index b8e970b..d58e31c 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 5b9ca26..adac2c0 100644 --- a/tests/_test_reference_files_hbjson/Default_Model_Single_Zone.hbjson +++ b/tests/_test_reference_files_hbjson/Default_Model_Single_Zone.hbjson @@ -1,636 +1,223 @@ { + "display_name": "unnamed", + "tolerance": 0.001, + "identifier": "unnamed_eb0eded6", "units": "Meters", "properties": { "revive": { - "type": "ModelRevivePropertiesAbridged", "grid_region": { + "region_code": "", "region_name": "", "description": "", - "filepath": "", - "region_code": "" + "filepath": "" }, "analysis_duration": 50, - "id_num": 0, - "co2_measures": {}, "national_emissions_factors": { - "type": "NationalEmissionsFactors", - "kg_CO2_per_USD": 0.0, "us_trading_rank": 0, - "GDP_million_USD": 0.0, "country_name": "", - "CO2_MT": 0.0 + "kg_CO2_per_USD": 0.0, + "type": "NationalEmissionsFactors", + "CO2_MT": 0.0, + "GDP_million_USD": 0.0 }, - "envelope_labor_cost_fraction": 0.40000000000000002 - }, - "ph": { "id_num": 0, - "type": "ModelPhPropertiesAbridged", - "team": { - "building": { - "license_number": null, - "email": null, - "telephone": null, - "city": null, - "identifier": "fb4369ce-7294-4d04-9db2-d683fb294e78", - "street": null, - "user_data": {}, - "name": null, - "post_code": null, - "display_name": "fb4369ce-7294-4d04-9db2-d683fb294e78" + "co2_measures": {}, + "fuels": { + "NATURAL_GAS": { + "fuel_type": "NATURAL_GAS", + "sale_price_per_kwh": 0.0, + "purchase_price_per_kwh": 0.047100000000000003, + "type": "Fuel", + "annual_base_price": 200.0 }, - "customer": { - "license_number": null, - "email": null, - "telephone": null, - "city": null, - "identifier": "21074063-ec6d-458d-b1cb-5d20e946a32e", - "street": null, - "user_data": {}, - "name": null, - "post_code": null, - "display_name": "21074063-ec6d-458d-b1cb-5d20e946a32e" + "ELECTRICITY": { + "fuel_type": "ELECTRICITY", + "sale_price_per_kwh": 0.13200000000000001, + "purchase_price_per_kwh": 0.17984, + "type": "Fuel", + "annual_base_price": 200.0 + } + }, + "type": "ModelRevivePropertiesAbridged", + "envelope_labor_cost_fraction": 0.40000000000000002 + }, + "radiance": { + "global_modifier_set": { + "wall_set": { + "interior_modifier": "generic_wall_0.50", + "exterior_modifier": "generic_wall_0.50", + "type": "WallModifierSetAbridged" }, - "owner": { - "license_number": null, - "email": null, - "telephone": null, - "city": null, - "identifier": "118fa912-c72f-438f-bbfa-cea96f9451a5", - "street": null, - "user_data": {}, - "name": null, - "post_code": null, - "display_name": "118fa912-c72f-438f-bbfa-cea96f9451a5" + "roof_ceiling_set": { + "interior_modifier": "generic_ceiling_0.80", + "exterior_modifier": "generic_ceiling_0.80", + "type": "RoofCeilingModifierSetAbridged" }, - "identifier": "2522af98-6208-4f45-b790-a6df90af381d", - "designer": { - "license_number": null, - "email": null, - "telephone": null, - "city": null, - "identifier": "79e3a1a1-e6e2-4147-972d-9501cdb381a1", - "street": null, - "user_data": {}, - "name": null, - "post_code": null, - "display_name": "79e3a1a1-e6e2-4147-972d-9501cdb381a1" + "door_set": { + "interior_glass_modifier": "generic_interior_window_vis_0.88", + "overhead_modifier": "generic_opaque_door_0.50", + "interior_modifier": "generic_opaque_door_0.50", + "exterior_modifier": "generic_opaque_door_0.50", + "type": "DoorModifierSetAbridged", + "exterior_glass_modifier": "generic_exterior_window_vis_0.64" }, - "user_data": {}, - "display_name": "2522af98-6208-4f45-b790-a6df90af381d" - }, - "bldg_segments": [ - { - "wind_exposure_type": { - "value": "1-SEVERAL_SIDES_EXPOSED_NO_SCREENING" + "modifiers": [ + { + "type": "Plastic", + "g_reflectance": 0.80000000000000004, + "r_reflectance": 0.80000000000000004, + "specularity": 0.0, + "dependencies": [], + "identifier": "generic_ceiling_0.80", + "b_reflectance": 0.80000000000000004, + "modifier": null, + "roughness": 0.0 }, - "summer_hrv_bypass_mode": { - "value": "4-ALWAYS" + { + "type": "Plastic", + "g_reflectance": 0.5, + "r_reflectance": 0.5, + "specularity": 0.0, + "dependencies": [], + "identifier": "generic_interior_shade_0.50", + "b_reflectance": 0.5, + "modifier": null, + "roughness": 0.0 }, - "set_points": { - "identifier": "a80bace4-5489-43a4-894b-fa98685f8d06", - "user_data": {}, - "summer": 25.0, - "display_name": "a80bace4-5489-43a4-894b-fa98685f8d06", - "winter": 20.0 + { + "dependencies": [], + "modifier": null, + "type": "Glass", + "r_transmissivity": 0.95841543286105957, + "identifier": "generic_interior_window_vis_0.88", + "b_transmissivity": 0.95841543286105957, + "g_transmissivity": 0.95841543286105957, + "refraction_index": null }, - "non_combustible_materials": false, - "num_dwelling_units": 1, - "phi_certification": { - "phpp_version": 9, - "attributes": { - "enerphit_type": "2-ENERGY DEMAND METHOD", - "phpp_version": 9, - "building_use_type": "10-DWELLING", - "occupancy_type": "1-STANDARD (ONLY FOR RESIDENTIAL BUILDINGS)", - "certification_type": "1-PASSIVE HOUSE", - "retrofit_type": "1-NEW BUILDING", - "certification_class": "1-CLASSIC", - "building_category_type": "1-RESIDENTIAL BUILDING", - "tfa_override": null, - "ihg_type": "2-STANDARD", - "primary_energy_type": "2-PER (RENEWABLE)" - }, - "identifier": "f3f12b94-5a53-413c-9fe3-6e9f3b34f37a", - "user_data": {}, - "display_name": "f3f12b94-5a53-413c-9fe3-6e9f3b34f37a" + { + "type": "Plastic", + "g_reflectance": 0.5, + "r_reflectance": 0.5, + "specularity": 0.0, + "dependencies": [], + "identifier": "generic_wall_0.50", + "b_reflectance": 0.5, + "modifier": null, + "roughness": 0.0 }, - "thermal_bridges": {}, - "phius_certification": { - "PHIUS2021_cooling_load": 10.0, - "PHIUS2021_heating_demand": 15.0, - "building_use_type": { - "value": "1-RESIDENTIAL" - }, - "int_gains_toilet_room_util_pat": null, - "icfa_override": null, - "localization_selection_type": 2, - "certification_program": { - "value": "7-PHIUS 2021 CORE" - }, - "building_type": { - "value": "1-NEW_CONSTRUCTION" - }, - "PHIUS2021_heating_load": 10.0, - "int_gains_evap_per_person": 15, - "building_status": { - "value": "1-IN_PLANNING" - }, - "int_gains_flush_heat_loss": true, - "int_gains_num_toilets": 1, - "identifier": "c884ab32-4017-422c-98d3-385c0a51b25e", - "PHIUS2021_cooling_demand": 15.0, - "user_data": {}, - "building_category_type": { - "value": "1-RESIDENTIAL BUILDING" - }, - "int_gains_dhw_marginal_perf_ratio": null, - "display_name": "c884ab32-4017-422c-98d3-385c0a51b25e", - "int_gains_use_school_defaults": false + { + "dependencies": [], + "modifier": null, + "type": "Glass", + "r_transmissivity": 0.69757618153843315, + "identifier": "generic_exterior_window_vis_0.64", + "b_transmissivity": 0.69757618153843315, + "g_transmissivity": 0.69757618153843315, + "refraction_index": null }, - "identifier": "3e7132cc-0f1a-4e6e-a27b-35c17cda15f7", - "site": { - "location": { - "site_elevation": null, - "identifier": "2c465ee6-2232-40ac-ac70-6e3fa8c503bf", - "hours_from_UTC": -4, - "user_data": {}, - "latitude": 40.600000000000001, - "longitude": -73.799999999999997, - "climate_zone": 1, - "display_name": "2c465ee6-2232-40ac-ac70-6e3fa8c503bf" + { + "type": "Plastic", + "g_reflectance": 0.5, + "r_reflectance": 0.5, + "specularity": 0.0, + "dependencies": [], + "identifier": "generic_opaque_door_0.50", + "b_reflectance": 0.5, + "modifier": null, + "roughness": 0.0 + }, + { + "type": "Plastic", + "g_reflectance": 0.20000000000000001, + "r_reflectance": 0.20000000000000001, + "specularity": 0.0, + "dependencies": [], + "identifier": "generic_floor_0.20", + "b_reflectance": 0.20000000000000001, + "modifier": null, + "roughness": 0.0 + }, + { + "type": "Plastic", + "g_reflectance": 0.34999999999999998, + "r_reflectance": 0.34999999999999998, + "specularity": 0.0, + "dependencies": [], + "identifier": "generic_exterior_shade_0.35", + "b_reflectance": 0.34999999999999998, + "modifier": null, + "roughness": 0.0 + }, + { + "specularity": 0.0, + "type": "Trans", + "identifier": "air_boundary", + "r_reflectance": 1.0, + "g_reflectance": 1.0, + "b_reflectance": 1.0, + "transmitted_diff": 1.0, + "modifier": null, + "transmitted_spec": 1.0, + "dependencies": [], + "roughness": 0.0 + }, + { + "type": "Plastic", + "g_reflectance": 0.20000000000000001, + "r_reflectance": 0.20000000000000001, + "specularity": 0.0, + "dependencies": [], + "identifier": "generic_context_0.20", + "b_reflectance": 0.20000000000000001, + "modifier": null, + "roughness": 0.0 + } + ], + "floor_set": { + "interior_modifier": "generic_floor_0.20", + "exterior_modifier": "generic_floor_0.20", + "type": "FloorModifierSetAbridged" + }, + "air_boundary_modifier": "air_boundary", + "shade_set": { + "interior_modifier": "generic_interior_shade_0.50", + "exterior_modifier": "generic_exterior_shade_0.35", + "type": "ShadeModifierSetAbridged" + }, + "type": "GlobalModifierSet", + "aperture_set": { + "skylight_modifier": "generic_exterior_window_vis_0.64", + "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": "ApertureModifierSetAbridged" + }, + "context_modifier": "generic_context_0.20" + }, + "modifier_sets": [], + "type": "ModelRadianceProperties", + "modifiers": [] + }, + "energy": { + "schedules": [ + { + "default_day_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", + "day_schedules": [ + { + "times": [ + [ + 0, + 0 + ] + ], + "identifier": "OfficeMedium INFIL_SCH_PNNL_Default", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 1.0 + ] }, - "phpp_library_codes": { - "country_code": "US-United States of America", - "identifier": "1342affc-8e57-4ae6-a551-3bbc710b64e3", - "region_code": "New York", - "user_data": {}, - "display_name": "US0055b-New York", - "dataset_name": "US0055b-New York" - }, - "identifier": "8b68d808-100b-450d-94df-e9d5931cb5d5", - "user_data": {}, - "climate": { - "monthly_temps": { - "ground_temps": { - "february": 0.0, - "april": 0.0, - "march": 0.0, - "august": 0.0, - "december": 0.0, - "identifier": "0a188827-bad9-45f5-937c-1251ea107eee", - "november": 0.0, - "user_data": {}, - "may": 0.0, - "october": 0.0, - "july": 0.0, - "january": 0.0, - "june": 0.0, - "september": 0.0, - "display_name": "0a188827-bad9-45f5-937c-1251ea107eee" - }, - "sky_temps": { - "february": 0.0, - "april": 0.0, - "march": 0.0, - "august": 0.0, - "december": 0.0, - "identifier": "688b4a29-bc24-4568-898c-de2904396c4d", - "november": 0.0, - "user_data": {}, - "may": 0.0, - "october": 0.0, - "july": 0.0, - "january": 0.0, - "june": 0.0, - "september": 0.0, - "display_name": "688b4a29-bc24-4568-898c-de2904396c4d" - }, - "dewpoints": { - "february": 0.0, - "april": 0.0, - "march": 0.0, - "august": 0.0, - "december": 0.0, - "identifier": "5f4f8f6a-02f8-4859-8b7d-a16b52882fdf", - "november": 0.0, - "user_data": {}, - "may": 0.0, - "october": 0.0, - "july": 0.0, - "january": 0.0, - "june": 0.0, - "september": 0.0, - "display_name": "5f4f8f6a-02f8-4859-8b7d-a16b52882fdf" - }, - "identifier": "5f63ba53-c20d-4a6b-95c6-c4d431ae4b37", - "user_data": {}, - "air_temps": { - "february": 0.0, - "april": 0.0, - "march": 0.0, - "august": 0.0, - "december": 0.0, - "identifier": "80656016-f238-47bd-8192-5b15ff742916", - "november": 0.0, - "user_data": {}, - "may": 0.0, - "october": 0.0, - "july": 0.0, - "january": 0.0, - "june": 0.0, - "september": 0.0, - "display_name": "80656016-f238-47bd-8192-5b15ff742916" - }, - "display_name": "5f63ba53-c20d-4a6b-95c6-c4d431ae4b37" - }, - "station_elevation": 0.0, - "monthly_radiation": { - "west": { - "february": 0.0, - "april": 0.0, - "march": 0.0, - "august": 0.0, - "december": 0.0, - "identifier": "c405540a-21fa-4480-982a-205582ec3162", - "november": 0.0, - "user_data": {}, - "may": 0.0, - "october": 0.0, - "july": 0.0, - "january": 0.0, - "june": 0.0, - "september": 0.0, - "display_name": "c405540a-21fa-4480-982a-205582ec3162" - }, - "east": { - "february": 0.0, - "april": 0.0, - "march": 0.0, - "august": 0.0, - "december": 0.0, - "identifier": "405a50ef-f9f1-4253-ac96-f41c6ef053e0", - "november": 0.0, - "user_data": {}, - "may": 0.0, - "october": 0.0, - "july": 0.0, - "january": 0.0, - "june": 0.0, - "september": 0.0, - "display_name": "405a50ef-f9f1-4253-ac96-f41c6ef053e0" - }, - "identifier": "feb14422-eb50-4468-b7bb-644937fc658c", - "north": { - "february": 0.0, - "april": 0.0, - "march": 0.0, - "august": 0.0, - "december": 0.0, - "identifier": "8575d976-ce7d-46f0-b93a-8f9f53421363", - "november": 0.0, - "user_data": {}, - "may": 0.0, - "october": 0.0, - "july": 0.0, - "january": 0.0, - "june": 0.0, - "september": 0.0, - "display_name": "8575d976-ce7d-46f0-b93a-8f9f53421363" - }, - "user_data": {}, - "south": { - "february": 0.0, - "april": 0.0, - "march": 0.0, - "august": 0.0, - "december": 0.0, - "identifier": "36b8daa7-5360-4104-b7c0-b67a64f9af4c", - "november": 0.0, - "user_data": {}, - "may": 0.0, - "october": 0.0, - "july": 0.0, - "january": 0.0, - "june": 0.0, - "september": 0.0, - "display_name": "36b8daa7-5360-4104-b7c0-b67a64f9af4c" - }, - "display_name": "feb14422-eb50-4468-b7bb-644937fc658c", - "glob": { - "february": 0.0, - "april": 0.0, - "march": 0.0, - "august": 0.0, - "december": 0.0, - "identifier": "db12f99a-b69a-46a0-95d6-219de7144341", - "november": 0.0, - "user_data": {}, - "may": 0.0, - "october": 0.0, - "july": 0.0, - "january": 0.0, - "june": 0.0, - "september": 0.0, - "display_name": "db12f99a-b69a-46a0-95d6-219de7144341" - } - }, - "summer_daily_temperature_swing": 8.0, - "average_wind_speed": 4.0, - "identifier": "7ca8448a-3683-4f4e-8177-a87ec7a4ba2e", - "ground": { - "ground_density": 2000, - "ground_heat_capacity": 1000, - "identifier": "e00be75a-d448-4370-a29d-ee6ee9155b40", - "user_data": {}, - "depth_groundwater": 3, - "flow_rate_groundwater": 0.050000000000000003, - "ground_thermal_conductivity": 2, - "display_name": "e00be75a-d448-4370-a29d-ee6ee9155b40" - }, - "user_data": {}, - "peak_loads": { - "cooling_load_2": { - "dewpoint": null, - "sky_temp": null, - "rad_south": 0.0, - "rad_east": 0.0, - "ground_temp": null, - "identifier": "86914208-b954-4a36-9ea9-5a2bfe10db0f", - "user_data": {}, - "rad_west": 0.0, - "rad_global": 0.0, - "rad_north": 0.0, - "display_name": "86914208-b954-4a36-9ea9-5a2bfe10db0f", - "temp": 0.0 - }, - "cooling_load_1": { - "dewpoint": null, - "sky_temp": null, - "rad_south": 0.0, - "rad_east": 0.0, - "ground_temp": null, - "identifier": "a1d73f93-8732-41d1-9602-dbe55b87f9d7", - "user_data": {}, - "rad_west": 0.0, - "rad_global": 0.0, - "rad_north": 0.0, - "display_name": "a1d73f93-8732-41d1-9602-dbe55b87f9d7", - "temp": 0.0 - }, - "identifier": "f1849687-c736-45c0-ae89-36b4afbabff6", - "user_data": {}, - "heat_load_2": { - "dewpoint": null, - "sky_temp": null, - "rad_south": 0.0, - "rad_east": 0.0, - "ground_temp": null, - "identifier": "5f37c0c9-99ff-4885-b4a3-bd9a0aa9ae50", - "user_data": {}, - "rad_west": 0.0, - "rad_global": 0.0, - "rad_north": 0.0, - "display_name": "5f37c0c9-99ff-4885-b4a3-bd9a0aa9ae50", - "temp": 0.0 - }, - "heat_load_1": { - "dewpoint": null, - "sky_temp": null, - "rad_south": 0.0, - "rad_east": 0.0, - "ground_temp": null, - "identifier": "2a35a01d-952a-4ac5-b64a-866f74f4204a", - "user_data": {}, - "rad_west": 0.0, - "rad_global": 0.0, - "rad_north": 0.0, - "display_name": "2a35a01d-952a-4ac5-b64a-866f74f4204a", - "temp": 0.0 - }, - "display_name": "f1849687-c736-45c0-ae89-36b4afbabff6" - }, - "display_name": "New York" - }, - "display_name": "8b68d808-100b-450d-94df-e9d5931cb5d5" - }, - "mech_room_temp": 20.0, - "user_data": {}, - "source_energy_factors": { - "factors": [] - }, - "name": "Unnamed_Bldg_Segment", - "co2e_factors": { - "factors": [] - }, - "display_name": "Unnamed_Bldg_Segment", - "num_floor_levels": 1 - } - ] - }, - "energy": { - "program_types": [ - { - "lighting": { - "schedule": "Generic Office Lighting", - "return_air_fraction": 0.0, - "properties": { - "ph": { - "id_num": 0, - "type": "LightingPhProperties", - "target_lux_height": 0.80000000000000004, - "target_lux": 300 - }, - "type": "LightingProperties", - "revive": { - "cost": 0.0, - "type": "LightingReviveProperties", - "labor_fraction": 0.40000000000000002, - "id_num": 0, - "lifetime_years": 25 - } - }, - "type": "LightingAbridged", - "radiant_fraction": 0.69999999999999996, - "identifier": "Generic Office Lighting", - "watts_per_area": 10.550000000000001, - "visible_fraction": 0.20000000000000001 - }, - "electric_equipment": { - "schedule": "Generic Office Equipment", - "properties": { - "ph": { - "equipment_collection": { - "equipment_set": {} - }, - "type": "ElectricEquipmentPhProperties" - }, - "type": "ElectricEquipmentProperties", - "revive": { - "id_num": 0, - "type": "ElectricEquipmentReviveProperties" - } - }, - "type": "ElectricEquipmentAbridged", - "radiant_fraction": 0.5, - "identifier": "Generic Office Equipment", - "lost_fraction": 0.0, - "watts_per_area": 10.330000000000000, - "latent_fraction": 0.0 - }, - "type": "ProgramTypeAbridged", - "infiltration": { - "type": "InfiltrationAbridged", - "identifier": "Generic Office Infiltration", - "flow_per_exterior_area": 0.00022660000000000001, - "schedule": "Generic Office Infiltration" - }, - "setpoint": { - "type": "SetpointAbridged", - "identifier": "Generic Office Setpoints", - "heating_schedule": "Generic Office Heating", - "cooling_schedule": "Generic Office Cooling" - }, - "ventilation": { - "flow_per_area": 0.00030499999999999999, - "type": "VentilationAbridged", - "identifier": "Generic Office Ventilation", - "flow_per_person": 0.0023600000000000001 - }, - "identifier": "Generic Office Program", - "people": { - "occupancy_schedule": "Generic Office Occupancy", - "properties": { - "ph": { - "number_people": 0.0, - "dwellings": { - "identifier": "dfea3746-3079-4e46-b42d-21e135a8ba1e", - "num_dwellings": 0 - }, - "type": "PeoplePhProperties", - "number_bedrooms": 0, - "id_num": 0 - }, - "type": "PeopleProperties", - "revive": { - "id_num": 0, - "type": "PeopleReviveProperties" - } - }, - "type": "PeopleAbridged", - "radiant_fraction": 0.29999999999999999, - "people_per_area": 0.056500000000000002, - "identifier": "Generic Office People", - "activity_schedule": "Seated Adult Activity", - "latent_fraction": { - "type": "Autocalculate" - } - } - } - ], - "type": "ModelEnergyProperties", - "hvacs": [ - { - "heating_air_temperature": 50.0, - "sensible_heat_recovery": 0.0, - "economizer_type": "DifferentialDryBulb", - "properties": { - "revive": { - "equipment_collection": { - "type": "PhiusReviveHVACEquipmentCollection", - "equipment": [] - }, - "type": "IdealAirSystemReviveProperties" - }, - "type": "IdealAirSystemProperties" - }, - "type": "IdealAirSystemAbridged", - "latent_heat_recovery": 0.0, - "demand_controlled_ventilation": false, - "cooling_air_temperature": 13.0, - "identifier": "Room_1_96fbac06 Ideal Loads Air System", - "heating_limit": { - "type": "Autosize" - }, - "cooling_limit": { - "type": "Autosize" - } - } - ], - "constructions": [], - "shws": [], - "schedules": [ - { - "summer_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", - "properties": { - "ph": { - "operating_weeks_year": 52.142899999999997, - "type": "ScheduleRulesetPhProperties", - "operating_days_wk": 7.0, - "id_num": 0, - "operating_periods": { - "collection": [] - } - }, - "type": "ScheduleRulesetProperties", - "revive": { - "id_num": 0, - "type": "ScheduleRulesetReviveProperties" - } - }, - "schedule_type_limit": "Fractional", - "type": "ScheduleRulesetAbridged", - "default_day_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", - "identifier": "Generic Office Equipment", - "schedule_rules": [ - { - "apply_monday": true, - "start_date": [ - 1, - 1 - ], - "type": "ScheduleRuleAbridged", - "apply_wednesday": true, - "apply_tuesday": true, - "apply_friday": true, - "apply_thursday": true, - "apply_sunday": false, - "end_date": [ - 12, - 31 - ], - "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", - "apply_saturday": false - }, - { - "apply_monday": false, - "start_date": [ - 1, - 1 - ], - "type": "ScheduleRuleAbridged", - "apply_wednesday": false, - "apply_tuesday": false, - "apply_friday": false, - "apply_thursday": false, - "apply_sunday": false, - "end_date": [ - 12, - 31 - ], - "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", - "apply_saturday": true - } - ], - "holiday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", - "winter_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", - "day_schedules": [ { - "values": [ - 0.2307553806, - 0.28810717499999999, - 0.2307553806 - ], - "type": "ScheduleDay", "times": [ [ 0, @@ -641,51 +228,20 @@ 0 ], [ - 18, + 22, 0 ] ], - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", - "interpolate": false - }, - { - "values": [ - 1.0 - ], + "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ] - ], - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", - "interpolate": false - }, - { + "interpolate": false, "values": [ - 0.0 - ], - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ] - ], - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", - "interpolate": false + 1.0, + 0.25, + 1.0 + ] }, { - "values": [ - 0.2307553806, - 0.38123479599999999, - 0.47654349499999998, - 0.33358044650000002, - 0.28592609699999999, - 0.2307553806 - ], - "type": "ScheduleDay", "times": [ [ 0, @@ -696,279 +252,197 @@ 0 ], [ - 8, - 0 - ], - [ - 12, - 0 - ], - [ - 17, - 0 - ], - [ - 19, + 18, 0 ] ], - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", - "interpolate": false + "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 1.0, + 0.25, + 1.0 + ] }, { - "values": [ - 0.30767384079999999, - 0.38123479599999999, - 0.85777829100000003, - 0.76246959199999997, - 0.85777829100000003, - 0.47654349499999998, - 0.38123479599999999 - ], - "type": "ScheduleDay", "times": [ [ 0, 0 ], [ - 6, - 0 - ], - [ - 8, - 0 - ], - [ - 12, - 0 - ], - [ - 13, - 0 - ], - [ - 17, + 6, 0 ], [ - 18, + 22, 0 ] ], - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", - "interpolate": false - } - ] - }, - { - "properties": { - "ph": { - "operating_weeks_year": 52.142899999999997, - "type": "ScheduleRulesetPhProperties", - "operating_days_wk": 7.0, - "id_num": 0, - "operating_periods": { - "collection": [] - } + "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 1.0, + 0.25, + 1.0 + ] }, - "type": "ScheduleRulesetProperties", - "revive": { - "id_num": 0, - "type": "ScheduleRulesetReviveProperties" - } - }, - "schedule_type_limit": "Activity Level", - "type": "ScheduleRulesetAbridged", - "default_day_schedule": "Seated Adult Activity_Day Schedule", - "identifier": "Seated Adult Activity", - "day_schedules": [ { - "values": [ - 120.0 - ], - "type": "ScheduleDay", "times": [ [ 0, 0 + ], + [ + 6, + 0 + ], + [ + 18, + 0 ] ], - "identifier": "Seated Adult Activity_Day Schedule", - "interpolate": false - } - ] - }, - { - "summer_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", - "properties": { - "ph": { - "operating_weeks_year": 52.142899999999997, - "type": "ScheduleRulesetPhProperties", - "operating_days_wk": 7.0, - "id_num": 0, - "operating_periods": { - "collection": [] - } - }, - "type": "ScheduleRulesetProperties", - "revive": { - "id_num": 0, - "type": "ScheduleRulesetReviveProperties" + "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 1.0, + 0.25, + 1.0 + ] } - }, + ], + "holiday_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", + "winter_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", "schedule_type_limit": "Fractional", - "type": "ScheduleRulesetAbridged", - "default_day_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", - "identifier": "Generic Office Lighting", + "identifier": "Generic Office Infiltration", + "summer_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", "schedule_rules": [ { - "apply_monday": true, - "start_date": [ - 1, - 1 - ], - "type": "ScheduleRuleAbridged", - "apply_wednesday": true, "apply_tuesday": true, "apply_friday": true, - "apply_thursday": true, "apply_sunday": false, + "apply_saturday": false, + "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Wkdy", + "apply_monday": true, "end_date": [ 12, 31 ], - "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", - "apply_saturday": false - }, - { - "apply_monday": false, "start_date": [ 1, 1 ], - "type": "ScheduleRuleAbridged", - "apply_wednesday": false, + "apply_thursday": true, + "apply_wednesday": true, + "type": "ScheduleRuleAbridged" + }, + { "apply_tuesday": false, "apply_friday": false, - "apply_thursday": false, "apply_sunday": false, + "apply_saturday": true, + "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Sat", + "apply_monday": false, "end_date": [ 12, 31 ], - "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", - "apply_saturday": true + "start_date": [ + 1, + 1 + ], + "apply_thursday": false, + "apply_wednesday": false, + "type": "ScheduleRuleAbridged" } ], - "holiday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", - "winter_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", + "type": "ScheduleRulesetAbridged", + "properties": { + "ph": { + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] + }, + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997 + }, + "type": "ScheduleRulesetProperties", + "revive": { + "type": "ScheduleRulesetReviveProperties", + "id_num": 0 + } + } + }, + { + "default_day_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", "day_schedules": [ { - "values": [ - 0.050000000000000003, - 0.04311628, - 0.050000000000000003 - ], - "type": "ScheduleDay", "times": [ [ 0, 0 - ], - [ - 6, - 0 - ], - [ - 18, - 0 ] ], - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", - "interpolate": false - }, - { - "values": [ - 1.0 - ], + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ] - ], - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", - "interpolate": false + "interpolate": false, + "values": [ + 15.600000000000000 + ] }, { - "values": [ - 0.0 - ], - "type": "ScheduleDay", "times": [ [ 0, 0 ] ], - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", - "interpolate": false + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 15.600000000000000 + ] }, { - "values": [ - 0.050000000000000003, - 0.08623256, - 0.25869767999999999, - 0.12934883999999999, - 0.04311628, - 0.050000000000000003 - ], - "type": "ScheduleDay", "times": [ [ 0, 0 ], [ - 6, - 0 - ], - [ - 8, + 5, 0 ], [ - 12, + 6, 0 ], [ - 17, + 7, 0 ], [ - 19, + 22, 0 ] ], - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", - "interpolate": false + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 15.600000000000000, + 17.600000000000001, + 19.600000000000001, + 21.0, + 15.600000000000000 + ] }, { - "values": [ - 0.050000000000000003, - 0.10000000000000001, - 0.08623256, - 0.25869767999999999, - 0.77609304000000001, - 0.43116280000000001, - 0.25869767999999999, - 0.17246512, - 0.08623256, - 0.04311628 - ], - "type": "ScheduleDay", "times": [ [ 0, @@ -987,105 +461,123 @@ 0 ], [ - 8, + 22, 0 - ], + ] + ], + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 15.600000000000000, + 17.800000000000001, + 20.0, + 21.0, + 15.600000000000000 + ] + }, + { + "times": [ [ - 17, + 0, 0 ], [ - 18, + 5, 0 ], [ - 20, + 6, 0 ], [ - 22, + 7, 0 ], [ - 23, - 0 - ] - ], - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", - "interpolate": false - } - ] - }, - { - "summer_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", - "properties": { - "ph": { - "operating_weeks_year": 52.142899999999997, - "type": "ScheduleRulesetPhProperties", - "operating_days_wk": 7.0, - "id_num": 0, - "operating_periods": { - "collection": [] - } - }, - "type": "ScheduleRulesetProperties", - "revive": { - "id_num": 0, - "type": "ScheduleRulesetReviveProperties" + 17, + 0 + ] + ], + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 15.600000000000000, + 17.800000000000001, + 20.0, + 21.0, + 15.600000000000000 + ] } - }, + ], + "holiday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", + "winter_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", "schedule_type_limit": "Temperature", - "type": "ScheduleRulesetAbridged", - "default_day_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", - "identifier": "Generic Office Cooling", + "identifier": "Generic Office Heating", + "summer_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", "schedule_rules": [ { - "apply_monday": true, - "start_date": [ - 1, - 1 - ], - "type": "ScheduleRuleAbridged", - "apply_wednesday": true, "apply_tuesday": true, "apply_friday": true, - "apply_thursday": true, "apply_sunday": false, + "apply_saturday": false, + "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", + "apply_monday": true, "end_date": [ 12, 31 ], - "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", - "apply_saturday": false - }, - { - "apply_monday": false, "start_date": [ 1, 1 ], - "type": "ScheduleRuleAbridged", - "apply_wednesday": false, + "apply_thursday": true, + "apply_wednesday": true, + "type": "ScheduleRuleAbridged" + }, + { "apply_tuesday": false, "apply_friday": false, - "apply_thursday": false, "apply_sunday": false, + "apply_saturday": true, + "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", + "apply_monday": false, "end_date": [ 12, 31 ], - "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", - "apply_saturday": true + "start_date": [ + 1, + 1 + ], + "apply_thursday": false, + "apply_wednesday": false, + "type": "ScheduleRuleAbridged" } ], - "holiday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", - "winter_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", + "type": "ScheduleRulesetAbridged", + "properties": { + "ph": { + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] + }, + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997 + }, + "type": "ScheduleRulesetProperties", + "revive": { + "type": "ScheduleRulesetReviveProperties", + "id_num": 0 + } + } + }, + { + "default_day_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", "day_schedules": [ { - "values": [ - 26.699999999999999 - ], - "type": "ScheduleDay", "times": [ [ 0, @@ -1093,17 +585,13 @@ ] ], "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", - "interpolate": false - }, - { + "type": "ScheduleDay", + "interpolate": false, "values": [ - 26.699999999999999, - 25.699999999999999, - 25.0, - 24.0, 26.699999999999999 - ], - "type": "ScheduleDay", + ] + }, + { "times": [ [ 0, @@ -1127,13 +615,17 @@ ] ], "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", - "interpolate": false - }, - { + "type": "ScheduleDay", + "interpolate": false, "values": [ + 26.699999999999999, + 25.699999999999999, + 25.0, + 24.0, 26.699999999999999 - ], - "type": "ScheduleDay", + ] + }, + { "times": [ [ 0, @@ -1141,17 +633,13 @@ ] ], "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", - "interpolate": false - }, - { + "type": "ScheduleDay", + "interpolate": false, "values": [ - 26.699999999999999, - 25.600000000000001, - 25.0, - 24.0, 26.699999999999999 - ], - "type": "ScheduleDay", + ] + }, + { "times": [ [ 0, @@ -1175,17 +663,17 @@ ] ], "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", - "interpolate": false - }, - { + "type": "ScheduleDay", + "interpolate": false, "values": [ 26.699999999999999, - 25.699999999999999, + 25.600000000000001, 25.0, 24.0, 26.699999999999999 - ], - "type": "ScheduleDay", + ] + }, + { "times": [ [ 0, @@ -1209,82 +697,84 @@ ] ], "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", - "interpolate": false - } - ] - }, - { - "summer_designday_schedule": "OfficeMedium BLDG_OCC_SCH_SmrDsn", - "properties": { - "ph": { - "operating_weeks_year": 52.142899999999997, - "type": "ScheduleRulesetPhProperties", - "operating_days_wk": 7.0, - "id_num": 0, - "operating_periods": { - "collection": [] - } - }, - "type": "ScheduleRulesetProperties", - "revive": { - "id_num": 0, - "type": "ScheduleRulesetReviveProperties" + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 26.699999999999999, + 25.699999999999999, + 25.0, + 24.0, + 26.699999999999999 + ] } - }, - "schedule_type_limit": "Fractional", - "type": "ScheduleRulesetAbridged", - "default_day_schedule": "OfficeMedium BLDG_OCC_SCH_Default", - "identifier": "Generic Office Occupancy", + ], + "holiday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", + "winter_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", + "schedule_type_limit": "Temperature", + "identifier": "Generic Office Cooling", + "summer_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", "schedule_rules": [ { - "apply_monday": true, - "start_date": [ - 1, - 1 - ], - "type": "ScheduleRuleAbridged", - "apply_wednesday": true, "apply_tuesday": true, "apply_friday": true, - "apply_thursday": true, "apply_sunday": false, + "apply_saturday": false, + "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", + "apply_monday": true, "end_date": [ 12, 31 ], - "schedule_day": "OfficeMedium BLDG_OCC_SCH_Wkdy", - "apply_saturday": false - }, - { - "apply_monday": false, "start_date": [ 1, 1 ], - "type": "ScheduleRuleAbridged", - "apply_wednesday": false, + "apply_thursday": true, + "apply_wednesday": true, + "type": "ScheduleRuleAbridged" + }, + { "apply_tuesday": false, "apply_friday": false, - "apply_thursday": false, "apply_sunday": false, + "apply_saturday": true, + "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", + "apply_monday": false, "end_date": [ 12, 31 ], - "schedule_day": "OfficeMedium BLDG_OCC_SCH_Sat", - "apply_saturday": true + "start_date": [ + 1, + 1 + ], + "apply_thursday": false, + "apply_wednesday": false, + "type": "ScheduleRuleAbridged" } ], - "holiday_schedule": "OfficeMedium BLDG_OCC_SCH_Default", - "winter_designday_schedule": "OfficeMedium BLDG_OCC_SCH_WntrDsn", + "type": "ScheduleRulesetAbridged", + "properties": { + "ph": { + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] + }, + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997 + }, + "type": "ScheduleRulesetProperties", + "revive": { + "type": "ScheduleRulesetReviveProperties", + "id_num": 0 + } + } + }, + { + "default_day_schedule": "OfficeMedium BLDG_OCC_SCH_Default", "day_schedules": [ { - "values": [ - 0.0, - 0.050000000000000003, - 0.0 - ], - "type": "ScheduleDay", "times": [ [ 0, @@ -1300,15 +790,15 @@ ] ], "identifier": "OfficeMedium BLDG_OCC_SCH_Default", - "interpolate": false - }, - { + "type": "ScheduleDay", + "interpolate": false, "values": [ 0.0, - 1.0, - 0.050000000000000003 - ], - "type": "ScheduleDay", + 0.050000000000000003, + 0.0 + ] + }, + { "times": [ [ 0, @@ -1324,13 +814,15 @@ ] ], "identifier": "OfficeMedium BLDG_OCC_SCH_SmrDsn", - "interpolate": false + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 0.0, + 1.0, + 0.050000000000000003 + ] }, { - "values": [ - 0.0 - ], - "type": "ScheduleDay", "times": [ [ 0, @@ -1338,21 +830,13 @@ ] ], "identifier": "OfficeMedium BLDG_OCC_SCH_WntrDsn", - "interpolate": false + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 0.0 + ] }, { - "values": [ - 0.0, - 0.10000000000000001, - 0.20000000000000001, - 0.94999999999999996, - 0.5, - 0.94999999999999996, - 0.29999999999999999, - 0.10000000000000001, - 0.050000000000000003 - ], - "type": "ScheduleDay", "times": [ [ 0, @@ -1392,18 +876,21 @@ ] ], "identifier": "OfficeMedium BLDG_OCC_SCH_Wkdy", - "interpolate": false - }, - { + "type": "ScheduleDay", + "interpolate": false, "values": [ 0.0, 0.10000000000000001, + 0.20000000000000001, + 0.94999999999999996, + 0.5, + 0.94999999999999996, 0.29999999999999999, 0.10000000000000001, - 0.050000000000000003, - 0.0 - ], - "type": "ScheduleDay", + 0.050000000000000003 + ] + }, + { "times": [ [ 0, @@ -1431,96 +918,123 @@ ] ], "identifier": "OfficeMedium BLDG_OCC_SCH_Sat", - "interpolate": false - } - ] - }, - { - "summer_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", - "properties": { - "ph": { - "operating_weeks_year": 52.142899999999997, - "type": "ScheduleRulesetPhProperties", - "operating_days_wk": 7.0, - "id_num": 0, - "operating_periods": { - "collection": [] - } - }, - "type": "ScheduleRulesetProperties", - "revive": { - "id_num": 0, - "type": "ScheduleRulesetReviveProperties" + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 0.0, + 0.10000000000000001, + 0.29999999999999999, + 0.10000000000000001, + 0.050000000000000003, + 0.0 + ] } - }, + ], + "holiday_schedule": "OfficeMedium BLDG_OCC_SCH_Default", + "winter_designday_schedule": "OfficeMedium BLDG_OCC_SCH_WntrDsn", "schedule_type_limit": "Fractional", - "type": "ScheduleRulesetAbridged", - "default_day_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", - "identifier": "Generic Office Infiltration", + "identifier": "Generic Office Occupancy", + "summer_designday_schedule": "OfficeMedium BLDG_OCC_SCH_SmrDsn", "schedule_rules": [ { - "apply_monday": true, - "start_date": [ - 1, - 1 - ], - "type": "ScheduleRuleAbridged", - "apply_wednesday": true, "apply_tuesday": true, "apply_friday": true, - "apply_thursday": true, "apply_sunday": false, + "apply_saturday": false, + "schedule_day": "OfficeMedium BLDG_OCC_SCH_Wkdy", + "apply_monday": true, "end_date": [ 12, 31 ], - "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Wkdy", - "apply_saturday": false - }, - { - "apply_monday": false, "start_date": [ 1, 1 ], - "type": "ScheduleRuleAbridged", - "apply_wednesday": false, + "apply_thursday": true, + "apply_wednesday": true, + "type": "ScheduleRuleAbridged" + }, + { "apply_tuesday": false, "apply_friday": false, - "apply_thursday": false, "apply_sunday": false, + "apply_saturday": true, + "schedule_day": "OfficeMedium BLDG_OCC_SCH_Sat", + "apply_monday": false, "end_date": [ 12, 31 ], - "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Sat", - "apply_saturday": true + "start_date": [ + 1, + 1 + ], + "apply_thursday": false, + "apply_wednesday": false, + "type": "ScheduleRuleAbridged" } ], - "holiday_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", - "winter_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", + "type": "ScheduleRulesetAbridged", + "properties": { + "ph": { + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] + }, + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997 + }, + "type": "ScheduleRulesetProperties", + "revive": { + "type": "ScheduleRulesetReviveProperties", + "id_num": 0 + } + } + }, + { + "default_day_schedule": "Seated Adult Activity_Day Schedule", "day_schedules": [ { - "values": [ - 1.0 - ], - "type": "ScheduleDay", "times": [ [ 0, 0 ] ], - "identifier": "OfficeMedium INFIL_SCH_PNNL_Default", - "interpolate": false + "identifier": "Seated Adult Activity_Day Schedule", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 120.0 + ] + } + ], + "schedule_type_limit": "Activity Level", + "identifier": "Seated Adult Activity", + "type": "ScheduleRulesetAbridged", + "properties": { + "ph": { + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] + }, + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997 }, + "type": "ScheduleRulesetProperties", + "revive": { + "type": "ScheduleRulesetReviveProperties", + "id_num": 0 + } + } + }, + { + "default_day_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", + "day_schedules": [ { - "values": [ - 1.0, - 0.25, - 1.0 - ], - "type": "ScheduleDay", "times": [ [ 0, @@ -1531,20 +1045,48 @@ 0 ], [ - 22, + 18, 0 ] ], - "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", - "interpolate": false + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 0.2307553806, + 0.28810717499999999, + 0.2307553806 + ] }, { + "times": [ + [ + 0, + 0 + ] + ], + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", + "type": "ScheduleDay", + "interpolate": false, "values": [ - 1.0, - 0.25, 1.0 + ] + }, + { + "times": [ + [ + 0, + 0 + ] ], + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", "type": "ScheduleDay", + "interpolate": false, + "values": [ + 0.0 + ] + }, + { "times": [ [ 0, @@ -1555,44 +1097,35 @@ 0 ], [ - 18, + 8, 0 - ] - ], - "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", - "interpolate": false - }, - { - "values": [ - 1.0, - 0.25, - 1.0 - ], - "type": "ScheduleDay", - "times": [ + ], [ - 0, + 12, 0 ], [ - 6, + 17, 0 ], [ - 22, + 19, 0 ] ], - "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy", - "interpolate": false + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 0.2307553806, + 0.38123479599999999, + 0.47654349499999998, + 0.33358044650000002, + 0.28592609699999999, + 0.2307553806 + ] }, { - "values": [ - 1.0, - 0.25, - 1.0 - ], - "type": "ScheduleDay", "times": [ [ 0, @@ -1602,152 +1135,199 @@ 6, 0 ], + [ + 8, + 0 + ], + [ + 12, + 0 + ], + [ + 13, + 0 + ], + [ + 17, + 0 + ], [ 18, 0 ] ], - "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat", - "interpolate": false - } - ] - }, - { - "summer_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", - "properties": { - "ph": { - "operating_weeks_year": 52.142899999999997, - "type": "ScheduleRulesetPhProperties", - "operating_days_wk": 7.0, - "id_num": 0, - "operating_periods": { - "collection": [] - } - }, - "type": "ScheduleRulesetProperties", - "revive": { - "id_num": 0, - "type": "ScheduleRulesetReviveProperties" + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 0.30767384079999999, + 0.38123479599999999, + 0.85777829100000003, + 0.76246959199999997, + 0.85777829100000003, + 0.47654349499999998, + 0.38123479599999999 + ] } - }, - "schedule_type_limit": "Temperature", - "type": "ScheduleRulesetAbridged", - "default_day_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", - "identifier": "Generic Office Heating", + ], + "holiday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", + "winter_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", + "schedule_type_limit": "Fractional", + "identifier": "Generic Office Equipment", + "summer_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", "schedule_rules": [ - { - "apply_monday": true, - "start_date": [ - 1, - 1 - ], - "type": "ScheduleRuleAbridged", - "apply_wednesday": true, + { "apply_tuesday": true, "apply_friday": true, - "apply_thursday": true, "apply_sunday": false, + "apply_saturday": false, + "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", + "apply_monday": true, "end_date": [ 12, 31 ], - "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", - "apply_saturday": false - }, - { - "apply_monday": false, "start_date": [ 1, 1 ], - "type": "ScheduleRuleAbridged", - "apply_wednesday": false, + "apply_thursday": true, + "apply_wednesday": true, + "type": "ScheduleRuleAbridged" + }, + { "apply_tuesday": false, "apply_friday": false, - "apply_thursday": false, "apply_sunday": false, + "apply_saturday": true, + "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", + "apply_monday": false, "end_date": [ 12, 31 ], - "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", - "apply_saturday": true + "start_date": [ + 1, + 1 + ], + "apply_thursday": false, + "apply_wednesday": false, + "type": "ScheduleRuleAbridged" } ], - "holiday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", - "winter_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", + "type": "ScheduleRulesetAbridged", + "properties": { + "ph": { + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] + }, + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997 + }, + "type": "ScheduleRulesetProperties", + "revive": { + "type": "ScheduleRulesetReviveProperties", + "id_num": 0 + } + } + }, + { + "default_day_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", "day_schedules": [ { - "values": [ - 15.600000000000000 - ], - "type": "ScheduleDay", "times": [ [ 0, 0 + ], + [ + 6, + 0 + ], + [ + 18, + 0 ] ], - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", - "interpolate": false + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 0.050000000000000003, + 0.04311628, + 0.050000000000000003 + ] }, { - "values": [ - 15.600000000000000 - ], - "type": "ScheduleDay", "times": [ [ 0, 0 ] ], - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", - "interpolate": false + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 1.0 + ] }, { - "values": [ - 15.600000000000000, - 17.600000000000001, - 19.600000000000001, - 21.0, - 15.600000000000000 + "times": [ + [ + 0, + 0 + ] ], + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", "type": "ScheduleDay", + "interpolate": false, + "values": [ + 0.0 + ] + }, + { "times": [ [ 0, 0 ], [ - 5, + 6, 0 ], [ - 6, + 8, 0 ], [ - 7, + 12, 0 ], [ - 22, + 17, + 0 + ], + [ + 19, 0 ] ], - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", - "interpolate": false + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 0.050000000000000003, + 0.08623256, + 0.25869767999999999, + 0.12934883999999999, + 0.04311628, + 0.050000000000000003 + ] }, { - "values": [ - 15.600000000000000, - 17.800000000000001, - 20.0, - 21.0, - 15.600000000000000 - ], - "type": "ScheduleDay", "times": [ [ 0, @@ -1766,1096 +1346,1586 @@ 0 ], [ - 22, + 8, 0 - ] - ], - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", - "interpolate": false - }, - { - "values": [ - 15.600000000000000, - 17.800000000000001, - 20.0, - 21.0, - 15.600000000000000 - ], - "type": "ScheduleDay", - "times": [ + ], [ - 0, + 17, 0 ], [ - 5, + 18, 0 ], [ - 6, + 20, 0 ], [ - 7, + 22, 0 ], [ - 17, + 23, 0 ] ], - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", - "interpolate": false + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 0.050000000000000003, + 0.10000000000000001, + 0.08623256, + 0.25869767999999999, + 0.77609304000000001, + 0.43116280000000001, + 0.25869767999999999, + 0.17246512, + 0.08623256, + 0.04311628 + ] + } + ], + "holiday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", + "winter_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", + "schedule_type_limit": "Fractional", + "identifier": "Generic Office Lighting", + "summer_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", + "schedule_rules": [ + { + "apply_tuesday": true, + "apply_friday": true, + "apply_sunday": false, + "apply_saturday": false, + "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", + "apply_monday": true, + "end_date": [ + 12, + 31 + ], + "start_date": [ + 1, + 1 + ], + "apply_thursday": true, + "apply_wednesday": true, + "type": "ScheduleRuleAbridged" + }, + { + "apply_tuesday": false, + "apply_friday": false, + "apply_sunday": false, + "apply_saturday": true, + "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", + "apply_monday": false, + "end_date": [ + 12, + 31 + ], + "start_date": [ + 1, + 1 + ], + "apply_thursday": false, + "apply_wednesday": false, + "type": "ScheduleRuleAbridged" + } + ], + "type": "ScheduleRulesetAbridged", + "properties": { + "ph": { + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] + }, + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997 + }, + "type": "ScheduleRulesetProperties", + "revive": { + "type": "ScheduleRulesetReviveProperties", + "id_num": 0 } - ] + } } ], - "electric_load_center": { - "type": "ElectricLoadCenter", - "inverter_efficiency": 0.95999999999999996, - "inverter_dc_to_ac_size_ratio": 1.1000000000000001 - }, "construction_sets": [], - "materials": [], "global_construction_set": { - "door_set": { - "interior_glass_construction": "Generic Single Pane", - "type": "DoorConstructionSetAbridged", - "exterior_glass_construction": "Generic Double Pane", - "exterior_construction": "Generic Exterior Door", - "interior_construction": "Generic Interior Door", - "overhead_construction": "Generic Exterior Door" + "wall_set": { + "exterior_construction": "Generic Exterior Wall", + "type": "WallConstructionSetAbridged", + "ground_construction": "Generic Underground Wall", + "interior_construction": "Generic Interior Wall" + }, + "roof_ceiling_set": { + "exterior_construction": "Generic Roof", + "type": "RoofCeilingConstructionSetAbridged", + "ground_construction": "Generic Underground Roof", + "interior_construction": "Generic Interior Ceiling" }, "context_construction": "Generic Context", - "type": "GlobalConstructionSet", "constructions": [ { - "properties": { - "revive": { - "id_num": 0, - "type": "ShadeConstructionReviveProperties" - }, - "type": "ShadeConstructionProperties" - }, - "type": "ShadeConstruction", - "visible_reflectance": 0.20000000000000001, "identifier": "Generic Context", "is_specular": false, - "solar_reflectance": 0.20000000000000001 - }, - { - "air_mixing_schedule": "Always On", - "type": "AirBoundaryConstructionAbridged", - "identifier": "Generic Air Boundary", - "air_mixing_per_area": 0.10000000000000001 + "solar_reflectance": 0.20000000000000001, + "type": "ShadeConstruction", + "properties": { + "type": "ShadeConstructionProperties", + "revive": { + "type": "ShadeConstructionReviveProperties", + "id_num": 0 + } + }, + "visible_reflectance": 0.20000000000000001 }, { + "properties": { + "ph": { + "type": "OpaqueConstructionPhProperties", + "id_num": 0 + }, + "type": "OpaqueConstructionProperties", + "revive": { + "type": "OpaqueConstructionReviveProperties", + "id_num": 0 + } + }, + "identifier": "Generic Roof", + "type": "OpaqueConstructionAbridged", "materials": [ "Generic Roof Membrane", "Generic 50mm Insulation", "Generic LW Concrete", "Generic Ceiling Air Gap", "Generic Acoustic Tile" - ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Roof", - "properties": { - "revive": { - "id_num": 0, - "type": "OpaqueConstructionReviveProperties" - }, - "type": "OpaqueConstructionProperties" - } + ] }, { - "materials": [ - "Generic Gypsum Board", - "Generic Wall Air Gap", - "Generic Gypsum Board" - ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Wall", "properties": { - "revive": { - "id_num": 0, - "type": "OpaqueConstructionReviveProperties" + "ph": { + "type": "OpaqueConstructionPhProperties", + "id_num": 0 }, - "type": "OpaqueConstructionProperties" - } - }, - { + "type": "OpaqueConstructionProperties", + "revive": { + "type": "OpaqueConstructionReviveProperties", + "id_num": 0 + } + }, + "identifier": "Generic Interior Ceiling", + "type": "OpaqueConstructionAbridged", "materials": [ - "Generic Brick", "Generic LW Concrete", - "Generic 50mm Insulation", - "Generic Wall Air Gap", - "Generic Gypsum Board" - ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Exterior Wall", + "Generic Ceiling Air Gap", + "Generic Acoustic Tile" + ] + }, + { "properties": { - "revive": { - "id_num": 0, - "type": "OpaqueConstructionReviveProperties" + "ph": { + "type": "WindowConstructionPhProperties", + "id_num": 0 }, - "type": "OpaqueConstructionProperties" - } + "type": "WindowConstructionProperties", + "revive": { + "type": "WindowConstructionReviveProperties", + "id_num": 0 + } + }, + "identifier": "Generic Double Pane", + "type": "WindowConstructionAbridged", + "materials": [ + "Generic Low-e Glass", + "Generic Window Air Gap", + "Generic Clear Glass" + ] }, { - "materials": [ - "Generic Painted Metal", - "Generic 25mm Insulation", - "Generic Painted Metal" - ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Exterior Door", "properties": { - "revive": { - "id_num": 0, - "type": "OpaqueConstructionReviveProperties" + "ph": { + "type": "OpaqueConstructionPhProperties", + "id_num": 0 }, - "type": "OpaqueConstructionProperties" - } + "type": "OpaqueConstructionProperties", + "revive": { + "type": "OpaqueConstructionReviveProperties", + "id_num": 0 + } + }, + "identifier": "Generic Interior Floor", + "type": "OpaqueConstructionAbridged", + "materials": [ + "Generic Acoustic Tile", + "Generic Ceiling Air Gap", + "Generic LW Concrete" + ] }, { + "properties": { + "ph": { + "type": "OpaqueConstructionPhProperties", + "id_num": 0 + }, + "type": "OpaqueConstructionProperties", + "revive": { + "type": "OpaqueConstructionReviveProperties", + "id_num": 0 + } + }, + "identifier": "Generic Underground Wall", + "type": "OpaqueConstructionAbridged", "materials": [ "Generic 50mm Insulation", "Generic HW Concrete", "Generic Wall Air Gap", "Generic Gypsum Board" - ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Underground Wall", + ] + }, + { "properties": { - "revive": { - "id_num": 0, - "type": "OpaqueConstructionReviveProperties" + "ph": { + "type": "WindowConstructionPhProperties", + "id_num": 0 }, - "type": "OpaqueConstructionProperties" - } + "type": "WindowConstructionProperties", + "revive": { + "type": "WindowConstructionReviveProperties", + "id_num": 0 + } + }, + "identifier": "Generic Single Pane", + "type": "WindowConstructionAbridged", + "materials": [ + "Generic Clear Glass" + ] }, { - "materials": [ - "Generic 25mm Wood" - ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Door", "properties": { - "revive": { - "id_num": 0, - "type": "OpaqueConstructionReviveProperties" + "ph": { + "type": "OpaqueConstructionPhProperties", + "id_num": 0 }, - "type": "OpaqueConstructionProperties" - } + "type": "OpaqueConstructionProperties", + "revive": { + "type": "OpaqueConstructionReviveProperties", + "id_num": 0 + } + }, + "identifier": "Generic Interior Door", + "type": "OpaqueConstructionAbridged", + "materials": [ + "Generic 25mm Wood" + ] }, { "properties": { - "revive": { - "id_num": 0, - "type": "ShadeConstructionReviveProperties" + "ph": { + "type": "OpaqueConstructionPhProperties", + "id_num": 0 }, - "type": "ShadeConstructionProperties" + "type": "OpaqueConstructionProperties", + "revive": { + "type": "OpaqueConstructionReviveProperties", + "id_num": 0 + } }, - "type": "ShadeConstruction", - "visible_reflectance": 0.34999999999999998, + "identifier": "Generic Ground Slab", + "type": "OpaqueConstructionAbridged", + "materials": [ + "Generic 50mm Insulation", + "Generic HW Concrete" + ] + }, + { "identifier": "Generic Shade", "is_specular": false, - "solar_reflectance": 0.34999999999999998 + "solar_reflectance": 0.34999999999999998, + "type": "ShadeConstruction", + "properties": { + "type": "ShadeConstructionProperties", + "revive": { + "type": "ShadeConstructionReviveProperties", + "id_num": 0 + } + }, + "visible_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, + "identifier": "Generic Air Boundary", "properties": { - "revive": { - "id_num": 0, - "type": "OpaqueConstructionReviveProperties" + "ph": { + "type": "AirBoundaryConstructionPhProperties", + "id_num": 0 }, - "type": "OpaqueConstructionProperties" - } + "type": "AirBoundaryConstructionProperties" + }, + "type": "AirBoundaryConstructionAbridged", + "air_mixing_schedule": "Always On" }, { - "materials": [ - "Generic Clear Glass" - ], - "type": "WindowConstructionAbridged", - "identifier": "Generic Single Pane", "properties": { "ph": { - "id_num": 0, - "type": "WindowConstructionPhProperties" + "type": "OpaqueConstructionPhProperties", + "id_num": 0 }, - "type": "WindowConstructionProperties", + "type": "OpaqueConstructionProperties", "revive": { - "id_num": 0, - "type": "WindowConstructionReviveProperties" + "type": "OpaqueConstructionReviveProperties", + "id_num": 0 } - } - }, - { + }, + "identifier": "Generic Exterior Wall", + "type": "OpaqueConstructionAbridged", "materials": [ + "Generic Brick", + "Generic LW Concrete", "Generic 50mm Insulation", - "Generic HW Concrete" - ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Ground Slab", + "Generic Wall Air Gap", + "Generic Gypsum Board" + ] + }, + { "properties": { - "revive": { - "id_num": 0, - "type": "OpaqueConstructionReviveProperties" + "ph": { + "type": "OpaqueConstructionPhProperties", + "id_num": 0 }, - "type": "OpaqueConstructionProperties" - } + "type": "OpaqueConstructionProperties", + "revive": { + "type": "OpaqueConstructionReviveProperties", + "id_num": 0 + } + }, + "identifier": "Generic Interior Wall", + "type": "OpaqueConstructionAbridged", + "materials": [ + "Generic Gypsum Board", + "Generic Wall Air Gap", + "Generic Gypsum Board" + ] }, { + "properties": { + "ph": { + "type": "OpaqueConstructionPhProperties", + "id_num": 0 + }, + "type": "OpaqueConstructionProperties", + "revive": { + "type": "OpaqueConstructionReviveProperties", + "id_num": 0 + } + }, + "identifier": "Generic Exposed Floor", + "type": "OpaqueConstructionAbridged", "materials": [ "Generic Painted Metal", "Generic Ceiling Air Gap", "Generic 50mm Insulation", "Generic LW Concrete" - ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Exposed Floor", - "properties": { - "revive": { - "id_num": 0, - "type": "OpaqueConstructionReviveProperties" - }, - "type": "OpaqueConstructionProperties" - } + ] }, { - "materials": [ - "Generic Acoustic Tile", - "Generic Ceiling Air Gap", - "Generic LW Concrete" - ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Floor", "properties": { - "revive": { - "id_num": 0, - "type": "OpaqueConstructionReviveProperties" + "ph": { + "type": "OpaqueConstructionPhProperties", + "id_num": 0 }, - "type": "OpaqueConstructionProperties" - } - }, - { + "type": "OpaqueConstructionProperties", + "revive": { + "type": "OpaqueConstructionReviveProperties", + "id_num": 0 + } + }, + "identifier": "Generic Underground Roof", + "type": "OpaqueConstructionAbridged", "materials": [ - "Generic LW Concrete", + "Generic 50mm Insulation", + "Generic HW Concrete", "Generic Ceiling Air Gap", "Generic Acoustic Tile" - ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Ceiling", - "properties": { - "revive": { - "id_num": 0, - "type": "OpaqueConstructionReviveProperties" - }, - "type": "OpaqueConstructionProperties" - } + ] }, { - "materials": [ - "Generic Low-e Glass", - "Generic Window Air Gap", - "Generic Clear Glass" - ], - "type": "WindowConstructionAbridged", - "identifier": "Generic Double Pane", "properties": { "ph": { - "id_num": 0, - "type": "WindowConstructionPhProperties" + "type": "OpaqueConstructionPhProperties", + "id_num": 0 }, - "type": "WindowConstructionProperties", + "type": "OpaqueConstructionProperties", "revive": { - "id_num": 0, - "type": "WindowConstructionReviveProperties" + "type": "OpaqueConstructionReviveProperties", + "id_num": 0 } - } + }, + "identifier": "Generic Exterior Door", + "type": "OpaqueConstructionAbridged", + "materials": [ + "Generic Painted Metal", + "Generic 25mm Insulation", + "Generic Painted Metal" + ] } ], + "door_set": { + "overhead_construction": "Generic Exterior Door", + "exterior_glass_construction": "Generic Double Pane", + "exterior_construction": "Generic Exterior Door", + "type": "DoorConstructionSetAbridged", + "interior_construction": "Generic Interior Door", + "interior_glass_construction": "Generic Single Pane" + }, + "floor_set": { + "exterior_construction": "Generic Exposed Floor", + "type": "FloorConstructionSetAbridged", + "ground_construction": "Generic Ground Slab", + "interior_construction": "Generic Interior Floor" + }, "shade_construction": "Generic Shade", + "air_boundary_construction": "Generic Air Boundary", + "type": "GlobalConstructionSet", "materials": [ { + "identifier": "Generic 25mm Wood", + "roughness": "MediumSmooth", + "solar_absorptance": 0.5, + "thickness": 0.025399999999999999, "properties": { "ph": { - "id_num": 0, + "user_data": {}, "divisions": { "row_heights": [], - "column_widths": [], - "cells": [] + "cells": [], + "column_widths": [] }, - "user_data": {} + "id_num": 0 }, "type": "EnergyMaterialProperties", "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, "cost_per_m2": { - "unit": "COST/M2", - "value": 0.0 + "value": 0.0, + "unit": "COST/M2" }, - "type": "EnergyMaterialReviveProperties", - "labor_fraction": 0.40000000000000002, "id_num": 0, - "lifetime_years": 25, + "type": "EnergyMaterialReviveProperties", "kg_CO2_per_m2": { - "unit": "KG/M2", - "value": 0.0 + "value": 0.0, + "unit": "KG/M2" } } }, - "visible_absorptance": 0.65000000000000002, - "roughness": "MediumRough", - "solar_absorptance": 0.65000000000000002, - "type": "EnergyMaterial", - "density": 1120.0, - "specific_heat": 1460.0, + "density": 608.0, + "visible_absorptance": 0.5, + "conductivity": 0.14999999999999999, + "specific_heat": 1630.0, "thermal_absorptance": 0.90000000000000002, - "conductivity": 0.16, - "identifier": "Generic Roof Membrane", - "thickness": 0.01 + "type": "EnergyMaterial" }, { + "identifier": "Generic 25mm Insulation", + "roughness": "MediumRough", + "solar_absorptance": 0.69999999999999996, + "thickness": 0.025000000000000001, "properties": { "ph": { - "id_num": 0, + "user_data": {}, "divisions": { "row_heights": [], - "column_widths": [], - "cells": [] + "cells": [], + "column_widths": [] }, - "user_data": {} + "id_num": 0 }, "type": "EnergyMaterialProperties", "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, "cost_per_m2": { - "unit": "COST/M2", - "value": 0.0 + "value": 0.0, + "unit": "COST/M2" }, - "type": "EnergyMaterialReviveProperties", - "labor_fraction": 0.40000000000000002, "id_num": 0, - "lifetime_years": 25, + "type": "EnergyMaterialReviveProperties", "kg_CO2_per_m2": { - "unit": "KG/M2", - "value": 0.0 + "value": 0.0, + "unit": "KG/M2" } } }, - "visible_absorptance": 0.65000000000000002, + "density": 43.0, + "visible_absorptance": 0.69999999999999996, + "conductivity": 0.029999999999999999, + "specific_heat": 1210.0, + "thermal_absorptance": 0.90000000000000002, + "type": "EnergyMaterial" + }, + { + "identifier": "Generic Brick", "roughness": "MediumRough", "solar_absorptance": 0.65000000000000002, - "type": "EnergyMaterial", + "thickness": 0.10000000000000001, + "properties": { + "ph": { + "user_data": {}, + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0 + }, + "type": "EnergyMaterialProperties", + "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, + "cost_per_m2": { + "value": 0.0, + "unit": "COST/M2" + }, + "id_num": 0, + "type": "EnergyMaterialReviveProperties", + "kg_CO2_per_m2": { + "value": 0.0, + "unit": "KG/M2" + } + } + }, "density": 1920.0, + "visible_absorptance": 0.65000000000000002, + "conductivity": 0.90000000000000002, "specific_heat": 790.0, "thermal_absorptance": 0.90000000000000002, - "conductivity": 0.90000000000000002, - "identifier": "Generic Brick", - "thickness": 0.10000000000000001 + "type": "EnergyMaterial" }, { - "type": "EnergyWindowMaterialGas", - "gas_type": "Air", - "identifier": "Generic Window Air Gap", - "thickness": 0.012699999999999999, + "identifier": "Generic Ceiling Air Gap", + "roughness": "Smooth", + "solar_absorptance": 0.69999999999999996, + "thickness": 0.10000000000000001, "properties": { + "ph": { + "user_data": {}, + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0 + }, + "type": "EnergyMaterialProperties", "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, "cost_per_m2": { - "unit": "COST/M2", - "value": 0.0 + "value": 0.0, + "unit": "COST/M2" }, - "type": "EnergyWindowMaterialGasReviveProperties", - "labor_fraction": 0.40000000000000002, "id_num": 0, + "type": "EnergyMaterialReviveProperties", + "kg_CO2_per_m2": { + "value": 0.0, + "unit": "KG/M2" + } + } + }, + "density": 1.2800000000000000, + "visible_absorptance": 0.69999999999999996, + "conductivity": 0.55600000000000005, + "specific_heat": 1000.0, + "thermal_absorptance": 0.90000000000000002, + "type": "EnergyMaterial" + }, + { + "thickness": 0.0060000000000000001, + "solar_transmittance": 0.45000000000000001, + "solar_reflectance": 0.35999999999999999, + "solar_reflectance_back": 0.35999999999999999, + "emissivity": 0.83999999999999997, + "emissivity_back": 0.047, + "visible_transmittance": 0.70999999999999996, + "type": "EnergyWindowMaterialGlazing", + "dirt_correction": 1.0, + "infrared_transmittance": 0.0, + "conductivity": 1.0, + "visible_reflectance_back": 0.20999999999999999, + "visible_reflectance": 0.20999999999999999, + "identifier": "Generic Low-e Glass", + "solar_diffusing": false, + "properties": { + "type": "EnergyWindowMaterialGlazingsProperties", + "revive": { "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, + "cost_per_m2": { + "value": 0.0, + "unit": "COST/M2" + }, + "id_num": 0, + "type": "EnergyWindowMaterialGlazingReviveProperties", "kg_CO2_per_m2": { - "unit": "KG/M2", - "value": 0.0 + "value": 0.0, + "unit": "KG/M2" } - }, - "type": "EnergyWindowMaterialGasProperties" + } } }, { + "identifier": "Generic Acoustic Tile", + "roughness": "MediumSmooth", + "solar_absorptance": 0.20000000000000001, + "thickness": 0.02, "properties": { "ph": { - "id_num": 0, + "user_data": {}, "divisions": { "row_heights": [], - "column_widths": [], - "cells": [] + "cells": [], + "column_widths": [] }, - "user_data": {} + "id_num": 0 }, "type": "EnergyMaterialProperties", "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, "cost_per_m2": { - "unit": "COST/M2", - "value": 0.0 + "value": 0.0, + "unit": "COST/M2" }, - "type": "EnergyMaterialReviveProperties", - "labor_fraction": 0.40000000000000002, "id_num": 0, - "lifetime_years": 25, + "type": "EnergyMaterialReviveProperties", "kg_CO2_per_m2": { - "unit": "KG/M2", - "value": 0.0 + "value": 0.0, + "unit": "KG/M2" } } }, - "visible_absorptance": 0.69999999999999996, - "roughness": "MediumRough", - "solar_absorptance": 0.69999999999999996, - "type": "EnergyMaterial", - "density": 43.0, - "specific_heat": 1210.0, + "density": 368.0, + "visible_absorptance": 0.20000000000000001, + "conductivity": 0.059999999999999998, + "specific_heat": 590.0, "thermal_absorptance": 0.90000000000000002, - "conductivity": 0.029999999999999999, - "identifier": "Generic 50mm Insulation", - "thickness": 0.050000000000000003 + "type": "EnergyMaterial" }, { - "solar_reflectance": 0.35999999999999999, - "infrared_transmittance": 0.0, - "identifier": "Generic Low-e Glass", + "thickness": 0.0060000000000000001, + "solar_transmittance": 0.77000000000000002, + "solar_reflectance": 0.070000000000000007, + "solar_reflectance_back": 0.070000000000000007, + "emissivity": 0.83999999999999997, + "emissivity_back": 0.83999999999999997, + "visible_transmittance": 0.88, "type": "EnergyWindowMaterialGlazing", - "visible_reflectance": 0.20999999999999999, - "visible_reflectance_back": 0.20999999999999999, - "solar_reflectance_back": 0.35999999999999999, "dirt_correction": 1.0, - "solar_diffusing": false, + "infrared_transmittance": 0.0, "conductivity": 1.0, - "visible_transmittance": 0.70999999999999996, - "thickness": 0.0060000000000000001, - "emissivity_back": 0.047, - "solar_transmittance": 0.45000000000000001, - "emissivity": 0.83999999999999997, + "visible_reflectance_back": 0.080000000000000002, + "visible_reflectance": 0.080000000000000002, + "identifier": "Generic Clear Glass", + "solar_diffusing": false, "properties": { + "type": "EnergyWindowMaterialGlazingsProperties", "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, "cost_per_m2": { - "unit": "COST/M2", - "value": 0.0 + "value": 0.0, + "unit": "COST/M2" }, + "id_num": 0, "type": "EnergyWindowMaterialGlazingReviveProperties", + "kg_CO2_per_m2": { + "value": 0.0, + "unit": "KG/M2" + } + } + } + }, + { + "identifier": "Generic HW Concrete", + "roughness": "MediumRough", + "solar_absorptance": 0.80000000000000004, + "thickness": 0.20000000000000001, + "properties": { + "ph": { + "user_data": {}, + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0 + }, + "type": "EnergyMaterialProperties", + "revive": { + "lifetime_years": 25, "labor_fraction": 0.40000000000000002, + "cost_per_m2": { + "value": 0.0, + "unit": "COST/M2" + }, "id_num": 0, - "lifetime_years": 25, + "type": "EnergyMaterialReviveProperties", "kg_CO2_per_m2": { - "unit": "KG/M2", - "value": 0.0 + "value": 0.0, + "unit": "KG/M2" } - }, - "type": "EnergyWindowMaterialGlazingsProperties" - } + } + }, + "density": 2240.0, + "visible_absorptance": 0.80000000000000004, + "conductivity": 1.9500000000000000, + "specific_heat": 900.0, + "thermal_absorptance": 0.90000000000000002, + "type": "EnergyMaterial" }, { + "identifier": "Generic Gypsum Board", + "roughness": "MediumSmooth", + "solar_absorptance": 0.5, + "thickness": 0.012699999999999999, "properties": { "ph": { - "id_num": 0, + "user_data": {}, "divisions": { "row_heights": [], - "column_widths": [], - "cells": [] + "cells": [], + "column_widths": [] }, - "user_data": {} + "id_num": 0 }, "type": "EnergyMaterialProperties", "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, "cost_per_m2": { - "unit": "COST/M2", - "value": 0.0 + "value": 0.0, + "unit": "COST/M2" }, - "type": "EnergyMaterialReviveProperties", - "labor_fraction": 0.40000000000000002, "id_num": 0, - "lifetime_years": 25, + "type": "EnergyMaterialReviveProperties", "kg_CO2_per_m2": { - "unit": "KG/M2", - "value": 0.0 + "value": 0.0, + "unit": "KG/M2" } } }, - "visible_absorptance": 0.69999999999999996, - "roughness": "Smooth", - "solar_absorptance": 0.69999999999999996, - "type": "EnergyMaterial", - "density": 1.2800000000000000, - "specific_heat": 1000.0, + "density": 800.0, + "visible_absorptance": 0.5, + "conductivity": 0.16, + "specific_heat": 1090.0, "thermal_absorptance": 0.90000000000000002, - "conductivity": 0.55600000000000005, - "identifier": "Generic Ceiling Air Gap", - "thickness": 0.10000000000000001 + "type": "EnergyMaterial" }, { + "identifier": "Generic Roof Membrane", + "roughness": "MediumRough", + "solar_absorptance": 0.65000000000000002, + "thickness": 0.01, "properties": { "ph": { - "id_num": 0, + "user_data": {}, "divisions": { "row_heights": [], - "column_widths": [], - "cells": [] + "cells": [], + "column_widths": [] }, - "user_data": {} + "id_num": 0 }, "type": "EnergyMaterialProperties", "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, "cost_per_m2": { - "unit": "COST/M2", - "value": 0.0 + "value": 0.0, + "unit": "COST/M2" }, + "id_num": 0, "type": "EnergyMaterialReviveProperties", + "kg_CO2_per_m2": { + "value": 0.0, + "unit": "KG/M2" + } + } + }, + "density": 1120.0, + "visible_absorptance": 0.65000000000000002, + "conductivity": 0.16, + "specific_heat": 1460.0, + "thermal_absorptance": 0.90000000000000002, + "type": "EnergyMaterial" + }, + { + "properties": { + "type": "EnergyWindowMaterialGasProperties", + "revive": { + "lifetime_years": 25, "labor_fraction": 0.40000000000000002, + "cost_per_m2": { + "value": 0.0, + "unit": "COST/M2" + }, "id_num": 0, - "lifetime_years": 25, + "type": "EnergyWindowMaterialGasReviveProperties", "kg_CO2_per_m2": { - "unit": "KG/M2", - "value": 0.0 + "value": 0.0, + "unit": "KG/M2" } } }, - "visible_absorptance": 0.5, - "roughness": "MediumSmooth", - "solar_absorptance": 0.5, - "type": "EnergyMaterial", - "density": 800.0, - "specific_heat": 1090.0, - "thermal_absorptance": 0.90000000000000002, - "conductivity": 0.16, - "identifier": "Generic Gypsum Board", + "identifier": "Generic Window Air Gap", + "type": "EnergyWindowMaterialGas", + "gas_type": "Air", "thickness": 0.012699999999999999 }, { + "identifier": "Generic Painted Metal", + "roughness": "Smooth", + "solar_absorptance": 0.5, + "thickness": 0.0015, "properties": { "ph": { - "id_num": 0, + "user_data": {}, "divisions": { "row_heights": [], - "column_widths": [], - "cells": [] + "cells": [], + "column_widths": [] }, - "user_data": {} + "id_num": 0 }, "type": "EnergyMaterialProperties", "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, "cost_per_m2": { - "unit": "COST/M2", - "value": 0.0 + "value": 0.0, + "unit": "COST/M2" }, - "type": "EnergyMaterialReviveProperties", - "labor_fraction": 0.40000000000000002, "id_num": 0, - "lifetime_years": 25, + "type": "EnergyMaterialReviveProperties", "kg_CO2_per_m2": { - "unit": "KG/M2", - "value": 0.0 + "value": 0.0, + "unit": "KG/M2" } } }, + "density": 7690.0, "visible_absorptance": 0.5, - "roughness": "MediumSmooth", - "solar_absorptance": 0.5, - "type": "EnergyMaterial", - "density": 608.0, - "specific_heat": 1630.0, + "conductivity": 45.0, + "specific_heat": 410.0, "thermal_absorptance": 0.90000000000000002, - "conductivity": 0.14999999999999999, - "identifier": "Generic 25mm Wood", - "thickness": 0.025399999999999999 + "type": "EnergyMaterial" }, { + "identifier": "Generic Wall Air Gap", + "roughness": "Smooth", + "solar_absorptance": 0.69999999999999996, + "thickness": 0.10000000000000001, "properties": { "ph": { - "id_num": 0, + "user_data": {}, "divisions": { "row_heights": [], - "column_widths": [], - "cells": [] + "cells": [], + "column_widths": [] }, - "user_data": {} + "id_num": 0 }, "type": "EnergyMaterialProperties", "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, "cost_per_m2": { - "unit": "COST/M2", - "value": 0.0 + "value": 0.0, + "unit": "COST/M2" }, - "type": "EnergyMaterialReviveProperties", - "labor_fraction": 0.40000000000000002, "id_num": 0, - "lifetime_years": 25, + "type": "EnergyMaterialReviveProperties", "kg_CO2_per_m2": { - "unit": "KG/M2", - "value": 0.0 + "value": 0.0, + "unit": "KG/M2" } } }, - "visible_absorptance": 0.69999999999999996, - "roughness": "Smooth", - "solar_absorptance": 0.69999999999999996, - "type": "EnergyMaterial", "density": 1.2800000000000000, + "visible_absorptance": 0.69999999999999996, + "conductivity": 0.66700000000000004, "specific_heat": 1000.0, "thermal_absorptance": 0.90000000000000002, - "conductivity": 0.66700000000000004, - "identifier": "Generic Wall Air Gap", - "thickness": 0.10000000000000001 + "type": "EnergyMaterial" }, { + "identifier": "Generic 50mm Insulation", + "roughness": "MediumRough", + "solar_absorptance": 0.69999999999999996, + "thickness": 0.050000000000000003, "properties": { "ph": { - "id_num": 0, + "user_data": {}, "divisions": { "row_heights": [], - "column_widths": [], - "cells": [] + "cells": [], + "column_widths": [] }, - "user_data": {} + "id_num": 0 }, "type": "EnergyMaterialProperties", "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, "cost_per_m2": { - "unit": "COST/M2", - "value": 0.0 + "value": 0.0, + "unit": "COST/M2" }, - "type": "EnergyMaterialReviveProperties", - "labor_fraction": 0.40000000000000002, "id_num": 0, - "lifetime_years": 25, + "type": "EnergyMaterialReviveProperties", "kg_CO2_per_m2": { - "unit": "KG/M2", - "value": 0.0 + "value": 0.0, + "unit": "KG/M2" } } }, - "visible_absorptance": 0.80000000000000004, - "roughness": "MediumRough", - "solar_absorptance": 0.80000000000000004, - "type": "EnergyMaterial", - "density": 1280.0, - "specific_heat": 840.0, + "density": 43.0, + "visible_absorptance": 0.69999999999999996, + "conductivity": 0.029999999999999999, + "specific_heat": 1210.0, "thermal_absorptance": 0.90000000000000002, - "conductivity": 0.53000000000000003, - "identifier": "Generic LW Concrete", - "thickness": 0.10000000000000001 + "type": "EnergyMaterial" }, { + "identifier": "Generic LW Concrete", + "roughness": "MediumRough", + "solar_absorptance": 0.80000000000000004, + "thickness": 0.10000000000000001, "properties": { "ph": { - "id_num": 0, + "user_data": {}, "divisions": { "row_heights": [], - "column_widths": [], - "cells": [] + "cells": [], + "column_widths": [] }, - "user_data": {} + "id_num": 0 }, "type": "EnergyMaterialProperties", "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, "cost_per_m2": { - "unit": "COST/M2", - "value": 0.0 + "value": 0.0, + "unit": "COST/M2" }, - "type": "EnergyMaterialReviveProperties", - "labor_fraction": 0.40000000000000002, "id_num": 0, - "lifetime_years": 25, + "type": "EnergyMaterialReviveProperties", "kg_CO2_per_m2": { - "unit": "KG/M2", - "value": 0.0 + "value": 0.0, + "unit": "KG/M2" } } }, - "visible_absorptance": 0.5, - "roughness": "Smooth", - "solar_absorptance": 0.5, - "type": "EnergyMaterial", - "density": 7690.0, - "specific_heat": 410.0, + "density": 1280.0, + "visible_absorptance": 0.80000000000000004, + "conductivity": 0.53000000000000003, + "specific_heat": 840.0, "thermal_absorptance": 0.90000000000000002, - "conductivity": 45.0, - "identifier": "Generic Painted Metal", - "thickness": 0.0015 + "type": "EnergyMaterial" + } + ], + "aperture_set": { + "skylight_construction": "Generic Double Pane", + "operable_construction": "Generic Double Pane", + "type": "ApertureConstructionSetAbridged", + "interior_construction": "Generic Single Pane", + "window_construction": "Generic Double Pane" + } + }, + "schedule_type_limits": [ + { + "lower_limit": 0.0, + "upper_limit": 1.0, + "identifier": "Fractional", + "numeric_type": "Continuous", + "unit_type": "Dimensionless", + "type": "ScheduleTypeLimit" + }, + { + "lower_limit": 0.0, + "upper_limit": { + "type": "NoLimit" }, - { + "identifier": "Activity Level", + "numeric_type": "Continuous", + "unit_type": "ActivityLevel", + "type": "ScheduleTypeLimit" + }, + { + "lower_limit": -273.14999999999998, + "upper_limit": { + "type": "NoLimit" + }, + "identifier": "Temperature", + "numeric_type": "Continuous", + "unit_type": "Temperature", + "type": "ScheduleTypeLimit" + } + ], + "constructions": [], + "electric_load_center": { + "inverter_efficiency": 0.95999999999999996, + "type": "ElectricLoadCenter", + "inverter_dc_to_ac_size_ratio": 1.1000000000000001 + }, + "shws": [], + "ventilation_simulation_control": { + "long_axis_angle": 0.0, + "aspect_ratio": 1.0, + "reference_humidity_ratio": 0.0, + "building_type": "LowRise", + "reference_temperature": 20.0, + "type": "VentilationSimulationControl", + "vent_control_type": "SingleZone", + "reference_pressure": 101325.0 + }, + "type": "ModelEnergyProperties", + "materials": [], + "program_types": [ + { + "setpoint": { + "identifier": "Generic Office Setpoints", + "cooling_schedule": "Generic Office Cooling", + "type": "SetpointAbridged", + "heating_schedule": "Generic Office Heating" + }, + "electric_equipment": { + "schedule": "Generic Office Equipment", + "latent_fraction": 0.0, + "identifier": "Generic Office Equipment", + "watts_per_area": 10.330000000000000, + "radiant_fraction": 0.5, + "type": "ElectricEquipmentAbridged", "properties": { "ph": { - "id_num": 0, - "divisions": { - "row_heights": [], - "column_widths": [], - "cells": [] + "equipment_collection": { + "equipment_set": {} }, - "user_data": {} + "type": "ElectricEquipmentPhProperties" }, - "type": "EnergyMaterialProperties", + "type": "ElectricEquipmentProperties", "revive": { - "cost_per_m2": { - "unit": "COST/M2", - "value": 0.0 - }, - "type": "EnergyMaterialReviveProperties", + "type": "ElectricEquipmentReviveProperties", + "id_num": 0 + } + }, + "lost_fraction": 0.0 + }, + "ventilation": { + "flow_per_person": 0.0023600000000000001, + "identifier": "Generic Office Ventilation", + "flow_per_area": 0.00030499999999999999, + "type": "VentilationAbridged" + }, + "lighting": { + "return_air_fraction": 0.0, + "schedule": "Generic Office Lighting", + "identifier": "Generic Office Lighting", + "watts_per_area": 10.550000000000001, + "radiant_fraction": 0.69999999999999996, + "type": "LightingAbridged", + "visible_fraction": 0.20000000000000001, + "properties": { + "ph": { + "target_lux_height": 0.80000000000000004, + "type": "LightingPhProperties", + "id_num": 0, + "target_lux": 300 + }, + "type": "LightingProperties", + "revive": { + "lifetime_years": 25, "labor_fraction": 0.40000000000000002, "id_num": 0, - "lifetime_years": 25, - "kg_CO2_per_m2": { - "unit": "KG/M2", - "value": 0.0 - } + "type": "LightingReviveProperties", + "cost": 0.0 } - }, - "visible_absorptance": 0.80000000000000004, - "roughness": "MediumRough", - "solar_absorptance": 0.80000000000000004, - "type": "EnergyMaterial", - "density": 2240.0, - "specific_heat": 900.0, - "thermal_absorptance": 0.90000000000000002, - "conductivity": 1.9500000000000000, - "identifier": "Generic HW Concrete", - "thickness": 0.20000000000000001 + } }, - { + "identifier": "Generic Office Program", + "people": { + "people_per_area": 0.056500000000000002, + "latent_fraction": { + "type": "Autocalculate" + }, + "occupancy_schedule": "Generic Office Occupancy", + "identifier": "Generic Office People", + "radiant_fraction": 0.29999999999999999, + "type": "PeopleAbridged", "properties": { "ph": { - "id_num": 0, - "divisions": { - "row_heights": [], - "column_widths": [], - "cells": [] + "number_bedrooms": 0, + "dwellings": { + "num_dwellings": 0, + "identifier": "618be857-6814-4255-9bfa-9fa866313ef0" }, - "user_data": {} + "id_num": 0, + "number_people": 0.0, + "type": "PeoplePhProperties" }, - "type": "EnergyMaterialProperties", + "type": "PeopleProperties", "revive": { - "cost_per_m2": { - "unit": "COST/M2", - "value": 0.0 - }, - "type": "EnergyMaterialReviveProperties", - "labor_fraction": 0.40000000000000002, - "id_num": 0, - "lifetime_years": 25, - "kg_CO2_per_m2": { - "unit": "KG/M2", - "value": 0.0 - } + "type": "PeopleReviveProperties", + "id_num": 0 } }, - "visible_absorptance": 0.69999999999999996, - "roughness": "MediumRough", - "solar_absorptance": 0.69999999999999996, - "type": "EnergyMaterial", - "density": 43.0, - "specific_heat": 1210.0, - "thermal_absorptance": 0.90000000000000002, - "conductivity": 0.029999999999999999, - "identifier": "Generic 25mm Insulation", - "thickness": 0.025000000000000001 + "activity_schedule": "Seated Adult Activity" }, - { - "solar_reflectance": 0.070000000000000007, - "infrared_transmittance": 0.0, - "identifier": "Generic Clear Glass", - "type": "EnergyWindowMaterialGlazing", - "visible_reflectance": 0.080000000000000002, - "visible_reflectance_back": 0.080000000000000002, - "solar_reflectance_back": 0.070000000000000007, - "dirt_correction": 1.0, - "solar_diffusing": false, - "conductivity": 1.0, - "visible_transmittance": 0.88, - "thickness": 0.0060000000000000001, - "emissivity_back": 0.83999999999999997, - "solar_transmittance": 0.77000000000000002, - "emissivity": 0.83999999999999997, - "properties": { - "revive": { - "cost_per_m2": { - "unit": "COST/M2", - "value": 0.0 + "type": "ProgramTypeAbridged", + "infiltration": { + "identifier": "Generic Office Infiltration", + "flow_per_exterior_area": 0.00022660000000000001, + "type": "InfiltrationAbridged", + "schedule": "Generic Office Infiltration" + } + } + ], + "hvacs": [ + { + "heating_limit": { + "type": "Autosize" + }, + "demand_controlled_ventilation": false, + "economizer_type": "DifferentialDryBulb", + "cooling_air_temperature": 13.0, + "latent_heat_recovery": 0.0, + "cooling_limit": { + "type": "Autosize" + }, + "identifier": "Room_1_129c5bec Ideal Loads Air System", + "sensible_heat_recovery": 0.0, + "type": "IdealAirSystemAbridged", + "heating_air_temperature": 50.0, + "properties": { + "type": "IdealAirSystemProperties", + "revive": { + "equipment_collection": { + "equipment": [], + "type": "PhiusReviveHVACEquipmentCollection" + }, + "type": "IdealAirSystemReviveProperties" + } + } + } + ] + }, + "ph": { + "team": { + "display_name": "5c7096cc-0258-4edc-b386-affc2bef40e4", + "owner": { + "display_name": "16b6fef3-ec7e-40d5-8b8c-e9815ae32f43", + "name": null, + "email": null, + "city": null, + "identifier": "16b6fef3-ec7e-40d5-8b8c-e9815ae32f43", + "street": null, + "user_data": {}, + "telephone": null, + "post_code": null, + "license_number": null + }, + "designer": { + "display_name": "d5907708-0027-40ad-80f6-93d17a7fa946", + "name": null, + "email": null, + "city": null, + "identifier": "d5907708-0027-40ad-80f6-93d17a7fa946", + "street": null, + "user_data": {}, + "telephone": null, + "post_code": null, + "license_number": null + }, + "identifier": "5c7096cc-0258-4edc-b386-affc2bef40e4", + "building": { + "display_name": "cb07e2d6-99cd-49ed-8fb0-cfed8e10837f", + "name": null, + "email": null, + "city": null, + "identifier": "cb07e2d6-99cd-49ed-8fb0-cfed8e10837f", + "street": null, + "user_data": {}, + "telephone": null, + "post_code": null, + "license_number": null + }, + "user_data": {}, + "customer": { + "display_name": "105fe172-aefb-45dc-b530-b9027522c139", + "name": null, + "email": null, + "city": null, + "identifier": "105fe172-aefb-45dc-b530-b9027522c139", + "street": null, + "user_data": {}, + "telephone": null, + "post_code": null, + "license_number": null + } + }, + "bldg_segments": [ + { + "display_name": "Unnamed_Bldg_Segment", + "name": "Unnamed_Bldg_Segment", + "phi_certification": { + "display_name": "05d54e96-788c-4bbc-afe4-d9c929b075ff", + "phpp_version": 9, + "identifier": "05d54e96-788c-4bbc-afe4-d9c929b075ff", + "user_data": {}, + "attributes": { + "certification_type": "1-PASSIVE HOUSE", + "enerphit_type": "2-ENERGY DEMAND METHOD", + "building_category_type": "1-RESIDENTIAL BUILDING", + "certification_class": "1-CLASSIC", + "tfa_override": null, + "ihg_type": "2-STANDARD", + "building_use_type": "10-DWELLING", + "phpp_version": 9, + "occupancy_type": "1-STANDARD (ONLY FOR RESIDENTIAL BUILDINGS)", + "primary_energy_type": "2-PER (RENEWABLE)", + "retrofit_type": "1-NEW BUILDING" + } + }, + "phius_certification": { + "display_name": "438f2172-542e-4cc6-9bb0-5ad591dcf6ce", + "building_category_type": { + "value": "1-RESIDENTIAL BUILDING" + }, + "localization_selection_type": 2, + "building_use_type": { + "value": "1-RESIDENTIAL" + }, + "int_gains_num_toilets": 1, + "int_gains_dhw_marginal_perf_ratio": null, + "certification_program": { + "value": "7-PHIUS 2021 CORE" + }, + "icfa_override": null, + "building_type": { + "value": "1-NEW_CONSTRUCTION" + }, + "building_status": { + "value": "1-IN_PLANNING" + }, + "PHIUS2021_cooling_load": 10.0, + "int_gains_toilet_room_util_pat": null, + "identifier": "438f2172-542e-4cc6-9bb0-5ad591dcf6ce", + "PHIUS2021_cooling_demand": 15.0, + "user_data": {}, + "int_gains_evap_per_person": 15, + "PHIUS2021_heating_load": 10.0, + "int_gains_use_school_defaults": false, + "int_gains_flush_heat_loss": true, + "PHIUS2021_heating_demand": 15.0 + }, + "co2e_factors": { + "factors": [] + }, + "num_dwelling_units": 1, + "site": { + "display_name": "3bd2d884-7753-415a-aa41-55a3abe85023", + "phpp_library_codes": { + "display_name": "US0055b-New York", + "identifier": "8f9d0d00-9fbb-4385-8d07-c0eccc437422", + "user_data": {}, + "dataset_name": "US0055b-New York", + "region_code": "New York", + "country_code": "US-United States of America" + }, + "climate": { + "display_name": "New York", + "station_elevation": 0.0, + "summer_daily_temperature_swing": 8.0, + "ground": { + "display_name": "69a7e736-3407-41a0-9020-1b5a355b2b3e", + "ground_thermal_conductivity": 2, + "ground_heat_capacity": 1000, + "identifier": "69a7e736-3407-41a0-9020-1b5a355b2b3e", + "depth_groundwater": 3, + "flow_rate_groundwater": 0.050000000000000003, + "user_data": {}, + "ground_density": 2000 + }, + "monthly_temps": { + "display_name": "1821fd59-0918-45bc-9142-f0a66cea06ed", + "ground_temps": { + "display_name": "5b577a27-49c6-4d7b-8db3-5fc01a2a9753", + "april": 0.0, + "march": 0.0, + "october": 0.0, + "november": 0.0, + "february": 0.0, + "june": 0.0, + "may": 0.0, + "july": 0.0, + "identifier": "5b577a27-49c6-4d7b-8db3-5fc01a2a9753", + "user_data": {}, + "august": 0.0, + "december": 0.0, + "january": 0.0, + "september": 0.0 }, - "type": "EnergyWindowMaterialGlazingReviveProperties", - "labor_fraction": 0.40000000000000002, - "id_num": 0, - "lifetime_years": 25, - "kg_CO2_per_m2": { - "unit": "KG/M2", - "value": 0.0 + "sky_temps": { + "display_name": "907d6808-14b5-4944-b6cc-e91b11851e81", + "april": 0.0, + "march": 0.0, + "october": 0.0, + "november": 0.0, + "february": 0.0, + "june": 0.0, + "may": 0.0, + "july": 0.0, + "identifier": "907d6808-14b5-4944-b6cc-e91b11851e81", + "user_data": {}, + "august": 0.0, + "december": 0.0, + "january": 0.0, + "september": 0.0 + }, + "identifier": "1821fd59-0918-45bc-9142-f0a66cea06ed", + "dewpoints": { + "display_name": "e833d25e-c4c8-482d-b0bd-3d0e8a6f053c", + "april": 0.0, + "march": 0.0, + "october": 0.0, + "november": 0.0, + "february": 0.0, + "june": 0.0, + "may": 0.0, + "july": 0.0, + "identifier": "e833d25e-c4c8-482d-b0bd-3d0e8a6f053c", + "user_data": {}, + "august": 0.0, + "december": 0.0, + "january": 0.0, + "september": 0.0 + }, + "user_data": {}, + "air_temps": { + "display_name": "532ff38f-0928-489c-91c3-ca635b60c464", + "april": 0.0, + "march": 0.0, + "october": 0.0, + "november": 0.0, + "february": 0.0, + "june": 0.0, + "may": 0.0, + "july": 0.0, + "identifier": "532ff38f-0928-489c-91c3-ca635b60c464", + "user_data": {}, + "august": 0.0, + "december": 0.0, + "january": 0.0, + "september": 0.0 } }, - "type": "EnergyWindowMaterialGlazingsProperties" - } - }, - { - "properties": { - "ph": { - "id_num": 0, - "divisions": { - "row_heights": [], - "column_widths": [], - "cells": [] + "average_wind_speed": 4.0, + "identifier": "45081239-6b64-478b-88f4-b39775e408b9", + "peak_loads": { + "display_name": "cac16091-04be-4964-8245-cd1d9c38f7ff", + "heat_load_1": { + "display_name": "1cbbf51b-844e-4ef8-9f80-16673bfa8e51", + "rad_global": 0.0, + "rad_north": 0.0, + "rad_south": 0.0, + "rad_east": 0.0, + "identifier": "1cbbf51b-844e-4ef8-9f80-16673bfa8e51", + "temp": 0.0, + "sky_temp": null, + "rad_west": 0.0, + "user_data": {}, + "ground_temp": null, + "dewpoint": null + }, + "heat_load_2": { + "display_name": "86e744a0-d9de-4f5e-aefa-834e07ae69e3", + "rad_global": 0.0, + "rad_north": 0.0, + "rad_south": 0.0, + "rad_east": 0.0, + "identifier": "86e744a0-d9de-4f5e-aefa-834e07ae69e3", + "temp": 0.0, + "sky_temp": null, + "rad_west": 0.0, + "user_data": {}, + "ground_temp": null, + "dewpoint": null + }, + "cooling_load_2": { + "display_name": "612d9a29-1862-4506-a0e1-6c7ab657fb2c", + "rad_global": 0.0, + "rad_north": 0.0, + "rad_south": 0.0, + "rad_east": 0.0, + "identifier": "612d9a29-1862-4506-a0e1-6c7ab657fb2c", + "temp": 0.0, + "sky_temp": null, + "rad_west": 0.0, + "user_data": {}, + "ground_temp": null, + "dewpoint": null + }, + "cooling_load_1": { + "display_name": "49e053cd-be98-470a-9d1d-dbb8b80126ce", + "rad_global": 0.0, + "rad_north": 0.0, + "rad_south": 0.0, + "rad_east": 0.0, + "identifier": "49e053cd-be98-470a-9d1d-dbb8b80126ce", + "temp": 0.0, + "sky_temp": null, + "rad_west": 0.0, + "user_data": {}, + "ground_temp": null, + "dewpoint": null }, + "identifier": "cac16091-04be-4964-8245-cd1d9c38f7ff", "user_data": {} }, - "type": "EnergyMaterialProperties", - "revive": { - "cost_per_m2": { - "unit": "COST/M2", - "value": 0.0 + "monthly_radiation": { + "display_name": "3445fbd3-0c33-4551-a53c-dd62c3d962af", + "south": { + "display_name": "b515c2e6-a38e-4cb1-9903-935e1941b301", + "april": 0.0, + "march": 0.0, + "october": 0.0, + "november": 0.0, + "february": 0.0, + "june": 0.0, + "may": 0.0, + "july": 0.0, + "identifier": "b515c2e6-a38e-4cb1-9903-935e1941b301", + "user_data": {}, + "august": 0.0, + "december": 0.0, + "january": 0.0, + "september": 0.0 }, - "type": "EnergyMaterialReviveProperties", - "labor_fraction": 0.40000000000000002, - "id_num": 0, - "lifetime_years": 25, - "kg_CO2_per_m2": { - "unit": "KG/M2", - "value": 0.0 - } - } - }, - "visible_absorptance": 0.20000000000000001, - "roughness": "MediumSmooth", - "solar_absorptance": 0.20000000000000001, - "type": "EnergyMaterial", - "density": 368.0, - "specific_heat": 590.0, - "thermal_absorptance": 0.90000000000000002, - "conductivity": 0.059999999999999998, - "identifier": "Generic Acoustic Tile", - "thickness": 0.02 - } - ], - "roof_ceiling_set": { - "exterior_construction": "Generic Roof", - "type": "RoofCeilingConstructionSetAbridged", - "ground_construction": "Generic Underground Roof", - "interior_construction": "Generic Interior Ceiling" - }, - "wall_set": { - "exterior_construction": "Generic Exterior Wall", - "type": "WallConstructionSetAbridged", - "ground_construction": "Generic Underground Wall", - "interior_construction": "Generic Interior Wall" - }, - "aperture_set": { - "window_construction": "Generic Double Pane", - "type": "ApertureConstructionSetAbridged", - "interior_construction": "Generic Single Pane", - "skylight_construction": "Generic Double Pane", - "operable_construction": "Generic Double Pane" - }, - "floor_set": { - "exterior_construction": "Generic Exposed Floor", - "type": "FloorConstructionSetAbridged", - "ground_construction": "Generic Ground Slab", - "interior_construction": "Generic Interior Floor" - }, - "air_boundary_construction": "Generic Air Boundary" - }, - "ventilation_simulation_control": { - "vent_control_type": "SingleZone", - "type": "VentilationSimulationControl", - "reference_pressure": 101325.0, - "building_type": "LowRise", - "reference_temperature": 20.0, - "reference_humidity_ratio": 0.0, - "long_axis_angle": 0.0, - "aspect_ratio": 1.0 - }, - "schedule_type_limits": [ - { - "numeric_type": "Continuous", - "type": "ScheduleTypeLimit", - "unit_type": "ActivityLevel", - "upper_limit": { - "type": "NoLimit" - }, - "identifier": "Activity Level", - "lower_limit": 0.0 - }, - { - "numeric_type": "Continuous", - "type": "ScheduleTypeLimit", - "unit_type": "Temperature", - "upper_limit": { - "type": "NoLimit" - }, - "identifier": "Temperature", - "lower_limit": -273.14999999999998 - }, - { - "numeric_type": "Continuous", - "type": "ScheduleTypeLimit", - "unit_type": "Dimensionless", - "upper_limit": 1.0, - "identifier": "Fractional", - "lower_limit": 0.0 - } - ] - }, - "radiance": { - "modifiers": [], - "type": "ModelRadianceProperties", - "global_modifier_set": { - "door_set": { - "interior_modifier": "generic_opaque_door_0.50", - "type": "DoorModifierSetAbridged", - "interior_glass_modifier": "generic_interior_window_vis_0.88", - "exterior_modifier": "generic_opaque_door_0.50", - "exterior_glass_modifier": "generic_exterior_window_vis_0.64", - "overhead_modifier": "generic_opaque_door_0.50" - }, - "context_modifier": "generic_context_0.20", - "shade_set": { - "type": "ShadeModifierSetAbridged", - "exterior_modifier": "generic_exterior_shade_0.35", - "interior_modifier": "generic_interior_shade_0.50" - }, - "air_boundary_modifier": "air_boundary", - "type": "GlobalModifierSet", - "modifiers": [ - { - "g_reflectance": 0.80000000000000004, - "identifier": "generic_ceiling_0.80", - "r_reflectance": 0.80000000000000004, - "roughness": 0.0, - "specularity": 0.0, - "dependencies": [], - "type": "Plastic", - "b_reflectance": 0.80000000000000004, - "modifier": null - }, - { - "g_reflectance": 0.5, - "identifier": "generic_wall_0.50", - "r_reflectance": 0.5, - "roughness": 0.0, - "specularity": 0.0, - "dependencies": [], - "type": "Plastic", - "b_reflectance": 0.5, - "modifier": null - }, - { - "g_reflectance": 0.5, - "identifier": "generic_opaque_door_0.50", - "r_reflectance": 0.5, - "roughness": 0.0, - "specularity": 0.0, - "dependencies": [], - "type": "Plastic", - "b_reflectance": 0.5, - "modifier": null - }, - { - "g_reflectance": 0.5, - "identifier": "generic_interior_shade_0.50", - "r_reflectance": 0.5, - "roughness": 0.0, - "specularity": 0.0, - "dependencies": [], - "type": "Plastic", - "b_reflectance": 0.5, - "modifier": null - }, - { - "modifier": null, - "g_reflectance": 1.0, - "identifier": "air_boundary", - "roughness": 0.0, - "r_reflectance": 1.0, - "transmitted_diff": 1.0, - "dependencies": [], - "b_reflectance": 1.0, - "specularity": 0.0, - "type": "Trans", - "transmitted_spec": 1.0 - }, - { - "type": "Glass", - "b_transmissivity": 0.95841543286105957, - "refraction_index": null, - "dependencies": [], - "identifier": "generic_interior_window_vis_0.88", - "r_transmissivity": 0.95841543286105957, - "g_transmissivity": 0.95841543286105957, - "modifier": null + "west": { + "display_name": "a5f347c7-7178-4f49-a421-815326fdda81", + "april": 0.0, + "march": 0.0, + "october": 0.0, + "november": 0.0, + "february": 0.0, + "june": 0.0, + "may": 0.0, + "july": 0.0, + "identifier": "a5f347c7-7178-4f49-a421-815326fdda81", + "user_data": {}, + "august": 0.0, + "december": 0.0, + "january": 0.0, + "september": 0.0 + }, + "east": { + "display_name": "44c03149-31ba-4298-8106-d53c9161fef4", + "april": 0.0, + "march": 0.0, + "october": 0.0, + "november": 0.0, + "february": 0.0, + "june": 0.0, + "may": 0.0, + "july": 0.0, + "identifier": "44c03149-31ba-4298-8106-d53c9161fef4", + "user_data": {}, + "august": 0.0, + "december": 0.0, + "january": 0.0, + "september": 0.0 + }, + "north": { + "display_name": "32ac1d44-4832-4509-91c2-87ae43846abb", + "april": 0.0, + "march": 0.0, + "october": 0.0, + "november": 0.0, + "february": 0.0, + "june": 0.0, + "may": 0.0, + "july": 0.0, + "identifier": "32ac1d44-4832-4509-91c2-87ae43846abb", + "user_data": {}, + "august": 0.0, + "december": 0.0, + "january": 0.0, + "september": 0.0 + }, + "identifier": "3445fbd3-0c33-4551-a53c-dd62c3d962af", + "glob": { + "display_name": "f7a2e88c-0037-411b-b136-dcd80fe37328", + "april": 0.0, + "march": 0.0, + "october": 0.0, + "november": 0.0, + "february": 0.0, + "june": 0.0, + "may": 0.0, + "july": 0.0, + "identifier": "f7a2e88c-0037-411b-b136-dcd80fe37328", + "user_data": {}, + "august": 0.0, + "december": 0.0, + "january": 0.0, + "september": 0.0 + }, + "user_data": {} + }, + "user_data": {} + }, + "location": { + "display_name": "6e86af8d-8019-4ec6-9b04-2a25c64c69aa", + "latitude": 40.600000000000001, + "longitude": -73.799999999999997, + "climate_zone": 1, + "identifier": "6e86af8d-8019-4ec6-9b04-2a25c64c69aa", + "user_data": {}, + "site_elevation": null, + "hours_from_UTC": -4 + }, + "identifier": "3bd2d884-7753-415a-aa41-55a3abe85023", + "user_data": {} }, - { - "g_reflectance": 0.34999999999999998, - "identifier": "generic_exterior_shade_0.35", - "r_reflectance": 0.34999999999999998, - "roughness": 0.0, - "specularity": 0.0, - "dependencies": [], - "type": "Plastic", - "b_reflectance": 0.34999999999999998, - "modifier": null + "set_points": { + "display_name": "aba69e04-e970-45a0-8a7c-4fdd1b978187", + "winter": 20.0, + "identifier": "aba69e04-e970-45a0-8a7c-4fdd1b978187", + "user_data": {}, + "summer": 25.0 }, - { - "g_reflectance": 0.20000000000000001, - "identifier": "generic_floor_0.20", - "r_reflectance": 0.20000000000000001, - "roughness": 0.0, - "specularity": 0.0, - "dependencies": [], - "type": "Plastic", - "b_reflectance": 0.20000000000000001, - "modifier": null + "summer_hrv_bypass_mode": { + "value": "4-ALWAYS" }, - { - "type": "Glass", - "b_transmissivity": 0.69757618153843315, - "refraction_index": null, - "dependencies": [], - "identifier": "generic_exterior_window_vis_0.64", - "r_transmissivity": 0.69757618153843315, - "g_transmissivity": 0.69757618153843315, - "modifier": null + "identifier": "b17221e3-0510-44b1-98f1-70db023d2231", + "source_energy_factors": { + "factors": [] }, - { - "g_reflectance": 0.20000000000000001, - "identifier": "generic_context_0.20", - "r_reflectance": 0.20000000000000001, - "roughness": 0.0, - "specularity": 0.0, - "dependencies": [], - "type": "Plastic", - "b_reflectance": 0.20000000000000001, - "modifier": null + "non_combustible_materials": false, + "user_data": {}, + "thermal_bridges": {}, + "mech_room_temp": 20.0, + "num_floor_levels": 1, + "wind_exposure_type": { + "value": "1-SEVERAL_SIDES_EXPOSED_NO_SCREENING" } - ], - "roof_ceiling_set": { - "type": "RoofCeilingModifierSetAbridged", - "exterior_modifier": "generic_ceiling_0.80", - "interior_modifier": "generic_ceiling_0.80" - }, - "wall_set": { - "type": "WallModifierSetAbridged", - "exterior_modifier": "generic_wall_0.50", - "interior_modifier": "generic_wall_0.50" - }, - "aperture_set": { - "window_modifier": "generic_exterior_window_vis_0.64", - "interior_modifier": "generic_interior_window_vis_0.88", - "type": "ApertureModifierSetAbridged", - "skylight_modifier": "generic_exterior_window_vis_0.64", - "operable_modifier": "generic_exterior_window_vis_0.64" - }, - "floor_set": { - "type": "FloorModifierSetAbridged", - "exterior_modifier": "generic_floor_0.20", - "interior_modifier": "generic_floor_0.20" } - }, - "modifier_sets": [] + ], + "type": "ModelPhPropertiesAbridged", + "id_num": 0 }, "ph_hvac": { "type": "ModelPhHvacProperties" @@ -2863,53 +2933,24 @@ "type": "ModelProperties" }, "type": "Model", - "angle_tolerance": 1.0, - "identifier": "unnamed_26f1f19f", + "version": "1.58.5", "rooms": [ { + "display_name": "Room_1", "faces": [ { - "properties": { - "revive": { - "id_num": 0, - "type": "FaceRevivePropertiesAbridged" - }, - "ph": { - "id_num": 0, - "type": "FacePhPropertiesAbridged" - }, - "energy": { - "type": "FaceEnergyPropertiesAbridged" - }, - "radiance": { - "type": "FaceRadiancePropertiesAbridged" - }, - "ph_hvac": { - "type": "FacePhHvacPropertiesAbridged" + "display_name": "Room_1_129c5bec..Face0", + "face_type": "Wall", + "boundary_condition": { + "view_factor": { + "type": "Autocalculate" }, - "type": "FacePropertiesAbridged" + "type": "Outdoors", + "wind_exposure": true, + "sun_exposure": true }, - "type": "Face", + "identifier": "Room_1_129c5bec..Face0", "geometry": { - "plane": { - "x": [ - 1.0, - 0.0, - 0.0 - ], - "type": "Plane", - "n": [ - 0.0, - -1.0, - 0.0 - ], - "o": [ - 0.0, - 0.0, - 0.0 - ] - }, - "type": "Face3D", "boundary": [ [ 0.0, @@ -2931,62 +2972,62 @@ 0.0, 3.0 ] - ] - }, - "identifier": "Room_1_96fbac06..Face0", - "face_type": "Wall", - "boundary_condition": { - "type": "Outdoors", - "view_factor": { - "type": "Autocalculate" + ], + "plane": { + "x": [ + 1.0, + 0.0, + 0.0 + ], + "type": "Plane", + "o": [ + 0.0, + 0.0, + 0.0 + ], + "n": [ + 0.0, + -1.0, + 0.0 + ] }, - "sun_exposure": true, - "wind_exposure": true + "type": "Face3D" }, - "display_name": "Room_1_96fbac06..Face0" - }, - { "properties": { "revive": { - "id_num": 0, - "type": "FaceRevivePropertiesAbridged" + "type": "FaceRevivePropertiesAbridged", + "id_num": 0 }, - "ph": { - "id_num": 0, - "type": "FacePhPropertiesAbridged" + "radiance": { + "type": "FaceRadiancePropertiesAbridged" }, "energy": { "type": "FaceEnergyPropertiesAbridged" }, - "radiance": { - "type": "FaceRadiancePropertiesAbridged" + "ph": { + "type": "FacePhPropertiesAbridged", + "id_num": 0 }, "ph_hvac": { "type": "FacePhHvacPropertiesAbridged" }, "type": "FacePropertiesAbridged" }, - "type": "Face", - "geometry": { - "plane": { - "x": [ - 0.0, - 1.0, - 0.0 - ], - "type": "Plane", - "n": [ - 1.0, - 0.0, - -5.5511151231257827e-17 - ], - "o": [ - 5.0, - 0.0, - 0.0 - ] + "type": "Face" + }, + { + "display_name": "Room_1_129c5bec..Face1", + "face_type": "Wall", + "boundary_condition": { + "view_factor": { + "type": "Autocalculate" }, - "type": "Face3D", + "type": "Outdoors", + "wind_exposure": true, + "sun_exposure": true + }, + "identifier": "Room_1_129c5bec..Face1", + "geometry": { "boundary": [ [ 5.0, @@ -3008,62 +3049,62 @@ 4.0, 3.0 ] - ] - }, - "identifier": "Room_1_96fbac06..Face1", - "face_type": "Wall", - "boundary_condition": { - "type": "Outdoors", - "view_factor": { - "type": "Autocalculate" + ], + "plane": { + "x": [ + 0.0, + 1.0, + 0.0 + ], + "type": "Plane", + "o": [ + 5.0, + 0.0, + 0.0 + ], + "n": [ + 1.0, + 0.0, + -5.5511151231257827e-17 + ] }, - "sun_exposure": true, - "wind_exposure": true + "type": "Face3D" }, - "display_name": "Room_1_96fbac06..Face1" - }, - { "properties": { "revive": { - "id_num": 0, - "type": "FaceRevivePropertiesAbridged" + "type": "FaceRevivePropertiesAbridged", + "id_num": 0 }, - "ph": { - "id_num": 0, - "type": "FacePhPropertiesAbridged" + "radiance": { + "type": "FaceRadiancePropertiesAbridged" }, "energy": { "type": "FaceEnergyPropertiesAbridged" }, - "radiance": { - "type": "FaceRadiancePropertiesAbridged" + "ph": { + "type": "FacePhPropertiesAbridged", + "id_num": 0 }, "ph_hvac": { - "type": "FacePhHvacPropertiesAbridged" - }, - "type": "FacePropertiesAbridged" - }, - "type": "Face", - "geometry": { - "plane": { - "x": [ - -1.0, - 0.0, - 0.0 - ], - "type": "Plane", - "n": [ - 0.0, - 1.0, - -0.0 - ], - "o": [ - 5.0, - 4.0, - 0.0 - ] + "type": "FacePhHvacPropertiesAbridged" + }, + "type": "FacePropertiesAbridged" + }, + "type": "Face" + }, + { + "display_name": "Room_1_129c5bec..Face2", + "face_type": "Wall", + "boundary_condition": { + "view_factor": { + "type": "Autocalculate" }, - "type": "Face3D", + "type": "Outdoors", + "wind_exposure": true, + "sun_exposure": true + }, + "identifier": "Room_1_129c5bec..Face2", + "geometry": { "boundary": [ [ 5.0, @@ -3085,62 +3126,62 @@ 4.0, 3.0 ] - ] - }, - "identifier": "Room_1_96fbac06..Face2", - "face_type": "Wall", - "boundary_condition": { - "type": "Outdoors", - "view_factor": { - "type": "Autocalculate" + ], + "plane": { + "x": [ + -1.0, + 0.0, + 0.0 + ], + "type": "Plane", + "o": [ + 5.0, + 4.0, + 0.0 + ], + "n": [ + 0.0, + 1.0, + -0.0 + ] }, - "sun_exposure": true, - "wind_exposure": true + "type": "Face3D" }, - "display_name": "Room_1_96fbac06..Face2" - }, - { "properties": { "revive": { - "id_num": 0, - "type": "FaceRevivePropertiesAbridged" + "type": "FaceRevivePropertiesAbridged", + "id_num": 0 }, - "ph": { - "id_num": 0, - "type": "FacePhPropertiesAbridged" + "radiance": { + "type": "FaceRadiancePropertiesAbridged" }, "energy": { "type": "FaceEnergyPropertiesAbridged" }, - "radiance": { - "type": "FaceRadiancePropertiesAbridged" + "ph": { + "type": "FacePhPropertiesAbridged", + "id_num": 0 }, "ph_hvac": { "type": "FacePhHvacPropertiesAbridged" }, "type": "FacePropertiesAbridged" }, - "type": "Face", - "geometry": { - "plane": { - "x": [ - 0.0, - -1.0, - 0.0 - ], - "type": "Plane", - "n": [ - -1.0, - 0.0, - 0.0 - ], - "o": [ - 0.0, - 4.0, - 0.0 - ] + "type": "Face" + }, + { + "display_name": "Room_1_129c5bec..Face3", + "face_type": "Wall", + "boundary_condition": { + "view_factor": { + "type": "Autocalculate" }, - "type": "Face3D", + "type": "Outdoors", + "wind_exposure": true, + "sun_exposure": true + }, + "identifier": "Room_1_129c5bec..Face3", + "geometry": { "boundary": [ [ 0.0, @@ -3162,62 +3203,57 @@ 0.0, 3.0 ] - ] - }, - "identifier": "Room_1_96fbac06..Face3", - "face_type": "Wall", - "boundary_condition": { - "type": "Outdoors", - "view_factor": { - "type": "Autocalculate" + ], + "plane": { + "x": [ + 0.0, + -1.0, + 0.0 + ], + "type": "Plane", + "o": [ + 0.0, + 4.0, + 0.0 + ], + "n": [ + -1.0, + 0.0, + 0.0 + ] }, - "sun_exposure": true, - "wind_exposure": true + "type": "Face3D" }, - "display_name": "Room_1_96fbac06..Face3" - }, - { "properties": { "revive": { - "id_num": 0, - "type": "FaceRevivePropertiesAbridged" + "type": "FaceRevivePropertiesAbridged", + "id_num": 0 }, - "ph": { - "id_num": 0, - "type": "FacePhPropertiesAbridged" + "radiance": { + "type": "FaceRadiancePropertiesAbridged" }, "energy": { "type": "FaceEnergyPropertiesAbridged" }, - "radiance": { - "type": "FaceRadiancePropertiesAbridged" + "ph": { + "type": "FacePhPropertiesAbridged", + "id_num": 0 }, "ph_hvac": { "type": "FacePhHvacPropertiesAbridged" }, "type": "FacePropertiesAbridged" }, - "type": "Face", + "type": "Face" + }, + { + "display_name": "Room_1_129c5bec..Face4", + "face_type": "Floor", + "boundary_condition": { + "type": "Ground" + }, + "identifier": "Room_1_129c5bec..Face4", "geometry": { - "plane": { - "x": [ - 0.0, - 1.0, - 0.0 - ], - "type": "Plane", - "n": [ - 0.0, - 0.0, - -1.0 - ], - "o": [ - 0.0, - 0.0, - 0.0 - ] - }, - "type": "Face3D", "boundary": [ [ 5.0, @@ -3239,57 +3275,62 @@ 4.0, 0.0 ] - ] - }, - "identifier": "Room_1_96fbac06..Face4", - "face_type": "Floor", - "boundary_condition": { - "type": "Ground" + ], + "plane": { + "x": [ + 0.0, + 1.0, + 0.0 + ], + "type": "Plane", + "o": [ + 0.0, + 0.0, + 0.0 + ], + "n": [ + 0.0, + 0.0, + -1.0 + ] + }, + "type": "Face3D" }, - "display_name": "Room_1_96fbac06..Face4" - }, - { "properties": { "revive": { - "id_num": 0, - "type": "FaceRevivePropertiesAbridged" + "type": "FaceRevivePropertiesAbridged", + "id_num": 0 }, - "ph": { - "id_num": 0, - "type": "FacePhPropertiesAbridged" + "radiance": { + "type": "FaceRadiancePropertiesAbridged" }, "energy": { "type": "FaceEnergyPropertiesAbridged" }, - "radiance": { - "type": "FaceRadiancePropertiesAbridged" + "ph": { + "type": "FacePhPropertiesAbridged", + "id_num": 0 }, "ph_hvac": { "type": "FacePhHvacPropertiesAbridged" }, "type": "FacePropertiesAbridged" }, - "type": "Face", - "geometry": { - "plane": { - "x": [ - 1.0, - 0.0, - -5.5511151231257827e-17 - ], - "type": "Plane", - "n": [ - 5.5511151231257827e-17, - -0.0, - 1.0 - ], - "o": [ - 0.0, - 0.0, - 3.0 - ] + "type": "Face" + }, + { + "display_name": "Room_1_129c5bec..Face5", + "face_type": "RoofCeiling", + "boundary_condition": { + "view_factor": { + "type": "Autocalculate" }, - "type": "Face3D", + "type": "Outdoors", + "wind_exposure": true, + "sun_exposure": true + }, + "identifier": "Room_1_129c5bec..Face5", + "geometry": { "boundary": [ [ 0.0, @@ -3311,59 +3352,85 @@ 4.0, 3.0 ] - ] + ], + "plane": { + "x": [ + 1.0, + 0.0, + -5.5511151231257827e-17 + ], + "type": "Plane", + "o": [ + 0.0, + 0.0, + 3.0 + ], + "n": [ + 5.5511151231257827e-17, + -0.0, + 1.0 + ] + }, + "type": "Face3D" }, - "identifier": "Room_1_96fbac06..Face5", - "face_type": "RoofCeiling", - "boundary_condition": { - "type": "Outdoors", - "view_factor": { - "type": "Autocalculate" + "properties": { + "revive": { + "type": "FaceRevivePropertiesAbridged", + "id_num": 0 + }, + "radiance": { + "type": "FaceRadiancePropertiesAbridged" + }, + "energy": { + "type": "FaceEnergyPropertiesAbridged" + }, + "ph": { + "type": "FacePhPropertiesAbridged", + "id_num": 0 + }, + "ph_hvac": { + "type": "FacePhHvacPropertiesAbridged" }, - "sun_exposure": true, - "wind_exposure": true + "type": "FacePropertiesAbridged" }, - "display_name": "Room_1_96fbac06..Face5" + "type": "Face" } ], + "identifier": "Room_1_129c5bec", "properties": { "revive": { "type": "RoomRevivePropertiesAbridged" }, - "ph": { - "ph_bldg_segment_id": "3e7132cc-0f1a-4e6e-a27b-35c17cda15f7", - "type": "RoomPhPropertiesAbridged", - "spaces": [], - "specific_heat_capacity": "1-LIGHTWEIGHT", - "ph_foundations": [] + "radiance": { + "type": "RoomRadiancePropertiesAbridged" }, "energy": { "type": "RoomEnergyPropertiesAbridged", "program_type": "Generic Office Program", - "hvac": "Room_1_96fbac06 Ideal Loads Air System" + "hvac": "Room_1_129c5bec Ideal Loads Air System" }, - "radiance": { - "type": "RoomRadiancePropertiesAbridged" + "ph": { + "ph_foundations": [], + "ph_bldg_segment_id": "b17221e3-0510-44b1-98f1-70db023d2231", + "spaces": [], + "type": "RoomPhPropertiesAbridged", + "specific_heat_capacity": "1-LIGHTWEIGHT" }, "ph_hvac": { - "supportive_devices": [], - "type": "RoomPhHvacPropertiesAbridged", - "renewable_devices": [], + "heating_systems": [], "heat_pump_systems": [], + "exhaust_vent_devices": [], + "supportive_devices": [], "id_num": 0, - "heating_systems": [], + "renewable_devices": [], + "type": "RoomPhHvacPropertiesAbridged", "hot_water_system": null, - "exhaust_vent_devices": [], "ventilation_system": null }, "type": "RoomPropertiesAbridged" }, - "type": "Room", - "identifier": "Room_1_96fbac06", - "display_name": "Room_1" + "type": "Room" } ], - "tolerance": 0.001, - "display_name": "unnamed", - "version": "1.58.4" + "angle_tolerance": 1.0 } \ 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 91b6fc6..a069713 100644 --- a/tests/_test_reference_files_hbjson/Default_Room_Single_Zone.json +++ b/tests/_test_reference_files_hbjson/Default_Room_Single_Zone.json @@ -1,47 +1,19 @@ { + "display_name": "Room_2", "faces": [ { - "properties": { - "revive": { - "id_num": 0, - "type": "FaceReviveProperties" - }, - "ph": { - "id_num": 0, - "type": "FacePhProperties" - }, - "energy": { - "type": "FaceEnergyProperties" - }, - "radiance": { - "type": "FaceRadianceProperties" - }, - "ph_hvac": { - "type": "FacePhHvacProperties" + "display_name": "Room_2_684ff8ea..Face0", + "face_type": "Wall", + "boundary_condition": { + "view_factor": { + "type": "Autocalculate" }, - "type": "FaceProperties" + "type": "Outdoors", + "wind_exposure": true, + "sun_exposure": true }, - "type": "Face", + "identifier": "Room_2_684ff8ea..Face0", "geometry": { - "plane": { - "x": [ - 1.0, - 0.0, - 0.0 - ], - "type": "Plane", - "n": [ - 0.0, - -1.0, - 0.0 - ], - "o": [ - 0.0, - 0.0, - 0.0 - ] - }, - "type": "Face3D", "boundary": [ [ 0.0, @@ -63,62 +35,62 @@ 0.0, 3.0 ] - ] - }, - "identifier": "Room_2_b7c5199c..Face0", - "face_type": "Wall", - "boundary_condition": { - "type": "Outdoors", - "view_factor": { - "type": "Autocalculate" + ], + "plane": { + "x": [ + 1.0, + 0.0, + 0.0 + ], + "type": "Plane", + "o": [ + 0.0, + 0.0, + 0.0 + ], + "n": [ + 0.0, + -1.0, + 0.0 + ] }, - "sun_exposure": true, - "wind_exposure": true + "type": "Face3D" }, - "display_name": "Room_2_b7c5199c..Face0" - }, - { "properties": { "revive": { - "id_num": 0, - "type": "FaceReviveProperties" + "type": "FaceReviveProperties", + "id_num": 0 }, - "ph": { - "id_num": 0, - "type": "FacePhProperties" + "radiance": { + "type": "FaceRadianceProperties" }, "energy": { "type": "FaceEnergyProperties" }, - "radiance": { - "type": "FaceRadianceProperties" + "ph": { + "type": "FacePhProperties", + "id_num": 0 }, "ph_hvac": { "type": "FacePhHvacProperties" }, "type": "FaceProperties" }, - "type": "Face", - "geometry": { - "plane": { - "x": [ - 0.0, - 1.0, - 0.0 - ], - "type": "Plane", - "n": [ - 1.0, - 0.0, - -5.5511151231257827e-17 - ], - "o": [ - 5.0, - 0.0, - 0.0 - ] + "type": "Face" + }, + { + "display_name": "Room_2_684ff8ea..Face1", + "face_type": "Wall", + "boundary_condition": { + "view_factor": { + "type": "Autocalculate" }, - "type": "Face3D", + "type": "Outdoors", + "wind_exposure": true, + "sun_exposure": true + }, + "identifier": "Room_2_684ff8ea..Face1", + "geometry": { "boundary": [ [ 5.0, @@ -140,62 +112,62 @@ 4.0, 3.0 ] - ] - }, - "identifier": "Room_2_b7c5199c..Face1", - "face_type": "Wall", - "boundary_condition": { - "type": "Outdoors", - "view_factor": { - "type": "Autocalculate" + ], + "plane": { + "x": [ + 0.0, + 1.0, + 0.0 + ], + "type": "Plane", + "o": [ + 5.0, + 0.0, + 0.0 + ], + "n": [ + 1.0, + 0.0, + -5.5511151231257827e-17 + ] }, - "sun_exposure": true, - "wind_exposure": true + "type": "Face3D" }, - "display_name": "Room_2_b7c5199c..Face1" - }, - { "properties": { "revive": { - "id_num": 0, - "type": "FaceReviveProperties" + "type": "FaceReviveProperties", + "id_num": 0 }, - "ph": { - "id_num": 0, - "type": "FacePhProperties" + "radiance": { + "type": "FaceRadianceProperties" }, "energy": { "type": "FaceEnergyProperties" }, - "radiance": { - "type": "FaceRadianceProperties" + "ph": { + "type": "FacePhProperties", + "id_num": 0 }, "ph_hvac": { "type": "FacePhHvacProperties" }, "type": "FaceProperties" }, - "type": "Face", - "geometry": { - "plane": { - "x": [ - -1.0, - 0.0, - 0.0 - ], - "type": "Plane", - "n": [ - 0.0, - 1.0, - -0.0 - ], - "o": [ - 5.0, - 4.0, - 0.0 - ] + "type": "Face" + }, + { + "display_name": "Room_2_684ff8ea..Face2", + "face_type": "Wall", + "boundary_condition": { + "view_factor": { + "type": "Autocalculate" }, - "type": "Face3D", + "type": "Outdoors", + "wind_exposure": true, + "sun_exposure": true + }, + "identifier": "Room_2_684ff8ea..Face2", + "geometry": { "boundary": [ [ 5.0, @@ -217,62 +189,62 @@ 4.0, 3.0 ] - ] - }, - "identifier": "Room_2_b7c5199c..Face2", - "face_type": "Wall", - "boundary_condition": { - "type": "Outdoors", - "view_factor": { - "type": "Autocalculate" + ], + "plane": { + "x": [ + -1.0, + 0.0, + 0.0 + ], + "type": "Plane", + "o": [ + 5.0, + 4.0, + 0.0 + ], + "n": [ + 0.0, + 1.0, + -0.0 + ] }, - "sun_exposure": true, - "wind_exposure": true + "type": "Face3D" }, - "display_name": "Room_2_b7c5199c..Face2" - }, - { "properties": { "revive": { - "id_num": 0, - "type": "FaceReviveProperties" + "type": "FaceReviveProperties", + "id_num": 0 }, - "ph": { - "id_num": 0, - "type": "FacePhProperties" + "radiance": { + "type": "FaceRadianceProperties" }, "energy": { "type": "FaceEnergyProperties" }, - "radiance": { - "type": "FaceRadianceProperties" + "ph": { + "type": "FacePhProperties", + "id_num": 0 }, "ph_hvac": { "type": "FacePhHvacProperties" }, "type": "FaceProperties" }, - "type": "Face", - "geometry": { - "plane": { - "x": [ - 0.0, - -1.0, - 0.0 - ], - "type": "Plane", - "n": [ - -1.0, - 0.0, - 0.0 - ], - "o": [ - 0.0, - 4.0, - 0.0 - ] + "type": "Face" + }, + { + "display_name": "Room_2_684ff8ea..Face3", + "face_type": "Wall", + "boundary_condition": { + "view_factor": { + "type": "Autocalculate" }, - "type": "Face3D", + "type": "Outdoors", + "wind_exposure": true, + "sun_exposure": true + }, + "identifier": "Room_2_684ff8ea..Face3", + "geometry": { "boundary": [ [ 0.0, @@ -294,134 +266,134 @@ 0.0, 3.0 ] - ] - }, - "identifier": "Room_2_b7c5199c..Face3", - "face_type": "Wall", - "boundary_condition": { - "type": "Outdoors", - "view_factor": { - "type": "Autocalculate" + ], + "plane": { + "x": [ + 0.0, + -1.0, + 0.0 + ], + "type": "Plane", + "o": [ + 0.0, + 4.0, + 0.0 + ], + "n": [ + -1.0, + 0.0, + 0.0 + ] }, - "sun_exposure": true, - "wind_exposure": true + "type": "Face3D" }, - "display_name": "Room_2_b7c5199c..Face3" - }, - { "properties": { "revive": { - "id_num": 0, - "type": "FaceReviveProperties" + "type": "FaceReviveProperties", + "id_num": 0 }, - "ph": { - "id_num": 0, - "type": "FacePhProperties" + "radiance": { + "type": "FaceRadianceProperties" }, "energy": { "type": "FaceEnergyProperties" }, - "radiance": { - "type": "FaceRadianceProperties" + "ph": { + "type": "FacePhProperties", + "id_num": 0 }, "ph_hvac": { "type": "FacePhHvacProperties" }, "type": "FaceProperties" }, - "type": "Face", + "type": "Face" + }, + { + "display_name": "Room_2_684ff8ea..Face4", + "face_type": "Floor", + "boundary_condition": { + "type": "Ground" + }, + "identifier": "Room_2_684ff8ea..Face4", "geometry": { - "plane": { - "x": [ - 0.0, - 1.0, + "boundary": [ + [ + 5.0, + 4.0, 0.0 ], - "type": "Plane", - "n": [ - 0.0, + [ + 5.0, 0.0, - -1.0 + 0.0 ], - "o": [ + [ 0.0, 0.0, 0.0 - ] - }, - "type": "Face3D", - "boundary": [ + ], [ - 5.0, + 0.0, 4.0, 0.0 - ], - [ - 5.0, + ] + ], + "plane": { + "x": [ 0.0, + 1.0, 0.0 ], - [ + "type": "Plane", + "o": [ 0.0, 0.0, 0.0 ], - [ + "n": [ 0.0, - 4.0, - 0.0 + 0.0, + -1.0 ] - ] - }, - "identifier": "Room_2_b7c5199c..Face4", - "face_type": "Floor", - "boundary_condition": { - "type": "Ground" + }, + "type": "Face3D" }, - "display_name": "Room_2_b7c5199c..Face4" - }, - { "properties": { "revive": { - "id_num": 0, - "type": "FaceReviveProperties" + "type": "FaceReviveProperties", + "id_num": 0 }, - "ph": { - "id_num": 0, - "type": "FacePhProperties" + "radiance": { + "type": "FaceRadianceProperties" }, "energy": { "type": "FaceEnergyProperties" }, - "radiance": { - "type": "FaceRadianceProperties" + "ph": { + "type": "FacePhProperties", + "id_num": 0 }, "ph_hvac": { "type": "FacePhHvacProperties" }, "type": "FaceProperties" }, - "type": "Face", - "geometry": { - "plane": { - "x": [ - 1.0, - 0.0, - -5.5511151231257827e-17 - ], - "type": "Plane", - "n": [ - 5.5511151231257827e-17, - -0.0, - 1.0 - ], - "o": [ - 0.0, - 0.0, - 3.0 - ] + "type": "Face" + }, + { + "display_name": "Room_2_684ff8ea..Face5", + "face_type": "RoofCeiling", + "boundary_condition": { + "view_factor": { + "type": "Autocalculate" }, - "type": "Face3D", + "type": "Outdoors", + "wind_exposure": true, + "sun_exposure": true + }, + "identifier": "Room_2_684ff8ea..Face5", + "geometry": { "boundary": [ [ 0.0, @@ -443,560 +415,164 @@ 4.0, 3.0 ] - ] + ], + "plane": { + "x": [ + 1.0, + 0.0, + -5.5511151231257827e-17 + ], + "type": "Plane", + "o": [ + 0.0, + 0.0, + 3.0 + ], + "n": [ + 5.5511151231257827e-17, + -0.0, + 1.0 + ] + }, + "type": "Face3D" }, - "identifier": "Room_2_b7c5199c..Face5", - "face_type": "RoofCeiling", - "boundary_condition": { - "type": "Outdoors", - "view_factor": { - "type": "Autocalculate" + "properties": { + "revive": { + "type": "FaceReviveProperties", + "id_num": 0 }, - "sun_exposure": true, - "wind_exposure": true + "radiance": { + "type": "FaceRadianceProperties" + }, + "energy": { + "type": "FaceEnergyProperties" + }, + "ph": { + "type": "FacePhProperties", + "id_num": 0 + }, + "ph_hvac": { + "type": "FacePhHvacProperties" + }, + "type": "FaceProperties" }, - "display_name": "Room_2_b7c5199c..Face5" + "type": "Face" } ], + "identifier": "Room_2_684ff8ea", "properties": { "revive": { - "id_num": 0, - "type": "RoomReviveProperties" + "type": "RoomReviveProperties", + "id_num": 0 }, - "ph": { - "ph_bldg_segment": { - "wind_exposure_type": { - "value": "1-SEVERAL_SIDES_EXPOSED_NO_SCREENING" - }, - "summer_hrv_bypass_mode": { - "value": "4-ALWAYS" - }, - "set_points": { - "identifier": "aeb28145-4538-4962-af78-c61ea46a07ab", - "user_data": {}, - "summer": 25.0, - "display_name": "aeb28145-4538-4962-af78-c61ea46a07ab", - "winter": 20.0 - }, - "non_combustible_materials": false, - "num_dwelling_units": 1, - "phi_certification": { - "phpp_version": 9, - "attributes": { - "enerphit_type": "2-ENERGY DEMAND METHOD", - "phpp_version": 9, - "building_use_type": "10-DWELLING", - "occupancy_type": "1-STANDARD (ONLY FOR RESIDENTIAL BUILDINGS)", - "certification_type": "1-PASSIVE HOUSE", - "retrofit_type": "1-NEW BUILDING", - "certification_class": "1-CLASSIC", - "building_category_type": "1-RESIDENTIAL BUILDING", - "tfa_override": null, - "ihg_type": "2-STANDARD", - "primary_energy_type": "2-PER (RENEWABLE)" - }, - "identifier": "b0f9d301-fa3b-48a4-9317-ad10c5c3646f", - "user_data": {}, - "display_name": "b0f9d301-fa3b-48a4-9317-ad10c5c3646f" - }, - "thermal_bridges": {}, - "phius_certification": { - "PHIUS2021_cooling_load": 10.0, - "PHIUS2021_heating_demand": 15.0, - "building_use_type": { - "value": "1-RESIDENTIAL" - }, - "int_gains_toilet_room_util_pat": null, - "icfa_override": null, - "localization_selection_type": 2, - "certification_program": { - "value": "7-PHIUS 2021 CORE" - }, - "building_type": { - "value": "1-NEW_CONSTRUCTION" - }, - "PHIUS2021_heating_load": 10.0, - "int_gains_evap_per_person": 15, - "building_status": { - "value": "1-IN_PLANNING" - }, - "int_gains_flush_heat_loss": true, - "int_gains_num_toilets": 1, - "identifier": "7e506286-0db7-4361-9f8f-f0c1e7653172", - "PHIUS2021_cooling_demand": 15.0, - "user_data": {}, - "building_category_type": { - "value": "1-RESIDENTIAL BUILDING" - }, - "int_gains_dhw_marginal_perf_ratio": null, - "display_name": "7e506286-0db7-4361-9f8f-f0c1e7653172", - "int_gains_use_school_defaults": false - }, - "identifier": "9208d073-b99b-4722-ae22-0bca76fd2914", - "site": { - "location": { - "site_elevation": null, - "identifier": "2c465ee6-2232-40ac-ac70-6e3fa8c503bf", - "hours_from_UTC": -4, - "user_data": {}, - "latitude": 40.600000000000001, - "longitude": -73.799999999999997, - "climate_zone": 1, - "display_name": "2c465ee6-2232-40ac-ac70-6e3fa8c503bf" - }, - "phpp_library_codes": { - "country_code": "US-United States of America", - "identifier": "1342affc-8e57-4ae6-a551-3bbc710b64e3", - "region_code": "New York", - "user_data": {}, - "display_name": "US0055b-New York", - "dataset_name": "US0055b-New York" - }, - "identifier": "b994325c-3e75-4d83-8235-2bb8982f931b", - "user_data": {}, - "climate": { - "monthly_temps": { - "ground_temps": { - "february": 0.0, - "april": 0.0, - "march": 0.0, - "august": 0.0, - "december": 0.0, - "identifier": "0a188827-bad9-45f5-937c-1251ea107eee", - "november": 0.0, - "user_data": {}, - "may": 0.0, - "october": 0.0, - "july": 0.0, - "january": 0.0, - "june": 0.0, - "september": 0.0, - "display_name": "0a188827-bad9-45f5-937c-1251ea107eee" - }, - "sky_temps": { - "february": 0.0, - "april": 0.0, - "march": 0.0, - "august": 0.0, - "december": 0.0, - "identifier": "688b4a29-bc24-4568-898c-de2904396c4d", - "november": 0.0, - "user_data": {}, - "may": 0.0, - "october": 0.0, - "july": 0.0, - "january": 0.0, - "june": 0.0, - "september": 0.0, - "display_name": "688b4a29-bc24-4568-898c-de2904396c4d" - }, - "dewpoints": { - "february": 0.0, - "april": 0.0, - "march": 0.0, - "august": 0.0, - "december": 0.0, - "identifier": "5f4f8f6a-02f8-4859-8b7d-a16b52882fdf", - "november": 0.0, - "user_data": {}, - "may": 0.0, - "october": 0.0, - "july": 0.0, - "january": 0.0, - "june": 0.0, - "september": 0.0, - "display_name": "5f4f8f6a-02f8-4859-8b7d-a16b52882fdf" + "radiance": { + "type": "RoomRadianceProperties" + }, + "energy": { + "type": "RoomEnergyProperties", + "program_type": { + "setpoint": { + "identifier": "Generic Office Setpoints", + "cooling_schedule": { + "default_day_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", + "day_schedules": [ + { + "times": [ + [ + 0, + 0 + ] + ], + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 26.699999999999999 + ] }, - "identifier": "5f63ba53-c20d-4a6b-95c6-c4d431ae4b37", - "user_data": {}, - "air_temps": { - "february": 0.0, - "april": 0.0, - "march": 0.0, - "august": 0.0, - "december": 0.0, - "identifier": "80656016-f238-47bd-8192-5b15ff742916", - "november": 0.0, - "user_data": {}, - "may": 0.0, - "october": 0.0, - "july": 0.0, - "january": 0.0, - "june": 0.0, - "september": 0.0, - "display_name": "80656016-f238-47bd-8192-5b15ff742916" - }, - "display_name": "5f63ba53-c20d-4a6b-95c6-c4d431ae4b37" - }, - "station_elevation": 0.0, - "monthly_radiation": { - "west": { - "february": 0.0, - "april": 0.0, - "march": 0.0, - "august": 0.0, - "december": 0.0, - "identifier": "c405540a-21fa-4480-982a-205582ec3162", - "november": 0.0, - "user_data": {}, - "may": 0.0, - "october": 0.0, - "july": 0.0, - "january": 0.0, - "june": 0.0, - "september": 0.0, - "display_name": "c405540a-21fa-4480-982a-205582ec3162" - }, - "east": { - "february": 0.0, - "april": 0.0, - "march": 0.0, - "august": 0.0, - "december": 0.0, - "identifier": "405a50ef-f9f1-4253-ac96-f41c6ef053e0", - "november": 0.0, - "user_data": {}, - "may": 0.0, - "october": 0.0, - "july": 0.0, - "january": 0.0, - "june": 0.0, - "september": 0.0, - "display_name": "405a50ef-f9f1-4253-ac96-f41c6ef053e0" - }, - "identifier": "feb14422-eb50-4468-b7bb-644937fc658c", - "north": { - "february": 0.0, - "april": 0.0, - "march": 0.0, - "august": 0.0, - "december": 0.0, - "identifier": "8575d976-ce7d-46f0-b93a-8f9f53421363", - "november": 0.0, - "user_data": {}, - "may": 0.0, - "october": 0.0, - "july": 0.0, - "january": 0.0, - "june": 0.0, - "september": 0.0, - "display_name": "8575d976-ce7d-46f0-b93a-8f9f53421363" - }, - "user_data": {}, - "south": { - "february": 0.0, - "april": 0.0, - "march": 0.0, - "august": 0.0, - "december": 0.0, - "identifier": "36b8daa7-5360-4104-b7c0-b67a64f9af4c", - "november": 0.0, - "user_data": {}, - "may": 0.0, - "october": 0.0, - "july": 0.0, - "january": 0.0, - "june": 0.0, - "september": 0.0, - "display_name": "36b8daa7-5360-4104-b7c0-b67a64f9af4c" - }, - "display_name": "feb14422-eb50-4468-b7bb-644937fc658c", - "glob": { - "february": 0.0, - "april": 0.0, - "march": 0.0, - "august": 0.0, - "december": 0.0, - "identifier": "db12f99a-b69a-46a0-95d6-219de7144341", - "november": 0.0, - "user_data": {}, - "may": 0.0, - "october": 0.0, - "july": 0.0, - "january": 0.0, - "june": 0.0, - "september": 0.0, - "display_name": "db12f99a-b69a-46a0-95d6-219de7144341" - } - }, - "summer_daily_temperature_swing": 8.0, - "average_wind_speed": 4.0, - "identifier": "7ca8448a-3683-4f4e-8177-a87ec7a4ba2e", - "ground": { - "ground_density": 2000, - "ground_heat_capacity": 1000, - "identifier": "e00be75a-d448-4370-a29d-ee6ee9155b40", - "user_data": {}, - "depth_groundwater": 3, - "flow_rate_groundwater": 0.050000000000000003, - "ground_thermal_conductivity": 2, - "display_name": "e00be75a-d448-4370-a29d-ee6ee9155b40" - }, - "user_data": {}, - "peak_loads": { - "cooling_load_2": { - "dewpoint": null, - "sky_temp": null, - "rad_south": 0.0, - "rad_east": 0.0, - "ground_temp": null, - "identifier": "86914208-b954-4a36-9ea9-5a2bfe10db0f", - "user_data": {}, - "rad_west": 0.0, - "rad_global": 0.0, - "rad_north": 0.0, - "display_name": "86914208-b954-4a36-9ea9-5a2bfe10db0f", - "temp": 0.0 - }, - "cooling_load_1": { - "dewpoint": null, - "sky_temp": null, - "rad_south": 0.0, - "rad_east": 0.0, - "ground_temp": null, - "identifier": "a1d73f93-8732-41d1-9602-dbe55b87f9d7", - "user_data": {}, - "rad_west": 0.0, - "rad_global": 0.0, - "rad_north": 0.0, - "display_name": "a1d73f93-8732-41d1-9602-dbe55b87f9d7", - "temp": 0.0 - }, - "identifier": "f1849687-c736-45c0-ae89-36b4afbabff6", - "user_data": {}, - "heat_load_2": { - "dewpoint": null, - "sky_temp": null, - "rad_south": 0.0, - "rad_east": 0.0, - "ground_temp": null, - "identifier": "5f37c0c9-99ff-4885-b4a3-bd9a0aa9ae50", - "user_data": {}, - "rad_west": 0.0, - "rad_global": 0.0, - "rad_north": 0.0, - "display_name": "5f37c0c9-99ff-4885-b4a3-bd9a0aa9ae50", - "temp": 0.0 - }, - "heat_load_1": { - "dewpoint": null, - "sky_temp": null, - "rad_south": 0.0, - "rad_east": 0.0, - "ground_temp": null, - "identifier": "2a35a01d-952a-4ac5-b64a-866f74f4204a", - "user_data": {}, - "rad_west": 0.0, - "rad_global": 0.0, - "rad_north": 0.0, - "display_name": "2a35a01d-952a-4ac5-b64a-866f74f4204a", - "temp": 0.0 - }, - "display_name": "f1849687-c736-45c0-ae89-36b4afbabff6" - }, - "display_name": "New York" - }, - "display_name": "b994325c-3e75-4d83-8235-2bb8982f931b" - }, - "mech_room_temp": 20.0, - "user_data": {}, - "source_energy_factors": { - "factors": [] - }, - "name": "Unnamed_Bldg_Segment", - "co2e_factors": { - "factors": [] - }, - "display_name": "Unnamed_Bldg_Segment", - "num_floor_levels": 1 - }, - "type": "RoomPhProperties", - "spaces": [], - "id_num": 0, - "specific_heat_capacity": "1-LIGHTWEIGHT", - "ph_foundations": [] - }, - "energy": { - "type": "RoomEnergyProperties", - "program_type": { - "lighting": { - "schedule": { - "summer_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", - "properties": { - "ph": { - "operating_weeks_year": 52.142899999999997, - "type": "ScheduleRulesetPhProperties", - "operating_days_wk": 7.0, - "id_num": 0, - "operating_periods": { - "collection": [] - } - }, - "type": "ScheduleRulesetProperties", - "revive": { - "id_num": 0, - "type": "ScheduleRulesetReviveProperties" - } - }, - "schedule_type_limit": { - "numeric_type": "Continuous", - "type": "ScheduleTypeLimit", - "unit_type": "Dimensionless", - "upper_limit": 1.0, - "identifier": "Fractional", - "lower_limit": 0.0 - }, - "type": "ScheduleRuleset", - "default_day_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", - "identifier": "Generic Office Lighting", - "schedule_rules": [ - { - "apply_monday": true, - "start_date": [ - 1, - 1 - ], - "type": "ScheduleRuleAbridged", - "apply_wednesday": true, - "apply_tuesday": true, - "apply_friday": true, - "apply_thursday": true, - "apply_sunday": false, - "end_date": [ - 12, - 31 - ], - "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", - "apply_saturday": false - }, - { - "apply_monday": false, - "start_date": [ - 1, - 1 - ], - "type": "ScheduleRuleAbridged", - "apply_wednesday": false, - "apply_tuesday": false, - "apply_friday": false, - "apply_thursday": false, - "apply_sunday": false, - "end_date": [ - 12, - 31 - ], - "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", - "apply_saturday": true - } - ], - "holiday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", - "winter_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", - "day_schedules": [ { - "values": [ - 0.050000000000000003, - 0.04311628, - 0.050000000000000003 - ], - "type": "ScheduleDay", "times": [ [ 0, 0 ], + [ + 5, + 0 + ], [ 6, 0 ], [ - 18, + 7, + 0 + ], + [ + 22, 0 ] ], - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", - "interpolate": false + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 26.699999999999999, + 25.699999999999999, + 25.0, + 24.0, + 26.699999999999999 + ] }, { - "values": [ - 1.0 - ], - "type": "ScheduleDay", "times": [ [ 0, 0 ] ], - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", - "interpolate": false + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 26.699999999999999 + ] }, { - "values": [ - 0.0 - ], - "type": "ScheduleDay", "times": [ [ 0, 0 - ] - ], - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", - "interpolate": false - }, - { - "values": [ - 0.050000000000000003, - 0.08623256, - 0.25869767999999999, - 0.12934883999999999, - 0.04311628, - 0.050000000000000003 - ], - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 6, - 0 ], [ - 8, + 5, 0 ], [ - 12, + 6, 0 ], [ - 17, + 7, 0 ], [ - 19, + 22, 0 ] ], - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", - "interpolate": false + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 26.699999999999999, + 25.600000000000001, + 25.0, + 24.0, + 26.699999999999999 + ] }, { - "values": [ - 0.050000000000000003, - 0.10000000000000001, - 0.08623256, - 0.25869767999999999, - 0.77609304000000001, - 0.43116280000000001, - 0.25869767999999999, - 0.17246512, - 0.08623256, - 0.04311628 - ], - "type": "ScheduleDay", "times": [ [ 0, @@ -1014,387 +590,360 @@ 7, 0 ], - [ - 8, - 0 - ], [ 17, 0 - ], - [ - 18, - 0 - ], - [ - 20, - 0 - ], - [ - 22, - 0 - ], - [ - 23, - 0 ] ], - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", - "interpolate": false - } - ] - }, - "return_air_fraction": 0.0, - "properties": { - "ph": { - "id_num": 0, - "type": "LightingPhProperties", - "target_lux_height": 0.80000000000000004, - "target_lux": 300 - }, - "type": "LightingProperties", - "revive": { - "cost": 0.0, - "type": "LightingReviveProperties", - "labor_fraction": 0.40000000000000002, - "id_num": 0, - "lifetime_years": 25 - } - }, - "type": "Lighting", - "radiant_fraction": 0.69999999999999996, - "identifier": "Generic Office Lighting", - "watts_per_area": 10.550000000000001, - "visible_fraction": 0.20000000000000001 - }, - "electric_equipment": { - "schedule": { - "summer_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", - "properties": { - "ph": { - "operating_weeks_year": 52.142899999999997, - "type": "ScheduleRulesetPhProperties", - "operating_days_wk": 7.0, - "id_num": 0, - "operating_periods": { - "collection": [] - } - }, - "type": "ScheduleRulesetProperties", - "revive": { - "id_num": 0, - "type": "ScheduleRulesetReviveProperties" + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 26.699999999999999, + 25.699999999999999, + 25.0, + 24.0, + 26.699999999999999 + ] } - }, + ], + "holiday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", + "winter_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", "schedule_type_limit": { + "lower_limit": -273.14999999999998, + "upper_limit": { + "type": "NoLimit" + }, + "identifier": "Temperature", "numeric_type": "Continuous", - "type": "ScheduleTypeLimit", - "unit_type": "Dimensionless", - "upper_limit": 1.0, - "identifier": "Fractional", - "lower_limit": 0.0 + "unit_type": "Temperature", + "type": "ScheduleTypeLimit" }, - "type": "ScheduleRuleset", - "default_day_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", - "identifier": "Generic Office Equipment", + "identifier": "Generic Office Cooling", + "summer_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", "schedule_rules": [ { - "apply_monday": true, - "start_date": [ - 1, - 1 - ], - "type": "ScheduleRuleAbridged", - "apply_wednesday": true, "apply_tuesday": true, "apply_friday": true, - "apply_thursday": true, "apply_sunday": false, + "apply_saturday": false, + "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", + "apply_monday": true, "end_date": [ 12, 31 ], - "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", - "apply_saturday": false - }, - { - "apply_monday": false, "start_date": [ 1, 1 ], - "type": "ScheduleRuleAbridged", - "apply_wednesday": false, + "apply_thursday": true, + "apply_wednesday": true, + "type": "ScheduleRuleAbridged" + }, + { "apply_tuesday": false, "apply_friday": false, - "apply_thursday": false, "apply_sunday": false, + "apply_saturday": true, + "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", + "apply_monday": false, "end_date": [ 12, 31 ], - "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", - "apply_saturday": true + "start_date": [ + 1, + 1 + ], + "apply_thursday": false, + "apply_wednesday": false, + "type": "ScheduleRuleAbridged" } ], - "holiday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", - "winter_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", + "type": "ScheduleRuleset", + "properties": { + "ph": { + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] + }, + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997 + }, + "type": "ScheduleRulesetProperties", + "revive": { + "type": "ScheduleRulesetReviveProperties", + "id_num": 0 + } + } + }, + "type": "Setpoint", + "heating_schedule": { + "default_day_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", "day_schedules": [ { - "values": [ - 0.2307553806, - 0.28810717499999999, - 0.2307553806 - ], - "type": "ScheduleDay", "times": [ [ 0, 0 - ], - [ - 6, - 0 - ], - [ - 18, - 0 ] ], - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", - "interpolate": false + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 15.600000000000000 + ] }, { - "values": [ - 1.0 - ], - "type": "ScheduleDay", "times": [ [ 0, 0 ] ], - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", - "interpolate": false + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 15.600000000000000 + ] }, { - "values": [ - 0.0 - ], - "type": "ScheduleDay", "times": [ [ 0, 0 + ], + [ + 5, + 0 + ], + [ + 6, + 0 + ], + [ + 7, + 0 + ], + [ + 22, + 0 ] ], - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", - "interpolate": false + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 15.600000000000000, + 17.600000000000001, + 19.600000000000001, + 21.0, + 15.600000000000000 + ] }, { - "values": [ - 0.2307553806, - 0.38123479599999999, - 0.47654349499999998, - 0.33358044650000002, - 0.28592609699999999, - 0.2307553806 - ], - "type": "ScheduleDay", "times": [ [ 0, 0 ], [ - 6, + 5, 0 ], [ - 8, + 6, 0 ], [ - 12, + 7, 0 ], [ - 17, - 0 - ], - [ - 19, + 22, 0 ] ], - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", - "interpolate": false + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 15.600000000000000, + 17.800000000000001, + 20.0, + 21.0, + 15.600000000000000 + ] }, { - "values": [ - 0.30767384079999999, - 0.38123479599999999, - 0.85777829100000003, - 0.76246959199999997, - 0.85777829100000003, - 0.47654349499999998, - 0.38123479599999999 - ], - "type": "ScheduleDay", "times": [ [ 0, 0 ], [ - 6, - 0 - ], - [ - 8, + 5, 0 ], [ - 12, + 6, 0 ], [ - 13, + 7, 0 ], [ 17, 0 - ], - [ - 18, - 0 ] ], - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", - "interpolate": false - } - ] - }, - "properties": { - "ph": { - "equipment_collection": { - "equipment_set": {} - }, - "type": "ElectricEquipmentPhProperties" - }, - "type": "ElectricEquipmentProperties", - "revive": { - "id_num": 0, - "type": "ElectricEquipmentReviveProperties" - } - }, - "type": "ElectricEquipment", - "radiant_fraction": 0.5, - "identifier": "Generic Office Equipment", - "lost_fraction": 0.0, - "watts_per_area": 10.330000000000000, - "latent_fraction": 0.0 - }, - "type": "ProgramType", - "infiltration": { - "type": "Infiltration", - "identifier": "Generic Office Infiltration", - "flow_per_exterior_area": 0.00022660000000000001, - "schedule": { - "summer_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", - "properties": { - "ph": { - "operating_weeks_year": 52.142899999999997, - "type": "ScheduleRulesetPhProperties", - "operating_days_wk": 7.0, - "id_num": 0, - "operating_periods": { - "collection": [] - } - }, - "type": "ScheduleRulesetProperties", - "revive": { - "id_num": 0, - "type": "ScheduleRulesetReviveProperties" + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 15.600000000000000, + 17.800000000000001, + 20.0, + 21.0, + 15.600000000000000 + ] } - }, + ], + "holiday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", + "winter_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", "schedule_type_limit": { + "lower_limit": -273.14999999999998, + "upper_limit": { + "type": "NoLimit" + }, + "identifier": "Temperature", "numeric_type": "Continuous", - "type": "ScheduleTypeLimit", - "unit_type": "Dimensionless", - "upper_limit": 1.0, - "identifier": "Fractional", - "lower_limit": 0.0 + "unit_type": "Temperature", + "type": "ScheduleTypeLimit" }, - "type": "ScheduleRuleset", - "default_day_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", - "identifier": "Generic Office Infiltration", + "identifier": "Generic Office Heating", + "summer_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", "schedule_rules": [ { - "apply_monday": true, - "start_date": [ - 1, - 1 - ], - "type": "ScheduleRuleAbridged", - "apply_wednesday": true, "apply_tuesday": true, "apply_friday": true, - "apply_thursday": true, "apply_sunday": false, + "apply_saturday": false, + "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", + "apply_monday": true, "end_date": [ 12, 31 ], - "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Wkdy", - "apply_saturday": false - }, - { - "apply_monday": false, "start_date": [ 1, 1 ], - "type": "ScheduleRuleAbridged", - "apply_wednesday": false, + "apply_thursday": true, + "apply_wednesday": true, + "type": "ScheduleRuleAbridged" + }, + { "apply_tuesday": false, "apply_friday": false, - "apply_thursday": false, "apply_sunday": false, + "apply_saturday": true, + "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", + "apply_monday": false, "end_date": [ 12, 31 ], - "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Sat", - "apply_saturday": true + "start_date": [ + 1, + 1 + ], + "apply_thursday": false, + "apply_wednesday": false, + "type": "ScheduleRuleAbridged" } ], - "holiday_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", - "winter_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", + "type": "ScheduleRuleset", + "properties": { + "ph": { + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] + }, + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997 + }, + "type": "ScheduleRulesetProperties", + "revive": { + "type": "ScheduleRulesetReviveProperties", + "id_num": 0 + } + } + } + }, + "electric_equipment": { + "schedule": { + "default_day_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", "day_schedules": [ { - "values": [ - 1.0 - ], - "type": "ScheduleDay", "times": [ [ 0, 0 + ], + [ + 6, + 0 + ], + [ + 18, + 0 ] ], - "identifier": "OfficeMedium INFIL_SCH_PNNL_Default", - "interpolate": false + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 0.2307553806, + 0.28810717499999999, + 0.2307553806 + ] }, { + "times": [ + [ + 0, + 0 + ] + ], + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", + "type": "ScheduleDay", + "interpolate": false, "values": [ - 1.0, - 0.25, 1.0 + ] + }, + { + "times": [ + [ + 0, + 0 + ] ], + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", "type": "ScheduleDay", + "interpolate": false, + "values": [ + 0.0 + ] + }, + { "times": [ [ 0, @@ -1405,44 +954,35 @@ 0 ], [ - 22, + 8, 0 - ] - ], - "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", - "interpolate": false - }, - { - "values": [ - 1.0, - 0.25, - 1.0 - ], - "type": "ScheduleDay", - "times": [ + ], [ - 0, + 12, 0 ], [ - 6, + 17, 0 ], [ - 18, + 19, 0 ] ], - "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", - "interpolate": false + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 0.2307553806, + 0.38123479599999999, + 0.47654349499999998, + 0.33358044650000002, + 0.28592609699999999, + 0.2307553806 + ] }, { - "values": [ - 1.0, - 0.25, - 1.0 - ], - "type": "ScheduleDay", "times": [ [ 0, @@ -1453,27 +993,19 @@ 0 ], [ - 22, + 8, 0 - ] - ], - "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy", - "interpolate": false - }, - { - "values": [ - 1.0, - 0.25, - 1.0 - ], - "type": "ScheduleDay", - "times": [ + ], [ - 0, + 12, 0 ], [ - 6, + 13, + 0 + ], + [ + 17, 0 ], [ @@ -1481,160 +1013,213 @@ 0 ] ], - "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat", - "interpolate": false - } - ] - } - }, - "setpoint": { - "type": "Setpoint", - "identifier": "Generic Office Setpoints", - "heating_schedule": { - "summer_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", - "properties": { - "ph": { - "operating_weeks_year": 52.142899999999997, - "type": "ScheduleRulesetPhProperties", - "operating_days_wk": 7.0, - "id_num": 0, - "operating_periods": { - "collection": [] - } - }, - "type": "ScheduleRulesetProperties", - "revive": { - "id_num": 0, - "type": "ScheduleRulesetReviveProperties" + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 0.30767384079999999, + 0.38123479599999999, + 0.85777829100000003, + 0.76246959199999997, + 0.85777829100000003, + 0.47654349499999998, + 0.38123479599999999 + ] } - }, + ], + "holiday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", + "winter_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", "schedule_type_limit": { + "lower_limit": 0.0, + "upper_limit": 1.0, + "identifier": "Fractional", "numeric_type": "Continuous", - "type": "ScheduleTypeLimit", - "unit_type": "Temperature", - "upper_limit": { - "type": "NoLimit" - }, - "identifier": "Temperature", - "lower_limit": -273.14999999999998 + "unit_type": "Dimensionless", + "type": "ScheduleTypeLimit" }, - "type": "ScheduleRuleset", - "default_day_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", - "identifier": "Generic Office Heating", + "identifier": "Generic Office Equipment", + "summer_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", "schedule_rules": [ { - "apply_monday": true, - "start_date": [ - 1, - 1 - ], - "type": "ScheduleRuleAbridged", - "apply_wednesday": true, "apply_tuesday": true, "apply_friday": true, - "apply_thursday": true, "apply_sunday": false, + "apply_saturday": false, + "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", + "apply_monday": true, "end_date": [ 12, 31 ], - "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", - "apply_saturday": false - }, - { - "apply_monday": false, "start_date": [ 1, 1 ], - "type": "ScheduleRuleAbridged", - "apply_wednesday": false, + "apply_thursday": true, + "apply_wednesday": true, + "type": "ScheduleRuleAbridged" + }, + { "apply_tuesday": false, "apply_friday": false, - "apply_thursday": false, "apply_sunday": false, + "apply_saturday": true, + "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", + "apply_monday": false, "end_date": [ 12, 31 ], - "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", - "apply_saturday": true + "start_date": [ + 1, + 1 + ], + "apply_thursday": false, + "apply_wednesday": false, + "type": "ScheduleRuleAbridged" } ], - "holiday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", - "winter_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", + "type": "ScheduleRuleset", + "properties": { + "ph": { + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] + }, + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997 + }, + "type": "ScheduleRulesetProperties", + "revive": { + "type": "ScheduleRulesetReviveProperties", + "id_num": 0 + } + } + }, + "latent_fraction": 0.0, + "identifier": "Generic Office Equipment", + "watts_per_area": 10.330000000000000, + "radiant_fraction": 0.5, + "type": "ElectricEquipment", + "properties": { + "ph": { + "equipment_collection": { + "equipment_set": {} + }, + "type": "ElectricEquipmentPhProperties" + }, + "type": "ElectricEquipmentProperties", + "revive": { + "type": "ElectricEquipmentReviveProperties", + "id_num": 0 + } + }, + "lost_fraction": 0.0 + }, + "ventilation": { + "flow_per_person": 0.0023600000000000001, + "identifier": "Generic Office Ventilation", + "flow_per_area": 0.00030499999999999999, + "type": "Ventilation" + }, + "lighting": { + "return_air_fraction": 0.0, + "schedule": { + "default_day_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", "day_schedules": [ { - "values": [ - 15.600000000000000 - ], - "type": "ScheduleDay", "times": [ [ 0, 0 + ], + [ + 6, + 0 + ], + [ + 18, + 0 ] ], - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", - "interpolate": false + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 0.050000000000000003, + 0.04311628, + 0.050000000000000003 + ] }, { - "values": [ - 15.600000000000000 - ], - "type": "ScheduleDay", "times": [ [ 0, 0 ] ], - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", - "interpolate": false + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 1.0 + ] }, { - "values": [ - 15.600000000000000, - 17.600000000000001, - 19.600000000000001, - 21.0, - 15.600000000000000 + "times": [ + [ + 0, + 0 + ] ], + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", "type": "ScheduleDay", + "interpolate": false, + "values": [ + 0.0 + ] + }, + { "times": [ [ 0, 0 ], [ - 5, + 6, 0 ], [ - 6, + 8, 0 ], [ - 7, + 12, 0 ], [ - 22, + 17, + 0 + ], + [ + 19, 0 ] ], - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", - "interpolate": false + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 0.050000000000000003, + 0.08623256, + 0.25869767999999999, + 0.12934883999999999, + 0.04311628, + 0.050000000000000003 + ] }, { - "values": [ - 15.600000000000000, - 17.800000000000001, - 20.0, - 21.0, - 15.600000000000000 - ], - "type": "ScheduleDay", "times": [ [ 0, @@ -1653,209 +1238,242 @@ 0 ], [ - 22, + 8, 0 - ] - ], - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", - "interpolate": false - }, - { - "values": [ - 15.600000000000000, - 17.800000000000001, - 20.0, - 21.0, - 15.600000000000000 - ], - "type": "ScheduleDay", - "times": [ + ], [ - 0, + 17, 0 ], [ - 5, + 18, 0 ], [ - 6, + 20, 0 ], [ - 7, + 22, 0 ], [ - 17, + 23, 0 ] ], - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", - "interpolate": false - } - ] - }, - "cooling_schedule": { - "summer_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", - "properties": { - "ph": { - "operating_weeks_year": 52.142899999999997, - "type": "ScheduleRulesetPhProperties", - "operating_days_wk": 7.0, - "id_num": 0, - "operating_periods": { - "collection": [] - } - }, - "type": "ScheduleRulesetProperties", - "revive": { - "id_num": 0, - "type": "ScheduleRulesetReviveProperties" + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 0.050000000000000003, + 0.10000000000000001, + 0.08623256, + 0.25869767999999999, + 0.77609304000000001, + 0.43116280000000001, + 0.25869767999999999, + 0.17246512, + 0.08623256, + 0.04311628 + ] } - }, + ], + "holiday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", + "winter_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", "schedule_type_limit": { + "lower_limit": 0.0, + "upper_limit": 1.0, + "identifier": "Fractional", "numeric_type": "Continuous", - "type": "ScheduleTypeLimit", - "unit_type": "Temperature", - "upper_limit": { - "type": "NoLimit" - }, - "identifier": "Temperature", - "lower_limit": -273.14999999999998 + "unit_type": "Dimensionless", + "type": "ScheduleTypeLimit" }, - "type": "ScheduleRuleset", - "default_day_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", - "identifier": "Generic Office Cooling", + "identifier": "Generic Office Lighting", + "summer_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", "schedule_rules": [ { - "apply_monday": true, - "start_date": [ - 1, - 1 - ], - "type": "ScheduleRuleAbridged", - "apply_wednesday": true, "apply_tuesday": true, "apply_friday": true, - "apply_thursday": true, "apply_sunday": false, + "apply_saturday": false, + "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", + "apply_monday": true, "end_date": [ 12, 31 ], - "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", - "apply_saturday": false - }, - { - "apply_monday": false, "start_date": [ 1, 1 ], - "type": "ScheduleRuleAbridged", - "apply_wednesday": false, + "apply_thursday": true, + "apply_wednesday": true, + "type": "ScheduleRuleAbridged" + }, + { "apply_tuesday": false, "apply_friday": false, - "apply_thursday": false, "apply_sunday": false, + "apply_saturday": true, + "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", + "apply_monday": false, "end_date": [ 12, 31 ], - "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", - "apply_saturday": true + "start_date": [ + 1, + 1 + ], + "apply_thursday": false, + "apply_wednesday": false, + "type": "ScheduleRuleAbridged" } ], - "holiday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", - "winter_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", + "type": "ScheduleRuleset", + "properties": { + "ph": { + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] + }, + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997 + }, + "type": "ScheduleRulesetProperties", + "revive": { + "type": "ScheduleRulesetReviveProperties", + "id_num": 0 + } + } + }, + "identifier": "Generic Office Lighting", + "watts_per_area": 10.550000000000001, + "radiant_fraction": 0.69999999999999996, + "type": "Lighting", + "visible_fraction": 0.20000000000000001, + "properties": { + "ph": { + "target_lux_height": 0.80000000000000004, + "type": "LightingPhProperties", + "id_num": 0, + "target_lux": 300 + }, + "type": "LightingProperties", + "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, + "id_num": 0, + "type": "LightingReviveProperties", + "cost": 0.0 + } + } + }, + "identifier": "Generic Office Program", + "people": { + "people_per_area": 0.056500000000000002, + "latent_fraction": { + "type": "Autocalculate" + }, + "occupancy_schedule": { + "default_day_schedule": "OfficeMedium BLDG_OCC_SCH_Default", "day_schedules": [ { - "values": [ - 26.699999999999999 - ], - "type": "ScheduleDay", "times": [ [ 0, 0 + ], + [ + 6, + 0 + ], + [ + 18, + 0 ] ], - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", - "interpolate": false + "identifier": "OfficeMedium BLDG_OCC_SCH_Default", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 0.0, + 0.050000000000000003, + 0.0 + ] }, { - "values": [ - 26.699999999999999, - 25.699999999999999, - 25.0, - 24.0, - 26.699999999999999 - ], - "type": "ScheduleDay", "times": [ [ 0, 0 ], - [ - 5, - 0 - ], [ 6, 0 ], - [ - 7, - 0 - ], [ 22, 0 ] ], - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", - "interpolate": false + "identifier": "OfficeMedium BLDG_OCC_SCH_SmrDsn", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 0.0, + 1.0, + 0.050000000000000003 + ] }, { - "values": [ - 26.699999999999999 - ], - "type": "ScheduleDay", "times": [ [ 0, 0 ] ], - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", - "interpolate": false + "identifier": "OfficeMedium BLDG_OCC_SCH_WntrDsn", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 0.0 + ] }, { - "values": [ - 26.699999999999999, - 25.600000000000001, - 25.0, - 24.0, - 26.699999999999999 - ], - "type": "ScheduleDay", "times": [ [ 0, 0 ], [ - 5, + 6, 0 ], [ - 6, + 7, 0 ], [ - 7, + 8, + 0 + ], + [ + 12, + 0 + ], + [ + 13, + 0 + ], + [ + 17, + 0 + ], + [ + 18, 0 ], [ @@ -1863,157 +1481,222 @@ 0 ] ], - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", - "interpolate": false + "identifier": "OfficeMedium BLDG_OCC_SCH_Wkdy", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 0.0, + 0.10000000000000001, + 0.20000000000000001, + 0.94999999999999996, + 0.5, + 0.94999999999999996, + 0.29999999999999999, + 0.10000000000000001, + 0.050000000000000003 + ] }, { - "values": [ - 26.699999999999999, - 25.699999999999999, - 25.0, - 24.0, - 26.699999999999999 - ], - "type": "ScheduleDay", "times": [ [ 0, 0 ], [ - 5, + 6, 0 ], [ - 6, + 8, 0 ], [ - 7, + 12, 0 ], [ 17, 0 + ], + [ + 19, + 0 ] ], - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", - "interpolate": false - } - ] - } - }, - "ventilation": { - "flow_per_area": 0.00030499999999999999, - "type": "Ventilation", - "identifier": "Generic Office Ventilation", - "flow_per_person": 0.0023600000000000001 - }, - "identifier": "Generic Office Program", - "people": { - "occupancy_schedule": { - "summer_designday_schedule": "OfficeMedium BLDG_OCC_SCH_SmrDsn", - "properties": { - "ph": { - "operating_weeks_year": 52.142899999999997, - "type": "ScheduleRulesetPhProperties", - "operating_days_wk": 7.0, - "id_num": 0, - "operating_periods": { - "collection": [] - } - }, - "type": "ScheduleRulesetProperties", - "revive": { - "id_num": 0, - "type": "ScheduleRulesetReviveProperties" + "identifier": "OfficeMedium BLDG_OCC_SCH_Sat", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 0.0, + 0.10000000000000001, + 0.29999999999999999, + 0.10000000000000001, + 0.050000000000000003, + 0.0 + ] } - }, + ], + "holiday_schedule": "OfficeMedium BLDG_OCC_SCH_Default", + "winter_designday_schedule": "OfficeMedium BLDG_OCC_SCH_WntrDsn", "schedule_type_limit": { - "numeric_type": "Continuous", - "type": "ScheduleTypeLimit", - "unit_type": "Dimensionless", + "lower_limit": 0.0, "upper_limit": 1.0, "identifier": "Fractional", - "lower_limit": 0.0 + "numeric_type": "Continuous", + "unit_type": "Dimensionless", + "type": "ScheduleTypeLimit" }, - "type": "ScheduleRuleset", - "default_day_schedule": "OfficeMedium BLDG_OCC_SCH_Default", "identifier": "Generic Office Occupancy", + "summer_designday_schedule": "OfficeMedium BLDG_OCC_SCH_SmrDsn", "schedule_rules": [ { - "apply_monday": true, - "start_date": [ - 1, - 1 - ], - "type": "ScheduleRuleAbridged", - "apply_wednesday": true, "apply_tuesday": true, "apply_friday": true, - "apply_thursday": true, "apply_sunday": false, + "apply_saturday": false, + "schedule_day": "OfficeMedium BLDG_OCC_SCH_Wkdy", + "apply_monday": true, "end_date": [ 12, 31 ], - "schedule_day": "OfficeMedium BLDG_OCC_SCH_Wkdy", - "apply_saturday": false - }, - { - "apply_monday": false, "start_date": [ 1, 1 ], - "type": "ScheduleRuleAbridged", - "apply_wednesday": false, + "apply_thursday": true, + "apply_wednesday": true, + "type": "ScheduleRuleAbridged" + }, + { "apply_tuesday": false, "apply_friday": false, - "apply_thursday": false, "apply_sunday": false, + "apply_saturday": true, + "schedule_day": "OfficeMedium BLDG_OCC_SCH_Sat", + "apply_monday": false, "end_date": [ 12, 31 ], - "schedule_day": "OfficeMedium BLDG_OCC_SCH_Sat", - "apply_saturday": true + "start_date": [ + 1, + 1 + ], + "apply_thursday": false, + "apply_wednesday": false, + "type": "ScheduleRuleAbridged" } ], - "holiday_schedule": "OfficeMedium BLDG_OCC_SCH_Default", - "winter_designday_schedule": "OfficeMedium BLDG_OCC_SCH_WntrDsn", - "day_schedules": [ - { - "values": [ - 0.0, - 0.050000000000000003, - 0.0 - ], - "type": "ScheduleDay", + "type": "ScheduleRuleset", + "properties": { + "ph": { + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] + }, + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997 + }, + "type": "ScheduleRulesetProperties", + "revive": { + "type": "ScheduleRulesetReviveProperties", + "id_num": 0 + } + } + }, + "identifier": "Generic Office People", + "radiant_fraction": 0.29999999999999999, + "type": "People", + "properties": { + "ph": { + "number_bedrooms": 0, + "dwellings": { + "num_dwellings": 0, + "identifier": "618be857-6814-4255-9bfa-9fa866313ef0" + }, + "id_num": 0, + "number_people": 0.0, + "type": "PeoplePhProperties" + }, + "type": "PeopleProperties", + "revive": { + "type": "PeopleReviveProperties", + "id_num": 0 + } + }, + "activity_schedule": { + "default_day_schedule": "Seated Adult Activity_Day Schedule", + "day_schedules": [ + { "times": [ [ 0, 0 - ], - [ - 6, - 0 - ], - [ - 18, - 0 ] ], - "identifier": "OfficeMedium BLDG_OCC_SCH_Default", - "interpolate": false + "identifier": "Seated Adult Activity_Day Schedule", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 120.0 + ] + } + ], + "schedule_type_limit": { + "lower_limit": 0.0, + "upper_limit": { + "type": "NoLimit" + }, + "identifier": "Activity Level", + "numeric_type": "Continuous", + "unit_type": "ActivityLevel", + "type": "ScheduleTypeLimit" + }, + "identifier": "Seated Adult Activity", + "type": "ScheduleRuleset", + "properties": { + "ph": { + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] + }, + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997 }, + "type": "ScheduleRulesetProperties", + "revive": { + "type": "ScheduleRulesetReviveProperties", + "id_num": 0 + } + } + } + }, + "type": "ProgramType", + "infiltration": { + "identifier": "Generic Office Infiltration", + "flow_per_exterior_area": 0.00022660000000000001, + "type": "Infiltration", + "schedule": { + "default_day_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", + "day_schedules": [ { - "values": [ - 0.0, - 1.0, - 0.050000000000000003 + "times": [ + [ + 0, + 0 + ] ], + "identifier": "OfficeMedium INFIL_SCH_PNNL_Default", "type": "ScheduleDay", + "interpolate": false, + "values": [ + 1.0 + ] + }, + { "times": [ [ 0, @@ -2028,36 +1711,16 @@ 0 ] ], - "identifier": "OfficeMedium BLDG_OCC_SCH_SmrDsn", - "interpolate": false - }, - { - "values": [ - 0.0 - ], + "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ] - ], - "identifier": "OfficeMedium BLDG_OCC_SCH_WntrDsn", - "interpolate": false + "interpolate": false, + "values": [ + 1.0, + 0.25, + 1.0 + ] }, { - "values": [ - 0.0, - 0.10000000000000001, - 0.20000000000000001, - 0.94999999999999996, - 0.5, - 0.94999999999999996, - 0.29999999999999999, - 0.10000000000000001, - 0.050000000000000003 - ], - "type": "ScheduleDay", "times": [ [ 0, @@ -2067,48 +1730,21 @@ 6, 0 ], - [ - 7, - 0 - ], - [ - 8, - 0 - ], - [ - 12, - 0 - ], - [ - 13, - 0 - ], - [ - 17, - 0 - ], [ 18, 0 - ], - [ - 22, - 0 ] ], - "identifier": "OfficeMedium BLDG_OCC_SCH_Wkdy", - "interpolate": false + "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 1.0, + 0.25, + 1.0 + ] }, { - "values": [ - 0.0, - 0.10000000000000001, - 0.29999999999999999, - 0.10000000000000001, - 0.050000000000000003, - 0.0 - ], - "type": "ScheduleDay", "times": [ [ 0, @@ -2119,144 +1755,508 @@ 0 ], [ - 8, + 22, 0 - ], + ] + ], + "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 1.0, + 0.25, + 1.0 + ] + }, + { + "times": [ [ - 12, + 0, 0 ], [ - 17, + 6, 0 ], [ - 19, + 18, 0 ] ], - "identifier": "OfficeMedium BLDG_OCC_SCH_Sat", - "interpolate": false - } - ] - }, - "properties": { - "ph": { - "number_people": 0.0, - "dwellings": { - "identifier": "dfea3746-3079-4e46-b42d-21e135a8ba1e", - "num_dwellings": 0 - }, - "type": "PeoplePhProperties", - "number_bedrooms": 0, - "id_num": 0 - }, - "type": "PeopleProperties", - "revive": { - "id_num": 0, - "type": "PeopleReviveProperties" - } - }, - "type": "People", - "radiant_fraction": 0.29999999999999999, - "people_per_area": 0.056500000000000002, - "identifier": "Generic Office People", - "activity_schedule": { - "properties": { - "ph": { - "operating_weeks_year": 52.142899999999997, - "type": "ScheduleRulesetPhProperties", - "operating_days_wk": 7.0, - "id_num": 0, - "operating_periods": { - "collection": [] - } - }, - "type": "ScheduleRulesetProperties", - "revive": { - "id_num": 0, - "type": "ScheduleRulesetReviveProperties" + "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 1.0, + 0.25, + 1.0 + ] } - }, + ], + "holiday_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", + "winter_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", "schedule_type_limit": { + "lower_limit": 0.0, + "upper_limit": 1.0, + "identifier": "Fractional", "numeric_type": "Continuous", - "type": "ScheduleTypeLimit", - "unit_type": "ActivityLevel", - "upper_limit": { - "type": "NoLimit" - }, - "identifier": "Activity Level", - "lower_limit": 0.0 + "unit_type": "Dimensionless", + "type": "ScheduleTypeLimit" }, - "type": "ScheduleRuleset", - "default_day_schedule": "Seated Adult Activity_Day Schedule", - "identifier": "Seated Adult Activity", - "day_schedules": [ + "identifier": "Generic Office Infiltration", + "summer_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", + "schedule_rules": [ { - "values": [ - 120.0 - ], - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ] + "apply_tuesday": true, + "apply_friday": true, + "apply_sunday": false, + "apply_saturday": false, + "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Wkdy", + "apply_monday": true, + "end_date": [ + 12, + 31 ], - "identifier": "Seated Adult Activity_Day Schedule", - "interpolate": false + "start_date": [ + 1, + 1 + ], + "apply_thursday": true, + "apply_wednesday": true, + "type": "ScheduleRuleAbridged" + }, + { + "apply_tuesday": false, + "apply_friday": false, + "apply_sunday": false, + "apply_saturday": true, + "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Sat", + "apply_monday": false, + "end_date": [ + 12, + 31 + ], + "start_date": [ + 1, + 1 + ], + "apply_thursday": false, + "apply_wednesday": false, + "type": "ScheduleRuleAbridged" } - ] - }, - "latent_fraction": { - "type": "Autocalculate" + ], + "type": "ScheduleRuleset", + "properties": { + "ph": { + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] + }, + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997 + }, + "type": "ScheduleRulesetProperties", + "revive": { + "type": "ScheduleRulesetReviveProperties", + "id_num": 0 + } + } } } }, "hvac": { - "heating_air_temperature": 50.0, - "sensible_heat_recovery": 0.0, + "heating_limit": { + "type": "Autosize" + }, + "demand_controlled_ventilation": false, "economizer_type": "DifferentialDryBulb", + "cooling_air_temperature": 13.0, + "latent_heat_recovery": 0.0, + "cooling_limit": { + "type": "Autosize" + }, + "identifier": "Room_2_684ff8ea Ideal Loads Air System", + "sensible_heat_recovery": 0.0, + "type": "IdealAirSystem", + "heating_air_temperature": 50.0, "properties": { + "type": "IdealAirSystemProperties", "revive": { "equipment_collection": { - "type": "PhiusReviveHVACEquipmentCollection", - "equipment": [] + "equipment": [], + "type": "PhiusReviveHVACEquipmentCollection" }, "type": "IdealAirSystemReviveProperties" + } + } + } + }, + "ph": { + "ph_foundations": [], + "id_num": 0, + "spaces": [], + "type": "RoomPhProperties", + "specific_heat_capacity": "1-LIGHTWEIGHT", + "ph_bldg_segment": { + "display_name": "Unnamed_Bldg_Segment", + "name": "Unnamed_Bldg_Segment", + "phi_certification": { + "display_name": "ad144eb4-6b90-44bf-89c4-aaacfbc5579d", + "phpp_version": 9, + "identifier": "ad144eb4-6b90-44bf-89c4-aaacfbc5579d", + "user_data": {}, + "attributes": { + "certification_type": "1-PASSIVE HOUSE", + "enerphit_type": "2-ENERGY DEMAND METHOD", + "building_category_type": "1-RESIDENTIAL BUILDING", + "certification_class": "1-CLASSIC", + "tfa_override": null, + "ihg_type": "2-STANDARD", + "building_use_type": "10-DWELLING", + "phpp_version": 9, + "occupancy_type": "1-STANDARD (ONLY FOR RESIDENTIAL BUILDINGS)", + "primary_energy_type": "2-PER (RENEWABLE)", + "retrofit_type": "1-NEW BUILDING" + } + }, + "phius_certification": { + "display_name": "cc69825d-7578-4bfb-861e-f37320713569", + "building_category_type": { + "value": "1-RESIDENTIAL BUILDING" + }, + "localization_selection_type": 2, + "building_use_type": { + "value": "1-RESIDENTIAL" + }, + "int_gains_num_toilets": 1, + "int_gains_dhw_marginal_perf_ratio": null, + "certification_program": { + "value": "7-PHIUS 2021 CORE" + }, + "icfa_override": null, + "building_type": { + "value": "1-NEW_CONSTRUCTION" }, - "type": "IdealAirSystemProperties" + "building_status": { + "value": "1-IN_PLANNING" + }, + "PHIUS2021_cooling_load": 10.0, + "int_gains_toilet_room_util_pat": null, + "identifier": "cc69825d-7578-4bfb-861e-f37320713569", + "PHIUS2021_cooling_demand": 15.0, + "user_data": {}, + "int_gains_evap_per_person": 15, + "PHIUS2021_heating_load": 10.0, + "int_gains_use_school_defaults": false, + "int_gains_flush_heat_loss": true, + "PHIUS2021_heating_demand": 15.0 }, - "type": "IdealAirSystem", - "latent_heat_recovery": 0.0, - "demand_controlled_ventilation": false, - "cooling_air_temperature": 13.0, - "identifier": "Room_2_b7c5199c Ideal Loads Air System", - "heating_limit": { - "type": "Autosize" + "co2e_factors": { + "factors": [] }, - "cooling_limit": { - "type": "Autosize" + "num_dwelling_units": 1, + "site": { + "display_name": "31e77a81-613e-46e4-84ee-c4e2dfced5fc", + "phpp_library_codes": { + "display_name": "US0055b-New York", + "identifier": "8f9d0d00-9fbb-4385-8d07-c0eccc437422", + "user_data": {}, + "dataset_name": "US0055b-New York", + "region_code": "New York", + "country_code": "US-United States of America" + }, + "climate": { + "display_name": "New York", + "station_elevation": 0.0, + "summer_daily_temperature_swing": 8.0, + "ground": { + "display_name": "69a7e736-3407-41a0-9020-1b5a355b2b3e", + "ground_thermal_conductivity": 2, + "ground_heat_capacity": 1000, + "identifier": "69a7e736-3407-41a0-9020-1b5a355b2b3e", + "depth_groundwater": 3, + "flow_rate_groundwater": 0.050000000000000003, + "user_data": {}, + "ground_density": 2000 + }, + "monthly_temps": { + "display_name": "1821fd59-0918-45bc-9142-f0a66cea06ed", + "ground_temps": { + "display_name": "5b577a27-49c6-4d7b-8db3-5fc01a2a9753", + "april": 0.0, + "march": 0.0, + "october": 0.0, + "november": 0.0, + "february": 0.0, + "june": 0.0, + "may": 0.0, + "july": 0.0, + "identifier": "5b577a27-49c6-4d7b-8db3-5fc01a2a9753", + "user_data": {}, + "august": 0.0, + "december": 0.0, + "january": 0.0, + "september": 0.0 + }, + "sky_temps": { + "display_name": "907d6808-14b5-4944-b6cc-e91b11851e81", + "april": 0.0, + "march": 0.0, + "october": 0.0, + "november": 0.0, + "february": 0.0, + "june": 0.0, + "may": 0.0, + "july": 0.0, + "identifier": "907d6808-14b5-4944-b6cc-e91b11851e81", + "user_data": {}, + "august": 0.0, + "december": 0.0, + "january": 0.0, + "september": 0.0 + }, + "identifier": "1821fd59-0918-45bc-9142-f0a66cea06ed", + "dewpoints": { + "display_name": "e833d25e-c4c8-482d-b0bd-3d0e8a6f053c", + "april": 0.0, + "march": 0.0, + "october": 0.0, + "november": 0.0, + "february": 0.0, + "june": 0.0, + "may": 0.0, + "july": 0.0, + "identifier": "e833d25e-c4c8-482d-b0bd-3d0e8a6f053c", + "user_data": {}, + "august": 0.0, + "december": 0.0, + "january": 0.0, + "september": 0.0 + }, + "user_data": {}, + "air_temps": { + "display_name": "532ff38f-0928-489c-91c3-ca635b60c464", + "april": 0.0, + "march": 0.0, + "october": 0.0, + "november": 0.0, + "february": 0.0, + "june": 0.0, + "may": 0.0, + "july": 0.0, + "identifier": "532ff38f-0928-489c-91c3-ca635b60c464", + "user_data": {}, + "august": 0.0, + "december": 0.0, + "january": 0.0, + "september": 0.0 + } + }, + "average_wind_speed": 4.0, + "identifier": "45081239-6b64-478b-88f4-b39775e408b9", + "peak_loads": { + "display_name": "cac16091-04be-4964-8245-cd1d9c38f7ff", + "heat_load_1": { + "display_name": "1cbbf51b-844e-4ef8-9f80-16673bfa8e51", + "rad_global": 0.0, + "rad_north": 0.0, + "rad_south": 0.0, + "rad_east": 0.0, + "identifier": "1cbbf51b-844e-4ef8-9f80-16673bfa8e51", + "temp": 0.0, + "sky_temp": null, + "rad_west": 0.0, + "user_data": {}, + "ground_temp": null, + "dewpoint": null + }, + "heat_load_2": { + "display_name": "86e744a0-d9de-4f5e-aefa-834e07ae69e3", + "rad_global": 0.0, + "rad_north": 0.0, + "rad_south": 0.0, + "rad_east": 0.0, + "identifier": "86e744a0-d9de-4f5e-aefa-834e07ae69e3", + "temp": 0.0, + "sky_temp": null, + "rad_west": 0.0, + "user_data": {}, + "ground_temp": null, + "dewpoint": null + }, + "cooling_load_2": { + "display_name": "612d9a29-1862-4506-a0e1-6c7ab657fb2c", + "rad_global": 0.0, + "rad_north": 0.0, + "rad_south": 0.0, + "rad_east": 0.0, + "identifier": "612d9a29-1862-4506-a0e1-6c7ab657fb2c", + "temp": 0.0, + "sky_temp": null, + "rad_west": 0.0, + "user_data": {}, + "ground_temp": null, + "dewpoint": null + }, + "cooling_load_1": { + "display_name": "49e053cd-be98-470a-9d1d-dbb8b80126ce", + "rad_global": 0.0, + "rad_north": 0.0, + "rad_south": 0.0, + "rad_east": 0.0, + "identifier": "49e053cd-be98-470a-9d1d-dbb8b80126ce", + "temp": 0.0, + "sky_temp": null, + "rad_west": 0.0, + "user_data": {}, + "ground_temp": null, + "dewpoint": null + }, + "identifier": "cac16091-04be-4964-8245-cd1d9c38f7ff", + "user_data": {} + }, + "monthly_radiation": { + "display_name": "3445fbd3-0c33-4551-a53c-dd62c3d962af", + "south": { + "display_name": "b515c2e6-a38e-4cb1-9903-935e1941b301", + "april": 0.0, + "march": 0.0, + "october": 0.0, + "november": 0.0, + "february": 0.0, + "june": 0.0, + "may": 0.0, + "july": 0.0, + "identifier": "b515c2e6-a38e-4cb1-9903-935e1941b301", + "user_data": {}, + "august": 0.0, + "december": 0.0, + "january": 0.0, + "september": 0.0 + }, + "west": { + "display_name": "a5f347c7-7178-4f49-a421-815326fdda81", + "april": 0.0, + "march": 0.0, + "october": 0.0, + "november": 0.0, + "february": 0.0, + "june": 0.0, + "may": 0.0, + "july": 0.0, + "identifier": "a5f347c7-7178-4f49-a421-815326fdda81", + "user_data": {}, + "august": 0.0, + "december": 0.0, + "january": 0.0, + "september": 0.0 + }, + "east": { + "display_name": "44c03149-31ba-4298-8106-d53c9161fef4", + "april": 0.0, + "march": 0.0, + "october": 0.0, + "november": 0.0, + "february": 0.0, + "june": 0.0, + "may": 0.0, + "july": 0.0, + "identifier": "44c03149-31ba-4298-8106-d53c9161fef4", + "user_data": {}, + "august": 0.0, + "december": 0.0, + "january": 0.0, + "september": 0.0 + }, + "north": { + "display_name": "32ac1d44-4832-4509-91c2-87ae43846abb", + "april": 0.0, + "march": 0.0, + "october": 0.0, + "november": 0.0, + "february": 0.0, + "june": 0.0, + "may": 0.0, + "july": 0.0, + "identifier": "32ac1d44-4832-4509-91c2-87ae43846abb", + "user_data": {}, + "august": 0.0, + "december": 0.0, + "january": 0.0, + "september": 0.0 + }, + "identifier": "3445fbd3-0c33-4551-a53c-dd62c3d962af", + "glob": { + "display_name": "f7a2e88c-0037-411b-b136-dcd80fe37328", + "april": 0.0, + "march": 0.0, + "october": 0.0, + "november": 0.0, + "february": 0.0, + "june": 0.0, + "may": 0.0, + "july": 0.0, + "identifier": "f7a2e88c-0037-411b-b136-dcd80fe37328", + "user_data": {}, + "august": 0.0, + "december": 0.0, + "january": 0.0, + "september": 0.0 + }, + "user_data": {} + }, + "user_data": {} + }, + "location": { + "display_name": "6e86af8d-8019-4ec6-9b04-2a25c64c69aa", + "latitude": 40.600000000000001, + "longitude": -73.799999999999997, + "climate_zone": 1, + "identifier": "6e86af8d-8019-4ec6-9b04-2a25c64c69aa", + "user_data": {}, + "site_elevation": null, + "hours_from_UTC": -4 + }, + "identifier": "31e77a81-613e-46e4-84ee-c4e2dfced5fc", + "user_data": {} + }, + "set_points": { + "display_name": "ca2943ac-6dcf-4290-bfe2-18b939eafa98", + "winter": 20.0, + "identifier": "ca2943ac-6dcf-4290-bfe2-18b939eafa98", + "user_data": {}, + "summer": 25.0 + }, + "summer_hrv_bypass_mode": { + "value": "4-ALWAYS" + }, + "identifier": "955a6fdb-705f-42b0-a46e-5ad413c0e44e", + "source_energy_factors": { + "factors": [] + }, + "non_combustible_materials": false, + "user_data": {}, + "thermal_bridges": {}, + "mech_room_temp": 20.0, + "num_floor_levels": 1, + "wind_exposure_type": { + "value": "1-SEVERAL_SIDES_EXPOSED_NO_SCREENING" } } }, - "radiance": { - "type": "RoomRadianceProperties" - }, "ph_hvac": { - "supportive_devices": [], - "type": "RoomPhHvacProperties", - "renewable_devices": [], + "heating_systems": [], "heat_pump_systems": [], + "exhaust_vent_devices": [], + "supportive_devices": [], "id_num": 0, - "heating_systems": [], + "renewable_devices": [], + "type": "RoomPhHvacProperties", "hot_water_system": null, - "exhaust_vent_devices": [], "ventilation_system": null }, "type": "RoomProperties" }, - "type": "Room", - "identifier": "Room_2_b7c5199c", - "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 d25804f..2feec7f 100644 --- a/tests/_test_reference_files_hbjson/Multi_Room_Complete.hbjson +++ b/tests/_test_reference_files_hbjson/Multi_Room_Complete.hbjson @@ -1,48 +1,11 @@ { + "display_name": "unnamed", + "tolerance": 0.001, "orphaned_shades": [ { - "properties": { - "revive": { - "id_num": 0, - "type": "ShadeRevivePropertiesAbridged" - }, - "ph": { - "id_num": 0, - "type": "ShadePhPropertiesAbridged" - }, - "energy": { - "type": "ShadeEnergyPropertiesAbridged" - }, - "radiance": { - "type": "ShadeRadiancePropertiesAbridged" - }, - "ph_hvac": { - "type": "ShadePhHvacPropertiesAbridged" - }, - "type": "ShadePropertiesAbridged" - }, - "type": "Shade", - "is_detached": true, + "display_name": "Shade_cb362c18", + "identifier": "Shade_cb362c18", "geometry": { - "plane": { - "x": [ - 1.0, - 0.0, - 0.0 - ], - "type": "Plane", - "n": [ - 0.0, - 0.0, - 1.0 - ], - "o": [ - 5.4164426415671443, - -6.4550649771681172, - 3.3000000000000003 - ] - }, - "type": "Face3D", "boundary": [ [ 0.19101299543362338, @@ -64,26 +27,41 @@ -5.3717764488546882, 3.3000000000000003 ] - ] + ], + "plane": { + "x": [ + 1.0, + 0.0, + 0.0 + ], + "type": "Plane", + "o": [ + 5.4164426415671443, + -6.4550649771681172, + 3.3000000000000003 + ], + "n": [ + 0.0, + 0.0, + 1.0 + ] + }, + "type": "Face3D" }, - "identifier": "Shade_127ebfea", - "display_name": "Shade_127ebfea" - }, - { "properties": { "revive": { - "id_num": 0, - "type": "ShadeRevivePropertiesAbridged" + "type": "ShadeRevivePropertiesAbridged", + "id_num": 0 }, - "ph": { - "id_num": 0, - "type": "ShadePhPropertiesAbridged" + "radiance": { + "type": "ShadeRadiancePropertiesAbridged" }, "energy": { "type": "ShadeEnergyPropertiesAbridged" }, - "radiance": { - "type": "ShadeRadiancePropertiesAbridged" + "ph": { + "type": "ShadePhPropertiesAbridged", + "id_num": 0 }, "ph_hvac": { "type": "ShadePhHvacPropertiesAbridged" @@ -91,27 +69,12 @@ "type": "ShadePropertiesAbridged" }, "type": "Shade", - "is_detached": true, + "is_detached": true + }, + { + "display_name": "Shade_b453e9cb", + "identifier": "Shade_b453e9cb", "geometry": { - "plane": { - "x": [ - 1.0, - 0.0, - 0.0 - ], - "type": "Plane", - "n": [ - 0.0, - 0.0, - 1.0 - ], - "o": [ - 12.999462339761147, - -7.7921559452034819, - 3.3000000000000003 - ] - }, - "type": "Face3D", "boundary": [ [ 5.6074556370007675, @@ -133,1424 +96,1337 @@ -6.7088674168900519, 3.3000000000000003 ] - ] + ], + "plane": { + "x": [ + 1.0, + 0.0, + 0.0 + ], + "type": "Plane", + "o": [ + 12.999462339761147, + -7.7921559452034819, + 3.3000000000000003 + ], + "n": [ + 0.0, + 0.0, + 1.0 + ] + }, + "type": "Face3D" + }, + "properties": { + "revive": { + "type": "ShadeRevivePropertiesAbridged", + "id_num": 0 + }, + "radiance": { + "type": "ShadeRadiancePropertiesAbridged" + }, + "energy": { + "type": "ShadeEnergyPropertiesAbridged" + }, + "ph": { + "type": "ShadePhPropertiesAbridged", + "id_num": 0 + }, + "ph_hvac": { + "type": "ShadePhHvacPropertiesAbridged" + }, + "type": "ShadePropertiesAbridged" }, - "identifier": "Shade_e862401b", - "display_name": "Shade_e862401b" + "type": "Shade", + "is_detached": true } ], + "identifier": "unnamed_ac4c0e22", "units": "Meters", "properties": { "revive": { - "type": "ModelRevivePropertiesAbridged", "grid_region": { + "region_code": "", "region_name": "", "description": "", - "filepath": "", - "region_code": "" + "filepath": "" }, "analysis_duration": 50, - "id_num": 0, - "co2_measures": {}, "national_emissions_factors": { - "type": "NationalEmissionsFactors", - "kg_CO2_per_USD": 0.0, "us_trading_rank": 0, - "GDP_million_USD": 0.0, "country_name": "", - "CO2_MT": 0.0 + "kg_CO2_per_USD": 0.0, + "type": "NationalEmissionsFactors", + "CO2_MT": 0.0, + "GDP_million_USD": 0.0 }, - "envelope_labor_cost_fraction": 0.40000000000000002 - }, - "ph": { "id_num": 0, - "type": "ModelPhPropertiesAbridged", - "team": { - "building": { - "license_number": null, - "email": null, - "telephone": null, - "city": null, - "identifier": "7b82d32d-b416-41ee-96dd-1bd2c6dde629", - "street": null, - "user_data": {}, - "name": null, - "post_code": null, - "display_name": "7b82d32d-b416-41ee-96dd-1bd2c6dde629" + "co2_measures": {}, + "fuels": { + "NATURAL_GAS": { + "fuel_type": "NATURAL_GAS", + "sale_price_per_kwh": 0.0, + "purchase_price_per_kwh": 0.047100000000000003, + "type": "Fuel", + "annual_base_price": 200.0 }, - "customer": { - "license_number": null, - "email": null, - "telephone": null, - "city": null, - "identifier": "0165e379-6c8c-4c0e-8126-5c42f39ee9ea", - "street": null, - "user_data": {}, - "name": null, - "post_code": null, - "display_name": "0165e379-6c8c-4c0e-8126-5c42f39ee9ea" + "ELECTRICITY": { + "fuel_type": "ELECTRICITY", + "sale_price_per_kwh": 0.13200000000000001, + "purchase_price_per_kwh": 0.17984, + "type": "Fuel", + "annual_base_price": 200.0 + } + }, + "type": "ModelRevivePropertiesAbridged", + "envelope_labor_cost_fraction": 0.40000000000000002 + }, + "radiance": { + "global_modifier_set": { + "wall_set": { + "interior_modifier": "generic_wall_0.50", + "exterior_modifier": "generic_wall_0.50", + "type": "WallModifierSetAbridged" }, - "owner": { - "license_number": null, - "email": null, - "telephone": null, - "city": null, - "identifier": "23e01ef6-aeb4-4f33-a6bf-7ddb5ac9687b", - "street": null, - "user_data": {}, - "name": null, - "post_code": null, - "display_name": "23e01ef6-aeb4-4f33-a6bf-7ddb5ac9687b" + "roof_ceiling_set": { + "interior_modifier": "generic_ceiling_0.80", + "exterior_modifier": "generic_ceiling_0.80", + "type": "RoofCeilingModifierSetAbridged" }, - "identifier": "a72b6848-ce79-43a9-80a5-d59f6c8037f3", - "designer": { - "license_number": null, - "email": null, - "telephone": null, - "city": null, - "identifier": "7f85fabb-d9b7-4c4a-918c-a480d404ef3c", - "street": null, - "user_data": {}, - "name": null, - "post_code": null, - "display_name": "7f85fabb-d9b7-4c4a-918c-a480d404ef3c" + "door_set": { + "interior_glass_modifier": "generic_interior_window_vis_0.88", + "overhead_modifier": "generic_opaque_door_0.50", + "interior_modifier": "generic_opaque_door_0.50", + "exterior_modifier": "generic_opaque_door_0.50", + "type": "DoorModifierSetAbridged", + "exterior_glass_modifier": "generic_exterior_window_vis_0.64" }, - "user_data": {}, - "display_name": "a72b6848-ce79-43a9-80a5-d59f6c8037f3" - }, - "bldg_segments": [ - { - "wind_exposure_type": { - "value": "1-SEVERAL_SIDES_EXPOSED_NO_SCREENING" + "modifiers": [ + { + "type": "Plastic", + "g_reflectance": 0.80000000000000004, + "r_reflectance": 0.80000000000000004, + "specularity": 0.0, + "dependencies": [], + "identifier": "generic_ceiling_0.80", + "b_reflectance": 0.80000000000000004, + "modifier": null, + "roughness": 0.0 }, - "summer_hrv_bypass_mode": { - "value": "2-TEMPERATURE CONTROLLED" + { + "type": "Plastic", + "g_reflectance": 0.5, + "r_reflectance": 0.5, + "specularity": 0.0, + "dependencies": [], + "identifier": "generic_interior_shade_0.50", + "b_reflectance": 0.5, + "modifier": null, + "roughness": 0.0 }, - "set_points": { - "identifier": "266f7f68-f5c6-4729-bc4c-9674ecca57f7", - "user_data": {}, - "summer": 24.0, - "display_name": "266f7f68-f5c6-4729-bc4c-9674ecca57f7", - "winter": 21.0 + { + "dependencies": [], + "modifier": null, + "type": "Glass", + "r_transmissivity": 0.95841543286105957, + "identifier": "generic_interior_window_vis_0.88", + "b_transmissivity": 0.95841543286105957, + "g_transmissivity": 0.95841543286105957, + "refraction_index": null }, - "non_combustible_materials": false, - "num_dwelling_units": 1, - "phi_certification": { - "phpp_version": 9, - "attributes": { - "enerphit_type": "2-ENERGY DEMAND METHOD", - "phpp_version": 9, - "building_use_type": "10-DWELLING", - "occupancy_type": "1-STANDARD (ONLY FOR RESIDENTIAL BUILDINGS)", - "certification_type": "1-PASSIVE HOUSE", - "retrofit_type": "1-NEW BUILDING", - "certification_class": "1-CLASSIC", - "building_category_type": "1-RESIDENTIAL BUILDING", - "tfa_override": null, - "ihg_type": "2-STANDARD", - "primary_energy_type": "1-PE (NON-RENEWABLE)" - }, - "identifier": "f6b8ed23-03f1-4f2b-b586-38de86550735", - "user_data": {}, - "display_name": "f6b8ed23-03f1-4f2b-b586-38de86550735" + { + "type": "Plastic", + "g_reflectance": 0.5, + "r_reflectance": 0.5, + "specularity": 0.0, + "dependencies": [], + "identifier": "generic_wall_0.50", + "b_reflectance": 0.5, + "modifier": null, + "roughness": 0.0 }, - "thermal_bridges": { - "562f4288-9612-4736-a81c-1a1f4eb7662b": { - "psi_value": 0.01, - "quantity": 1.0, - "geometry": { - "type": "Polyline3D", - "vertices": [ - [ - 12.0, - 0.0, - 0.0 - ], - [ - 12.0, - 4.0, - 0.0 - ], - [ - 12.0, - 4.0, - 3.0 - ], - [ - 12.0, - 0.0, - 3.0 - ], - [ - 12.0, - 0.0, - 0.0 - ] + { + "dependencies": [], + "modifier": null, + "type": "Glass", + "r_transmissivity": 0.69757618153843315, + "identifier": "generic_exterior_window_vis_0.64", + "b_transmissivity": 0.69757618153843315, + "g_transmissivity": 0.69757618153843315, + "refraction_index": null + }, + { + "type": "Plastic", + "g_reflectance": 0.5, + "r_reflectance": 0.5, + "specularity": 0.0, + "dependencies": [], + "identifier": "generic_opaque_door_0.50", + "b_reflectance": 0.5, + "modifier": null, + "roughness": 0.0 + }, + { + "type": "Plastic", + "g_reflectance": 0.20000000000000001, + "r_reflectance": 0.20000000000000001, + "specularity": 0.0, + "dependencies": [], + "identifier": "generic_floor_0.20", + "b_reflectance": 0.20000000000000001, + "modifier": null, + "roughness": 0.0 + }, + { + "type": "Plastic", + "g_reflectance": 0.34999999999999998, + "r_reflectance": 0.34999999999999998, + "specularity": 0.0, + "dependencies": [], + "identifier": "generic_exterior_shade_0.35", + "b_reflectance": 0.34999999999999998, + "modifier": null, + "roughness": 0.0 + }, + { + "specularity": 0.0, + "type": "Trans", + "identifier": "air_boundary", + "r_reflectance": 1.0, + "g_reflectance": 1.0, + "b_reflectance": 1.0, + "transmitted_diff": 1.0, + "modifier": null, + "transmitted_spec": 1.0, + "dependencies": [], + "roughness": 0.0 + }, + { + "type": "Plastic", + "g_reflectance": 0.20000000000000001, + "r_reflectance": 0.20000000000000001, + "specularity": 0.0, + "dependencies": [], + "identifier": "generic_context_0.20", + "b_reflectance": 0.20000000000000001, + "modifier": null, + "roughness": 0.0 + } + ], + "floor_set": { + "interior_modifier": "generic_floor_0.20", + "exterior_modifier": "generic_floor_0.20", + "type": "FloorModifierSetAbridged" + }, + "air_boundary_modifier": "air_boundary", + "shade_set": { + "interior_modifier": "generic_interior_shade_0.50", + "exterior_modifier": "generic_exterior_shade_0.35", + "type": "ShadeModifierSetAbridged" + }, + "type": "GlobalModifierSet", + "aperture_set": { + "skylight_modifier": "generic_exterior_window_vis_0.64", + "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": "ApertureModifierSetAbridged" + }, + "context_modifier": "generic_context_0.20" + }, + "modifier_sets": [], + "type": "ModelRadianceProperties", + "modifiers": [ + { + "type": "Plastic", + "g_reflectance": 0.20000000000000001, + "r_reflectance": 0.20000000000000001, + "specularity": 0.0, + "dependencies": [], + "identifier": "generic_context_0.20", + "b_reflectance": 0.20000000000000001, + "modifier": null, + "roughness": 0.0 + } + ] + }, + "energy": { + "schedules": [ + { + "default_day_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", + "day_schedules": [ + { + "times": [ + [ + 0, + 0 ] - }, - "id_num": 0, - "identifier": "562f4288-9612-4736-a81c-1a1f4eb7662b", - "user_data": {}, - "fRsi_value": 0.75, - "display_name": "_unnamed_bldg_segment__72286b6a", - "_group_type": { - "value": "15-AMBIENT" - } + ], + "identifier": "OfficeMedium INFIL_SCH_PNNL_Default", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 1.0 + ] }, - "dbd164a5-44f7-4c9f-8089-c5452dac894e": { - "psi_value": 0.01, - "quantity": 1.0, - "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 - ] + { + "times": [ + [ + 0, + 0 + ], + [ + 6, + 0 + ], + [ + 22, + 0 ] - }, - "id_num": 0, - "identifier": "dbd164a5-44f7-4c9f-8089-c5452dac894e", - "user_data": {}, - "fRsi_value": 0.75, - "display_name": "_unnamed_bldg_segment__090952e1", - "_group_type": { - "value": "15-AMBIENT" - } + ], + "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 1.0, + 0.25, + 1.0 + ] }, - "10ed528b-6ced-4ee5-bd51-a0672ba96229": { - "psi_value": 0.01, - "quantity": 1.0, - "geometry": { - "type": "Polyline3D", - "vertices": [ - [ - 0.0, - 0.0, - 3.0 - ], - [ - 5.0, - 0.0, - 3.0 - ], - [ - 5.0, - 4.0, - 3.0 - ], - [ - 0.0, - 4.0, - 3.0 - ], - [ - 0.0, - 0.0, - 3.0 - ] + { + "times": [ + [ + 0, + 0 + ], + [ + 6, + 0 + ], + [ + 18, + 0 ] - }, - "id_num": 0, - "identifier": "10ed528b-6ced-4ee5-bd51-a0672ba96229", - "user_data": {}, - "fRsi_value": 0.75, - "display_name": "_unnamed_bldg_segment__892ea262", - "_group_type": { - "value": "15-AMBIENT" - } + ], + "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 1.0, + 0.25, + 1.0 + ] }, - "6f2a7600-d1ad-4a4e-983e-190a65d21f8d": { - "psi_value": 0.01, - "quantity": 1.0, - "geometry": { - "type": "Polyline3D", - "vertices": [ - [ - 5.0, - 4.0, - 0.0 - ], - [ - 5.0, - 0.0, - 0.0 - ], - [ - 5.0, - 0.0, - 3.0 - ], - [ - 5.0, - 4.0, - 3.0 - ], - [ - 5.0, - 4.0, - 0.0 - ] + { + "times": [ + [ + 0, + 0 + ], + [ + 6, + 0 + ], + [ + 22, + 0 ] - }, - "id_num": 0, - "identifier": "6f2a7600-d1ad-4a4e-983e-190a65d21f8d", - "user_data": {}, - "fRsi_value": 0.75, - "display_name": "_unnamed_bldg_segment__2c94aeeb", - "_group_type": { - "value": "15-AMBIENT" - } + ], + "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 1.0, + 0.25, + 1.0 + ] }, - "a43ddbf1-01f2-4ac2-9f2c-9eb49f44ab9d": { - "psi_value": 0.01, - "quantity": 1.0, - "geometry": { - "type": "Polyline3D", - "vertices": [ - [ - 5.0, - 0.0, - 0.0 - ], - [ - 5.0, - 4.0, - 0.0 - ], - [ - 5.0, - 4.0, - 3.0 - ], - [ - 5.0, - 0.0, - 3.0 - ], - [ - 5.0, - 0.0, - 0.0 - ] + { + "times": [ + [ + 0, + 0 + ], + [ + 6, + 0 + ], + [ + 18, + 0 ] - }, - "id_num": 0, - "identifier": "a43ddbf1-01f2-4ac2-9f2c-9eb49f44ab9d", - "user_data": {}, - "fRsi_value": 0.75, - "display_name": "_unnamed_bldg_segment__f299f4a7", - "_group_type": { - "value": "15-AMBIENT" - } + ], + "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 1.0, + 0.25, + 1.0 + ] + } + ], + "holiday_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", + "winter_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", + "schedule_type_limit": "Fractional", + "identifier": "Generic Office Infiltration", + "summer_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", + "schedule_rules": [ + { + "apply_tuesday": true, + "apply_friday": true, + "apply_sunday": false, + "apply_saturday": false, + "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Wkdy", + "apply_monday": true, + "end_date": [ + 12, + 31 + ], + "start_date": [ + 1, + 1 + ], + "apply_thursday": true, + "apply_wednesday": true, + "type": "ScheduleRuleAbridged" }, - "1d063c87-a94b-4fe9-bff5-6e4cf9490fb6": { - "psi_value": 0.01, - "quantity": 1.0, - "geometry": { - "type": "Polyline3D", - "vertices": [ - [ - 0.0, - 3.3416407864998741, - 0.49376941012509468 - ], - [ - 0.0, - 0.65835921350012616, - 0.49376941012509468 - ], - [ - 0.0, - 0.65835921350012616, - 2.5062305898749053 - ], - [ - 0.0, - 3.3416407864998741, - 2.5062305898749053 - ], - [ - 0.0, - 3.3416407864998741, - 0.49376941012509468 - ] - ] - }, + { + "apply_tuesday": false, + "apply_friday": false, + "apply_sunday": false, + "apply_saturday": true, + "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Sat", + "apply_monday": false, + "end_date": [ + 12, + 31 + ], + "start_date": [ + 1, + 1 + ], + "apply_thursday": false, + "apply_wednesday": false, + "type": "ScheduleRuleAbridged" + } + ], + "type": "ScheduleRulesetAbridged", + "properties": { + "ph": { + "operating_days_wk": 7.0, "id_num": 0, - "identifier": "1d063c87-a94b-4fe9-bff5-6e4cf9490fb6", - "user_data": {}, - "fRsi_value": 0.75, - "display_name": "_unnamed_bldg_segment__cba1732a", - "_group_type": { - "value": "15-AMBIENT" - } + "operating_periods": { + "collection": [] + }, + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997 }, - "bc9b1930-41a1-4eed-aa75-4ae06c21345c": { - "psi_value": 0.01, - "quantity": 1.0, - "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 - ] + "type": "ScheduleRulesetProperties", + "revive": { + "type": "ScheduleRulesetReviveProperties", + "id_num": 0 + } + } + }, + { + "default_day_schedule": "Always On_Day Schedule", + "day_schedules": [ + { + "times": [ + [ + 0, + 0 ] - }, + ], + "identifier": "Always On_Day Schedule", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 1.0 + ] + } + ], + "schedule_type_limit": "Fractional", + "identifier": "Always On", + "type": "ScheduleRulesetAbridged", + "properties": { + "ph": { + "operating_days_wk": 7.0, "id_num": 0, - "identifier": "bc9b1930-41a1-4eed-aa75-4ae06c21345c", - "user_data": {}, - "fRsi_value": 0.75, - "display_name": "_unnamed_bldg_segment__89e17c2f", - "_group_type": { - "value": "15-AMBIENT" - } + "operating_periods": { + "collection": [] + }, + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997 }, - "7319d45d-2314-45c0-b01c-11a5fa89f848": { - "psi_value": 0.01, - "quantity": 1.0, - "geometry": { - "type": "Polyline3D", - "vertices": [ - [ - 5.0, - 0.0, - 0.0 - ], - [ - 12.0, - 0.0, - 0.0 - ], - [ - 12.0, - 0.0, - 3.0 - ], - [ - 5.0, - 0.0, - 3.0 - ], - [ - 5.0, - 0.0, - 0.0 - ] + "type": "ScheduleRulesetProperties", + "revive": { + "type": "ScheduleRulesetReviveProperties", + "id_num": 0 + } + } + }, + { + "default_day_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", + "day_schedules": [ + { + "times": [ + [ + 0, + 0 ] - }, - "id_num": 0, - "identifier": "7319d45d-2314-45c0-b01c-11a5fa89f848", - "user_data": {}, - "fRsi_value": 0.75, - "display_name": "_unnamed_bldg_segment__cd0fa6a5", - "_group_type": { - "value": "15-AMBIENT" - } + ], + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 15.600000000000000 + ] }, - "0d05c011-b2cb-410c-9ff0-a91e4d449ed9": { - "psi_value": 0.01, - "quantity": 1.0, - "geometry": { - "type": "Polyline3D", - "vertices": [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 5.0, - 0.0, - 0.0 - ], - [ - 5.0, - 0.0, - 3.0 - ], - [ - 0.0, - 0.0, - 3.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] + { + "times": [ + [ + 0, + 0 ] - }, - "id_num": 0, - "identifier": "0d05c011-b2cb-410c-9ff0-a91e4d449ed9", - "user_data": {}, - "fRsi_value": 0.75, - "display_name": "_unnamed_bldg_segment__59eee55a", - "_group_type": { - "value": "15-AMBIENT" - } + ], + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 15.600000000000000 + ] }, - "5d385b56-daba-4f5e-a7e1-86ec2bd89156": { - "psi_value": 0.01, - "quantity": 1.0, - "geometry": { - "type": "Polyline3D", - "vertices": [ - [ - 0.0, - 4.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 3.0 - ], - [ - 0.0, - 4.0, - 3.0 - ], - [ - 0.0, - 4.0, - 0.0 - ] + { + "times": [ + [ + 0, + 0 + ], + [ + 5, + 0 + ], + [ + 6, + 0 + ], + [ + 7, + 0 + ], + [ + 22, + 0 ] - }, - "id_num": 0, - "identifier": "5d385b56-daba-4f5e-a7e1-86ec2bd89156", - "user_data": {}, - "fRsi_value": 0.75, - "display_name": "_unnamed_bldg_segment__5e1b4a2a", - "_group_type": { - "value": "15-AMBIENT" - } - } - }, - "phius_certification": { - "PHIUS2021_cooling_load": 10.0, - "PHIUS2021_heating_demand": 15.0, - "building_use_type": { - "value": "1-RESIDENTIAL" - }, - "int_gains_toilet_room_util_pat": null, - "icfa_override": null, - "localization_selection_type": 2, - "certification_program": { - "value": "7-PHIUS 2021 CORE" - }, - "building_type": { - "value": "1-NEW_CONSTRUCTION" - }, - "PHIUS2021_heating_load": 10.0, - "int_gains_evap_per_person": 15, - "building_status": { - "value": "1-IN_PLANNING" - }, - "int_gains_flush_heat_loss": true, - "int_gains_num_toilets": 1, - "identifier": "97f727a2-a77c-417b-8d9e-ace784d5bd7b", - "PHIUS2021_cooling_demand": 15.0, - "user_data": {}, - "building_category_type": { - "value": "1-RESIDENTIAL BUILDING" - }, - "int_gains_dhw_marginal_perf_ratio": null, - "display_name": "97f727a2-a77c-417b-8d9e-ace784d5bd7b", - "int_gains_use_school_defaults": false - }, - "identifier": "ae4ab714-315a-4c85-8dc6-b10e3f44423a", - "site": { - "location": { - "site_elevation": 0.0, - "identifier": "ba23b0ef-0b9a-49e4-8054-976fbb40b49e", - "hours_from_UTC": -4, - "user_data": {}, - "latitude": 40.600000000000001, - "longitude": -73.799999999999997, - "climate_zone": 1, - "display_name": "New_York" + ], + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 15.600000000000000, + 17.600000000000001, + 19.600000000000001, + 21.0, + 15.600000000000000 + ] }, - "phpp_library_codes": { - "country_code": "US-United States of America", - "identifier": "6742d615-e4d5-423a-8e11-6e175d249f7d", - "region_code": "New York", - "user_data": {}, - "display_name": "US0055b-New York", - "dataset_name": "US0055b-New York" + { + "times": [ + [ + 0, + 0 + ], + [ + 5, + 0 + ], + [ + 6, + 0 + ], + [ + 7, + 0 + ], + [ + 22, + 0 + ] + ], + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 15.600000000000000, + 17.800000000000001, + 20.0, + 21.0, + 15.600000000000000 + ] }, - "identifier": "d2f6ab15-30d6-416e-b82e-4b52f4afc27e", - "user_data": {}, - "climate": { - "monthly_temps": { - "ground_temps": { - "february": 0.0, - "april": 0.0, - "march": 0.0, - "august": 0.0, - "december": 0.0, - "identifier": "73c5a9ff-c083-4f2b-ab27-c147f1937cfa", - "november": 0.0, - "user_data": {}, - "may": 0.0, - "october": 0.0, - "july": 0.0, - "january": 0.0, - "june": 0.0, - "september": 0.0, - "display_name": "73c5a9ff-c083-4f2b-ab27-c147f1937cfa" - }, - "sky_temps": { - "february": 3.3300000000000001, - "april": 16.460000000000001, - "march": 8.3300000000000001, - "august": 13.210000000000001, - "december": 3.6200000000000001, - "identifier": "9f70a4e5-a544-4cb5-978f-60b1c3d20e7d", - "november": 5.0599999999999996, - "user_data": {}, - "may": 17.920000000000002, - "october": 6.4800000000000004, - "july": 17.699999999999999, - "january": 0.0, - "june": 20.620000000000001, - "september": 9.7799999999999994, - "display_name": "9f70a4e5-a544-4cb5-978f-60b1c3d20e7d" - }, - "dewpoints": { - "february": 2.6699999999999999, - "april": 7.9600000000000000, - "march": 6.6699999999999999, - "august": 4.1399999999999997, - "december": 4.2800000000000002, - "identifier": "d765927a-603c-4743-84ea-a817aeb1bbfe", - "november": 1.6200000000000001, - "user_data": {}, - "may": 5.1299999999999999, - "october": 1.5400000000000000, - "july": 4.9500000000000002, - "january": 0.0, - "june": 6.9500000000000002, - "september": 1.0500000000000000, - "display_name": "d765927a-603c-4743-84ea-a817aeb1bbfe" - }, - "identifier": "18d6f738-06d0-41a6-a66d-3671a155c177", - "user_data": {}, - "air_temps": { - "february": 4.0, - "april": 19.75, - "march": 10.0, - "august": 15.850000000000000, - "december": 4.3399999999999999, - "identifier": "f82ad4f5-8ede-4f9f-ba80-0fe86b05e953", - "november": 6.0700000000000003, - "user_data": {}, - "may": 21.5, - "october": 7.7800000000000002, - "july": 21.230000000000000, - "january": 0.0, - "june": 24.75, - "september": 11.740000000000000, - "display_name": "f82ad4f5-8ede-4f9f-ba80-0fe86b05e953" - }, - "display_name": "18d6f738-06d0-41a6-a66d-3671a155c177" - }, - "station_elevation": 0.0, - "monthly_radiation": { - "west": { - "february": 26.660000000000000, - "april": 131.66000000000000, - "march": 66.659999999999997, - "august": 145.61000000000001, - "december": 0.0, - "identifier": "18c91696-b6da-45e7-8565-c5629f3a2aed", - "november": 42.049999999999997, - "user_data": {}, - "may": 149.97000000000000, - "october": 74.319999999999993, - "july": 200.0, - "january": 0.0, - "june": 165.0, - "september": 104.03000000000000, - "display_name": "18c91696-b6da-45e7-8565-c5629f3a2aed" - }, - "east": { - "february": 26.660000000000000, - "april": 131.66000000000000, - "march": 66.659999999999997, - "august": 145.61000000000001, - "december": 0.0, - "identifier": "4e170567-3ba3-4fe4-af50-91de31e7e2b7", - "november": 42.049999999999997, - "user_data": {}, - "may": 149.97000000000000, - "october": 74.319999999999993, - "july": 200.0, - "january": 0.0, - "june": 165.0, - "september": 104.03000000000000, - "display_name": "4e170567-3ba3-4fe4-af50-91de31e7e2b7" - }, - "identifier": "c6a6a43a-fc02-4e71-86fd-e9bcfd50c0c0", - "north": { - "february": 26.660000000000000, - "april": 131.66000000000000, - "march": 66.659999999999997, - "august": 145.61000000000001, - "december": 0.0, - "identifier": "62a7b5cb-5263-4124-9c32-4239764b0b63", - "november": 42.049999999999997, - "user_data": {}, - "may": 149.97000000000000, - "october": 74.319999999999993, - "july": 200.0, - "january": 0.0, - "june": 165.0, - "september": 104.03000000000000, - "display_name": "62a7b5cb-5263-4124-9c32-4239764b0b63" - }, - "user_data": {}, - "south": { - "february": 0.0, - "april": 0.0, - "march": 0.0, - "august": 0.0, - "december": 0.0, - "identifier": "d517a050-449a-4f3b-9a15-410d30b3c717", - "november": 0.0, - "user_data": {}, - "may": 0.0, - "october": 0.0, - "july": 0.0, - "january": 0.0, - "june": 0.0, - "september": 0.0, - "display_name": "d517a050-449a-4f3b-9a15-410d30b3c717" - }, - "display_name": "c6a6a43a-fc02-4e71-86fd-e9bcfd50c0c0", - "glob": { - "february": 26.660000000000000, - "april": 131.66000000000000, - "march": 66.659999999999997, - "august": 145.61000000000001, - "december": 0.0, - "identifier": "3d7cd9be-a353-4f1f-a5da-f1f1a90e370c", - "november": 42.049999999999997, - "user_data": {}, - "may": 149.97000000000000, - "october": 74.319999999999993, - "july": 200.0, - "january": 0.0, - "june": 165.0, - "september": 104.03000000000000, - "display_name": "3d7cd9be-a353-4f1f-a5da-f1f1a90e370c" - } - }, - "summer_daily_temperature_swing": 10.0, - "average_wind_speed": 4.0, - "identifier": "18790a6a-5cc2-4280-b5ac-d9387f1d26da", - "ground": { - "ground_density": 2000, - "ground_heat_capacity": 1000, - "identifier": "997f98fb-817d-4115-81d4-e3840a0ec26b", - "user_data": {}, - "depth_groundwater": 3, - "flow_rate_groundwater": 0.050000000000000003, - "ground_thermal_conductivity": 2, - "display_name": "997f98fb-817d-4115-81d4-e3840a0ec26b" - }, - "user_data": {}, - "peak_loads": { - "cooling_load_2": { - "dewpoint": null, - "sky_temp": null, - "rad_south": 0.0, - "rad_east": 0.0, - "ground_temp": null, - "identifier": "5e037310-5568-4a02-8b9e-a2dd95de1937", - "user_data": {}, - "rad_west": 0.0, - "rad_global": 0.0, - "rad_north": 0.0, - "display_name": "test_peak_cooling_2", - "temp": 0.0 - }, - "cooling_load_1": { - "dewpoint": null, - "sky_temp": null, - "rad_south": 0.0, - "rad_east": 0.0, - "ground_temp": null, - "identifier": "5c3a6c50-be9a-4af0-aeff-105a81fa1cf9", - "user_data": {}, - "rad_west": 0.0, - "rad_global": 0.0, - "rad_north": 0.0, - "display_name": "test_peak_cooling_1", - "temp": 0.0 - }, - "identifier": "c6201a5d-3a36-485a-a3c0-70583259eaf0", - "user_data": {}, - "heat_load_2": { - "dewpoint": null, - "sky_temp": null, - "rad_south": 0.0, - "rad_east": 0.0, - "ground_temp": null, - "identifier": "dd67fd29-ba00-42b5-badd-3a1a55cb238d", - "user_data": {}, - "rad_west": 0.0, - "rad_global": 0.0, - "rad_north": 0.0, - "display_name": "test_peak_heat_2", - "temp": 0.0 - }, - "heat_load_1": { - "dewpoint": null, - "sky_temp": null, - "rad_south": 0.0, - "rad_east": 0.0, - "ground_temp": null, - "identifier": "a4725870-3980-4cf6-9619-bc3da720f93f", - "user_data": {}, - "rad_west": 0.0, - "rad_global": 0.0, - "rad_north": 0.0, - "display_name": "test_peak_heat_1", - "temp": 0.0 - }, - "display_name": "c6201a5d-3a36-485a-a3c0-70583259eaf0" - }, - "display_name": "My_Test_Climate" - }, - "display_name": "_unnamed_" - }, - "mech_room_temp": 20.0, - "user_data": {}, - "source_energy_factors": { - "factors": [ - { - "value": 0.20000000000000001, - "fuel_name": "WOOD", - "units": "kWh/kWh" - }, - { - "value": 0.69999999999999996, - "fuel_name": "GAS_CGS_70_CHP", - "units": "kWh/kWh" - }, - { - "value": 1.1000000000000001, - "fuel_name": "GAS_CGS_35_CHP", - "units": "kWh/kWh" - }, - { - "value": 1.5, - "fuel_name": "HARD_COAL_CGS_0_CHP", - "units": "kWh/kWh" - }, - { - "value": 1.5, - "fuel_name": "OIL_CGS_0_CHP", - "units": "kWh/kWh" - }, - { - "value": 1.1000000000000001, - "fuel_name": "HARD_COAL", - "units": "kWh/kWh" - }, - { - "value": 1.5, - "fuel_name": "GAS_CGS_0_CHP", - "units": "kWh/kWh" - }, - { - "value": 1.1000000000000001, - "fuel_name": "HARD_COAL_CGS_35_CHP", - "units": "kWh/kWh" - }, - { - "value": 1.1000000000000001, - "fuel_name": "LPG", - "units": "kWh/kWh" - }, - { - "value": 0.80000000000000004, - "fuel_name": "OIL_CGS_70_CHP", - "units": "kWh/kWh" - }, - { - "value": 1.1000000000000001, - "fuel_name": "NATURAL_GAS", - "units": "kWh/kWh" - }, - { - "value": 1.7000000000000000, - "fuel_name": "ELECTRICITY_PV", - "units": "kWh/kWh" - }, - { - "value": 1.1000000000000001, - "fuel_name": "OIL_CGS_35_CHP", - "units": "kWh/kWh" - }, - { - "value": 1.8000000000000000, - "fuel_name": "ELECTRICITY_MIX", - "units": "kWh/kWh" - }, - { - "value": 0.80000000000000004, - "fuel_name": "HARD_COAL_CGS_70_CHP", - "units": "kWh/kWh" - }, - { - "value": 1.1000000000000001, - "fuel_name": "OIL", - "units": "kWh/kWh" - } - ] - }, - "name": "_unnamed_bldg_segment_", - "co2e_factors": { - "factors": [ - { - "value": 53.428899999999999, - "fuel_name": "WOOD", - "units": "g/kWh" - }, - { - "value": -70.010199999999998, - "fuel_name": "GAS_CGS_70_CHP", - "units": "g/kWh" - }, - { - "value": 129.98980000000000, - "fuel_name": "GAS_CGS_35_CHP", - "units": "g/kWh" - }, - { - "value": 409.99660000000000, - "fuel_name": "HARD_COAL_CGS_0_CHP", - "units": "g/kWh" - }, - { - "value": 409.99660000000000, - "fuel_name": "OIL_CGS_0_CHP", - "units": "g/kWh" - }, - { - "value": 439.98640000000000, - "fuel_name": "HARD_COAL", - "units": "g/kWh" - }, - { - "value": 319.99320000000000, - "fuel_name": "GAS_CGS_0_CHP", - "units": "g/kWh" - }, - { - "value": 319.99320000000000, - "fuel_name": "HARD_COAL_CGS_35_CHP", - "units": "g/kWh" - }, - { - "value": 270.01020000000000, - "fuel_name": "LPG", - "units": "g/kWh" - }, - { - "value": 100.0, - "fuel_name": "OIL_CGS_70_CHP", - "units": "g/kWh" - }, - { - "value": 250.01710000000000, - "fuel_name": "NATURAL_GAS", - "units": "g/kWh" - }, - { - "value": 250.01710000000000, - "fuel_name": "ELECTRICITY_PV", - "units": "g/kWh" - }, - { - "value": 250.01710000000000, - "fuel_name": "OIL_CGS_35_CHP", - "units": "g/kWh" - }, - { - "value": 680.00680000000000, - "fuel_name": "ELECTRICITY_MIX", - "units": "g/kWh" + { + "times": [ + [ + 0, + 0 + ], + [ + 5, + 0 + ], + [ + 6, + 0 + ], + [ + 7, + 0 + ], + [ + 17, + 0 + ] + ], + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 15.600000000000000, + 17.800000000000001, + 20.0, + 21.0, + 15.600000000000000 + ] + } + ], + "holiday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", + "winter_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", + "schedule_type_limit": "Temperature", + "identifier": "Generic Office Heating", + "summer_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", + "schedule_rules": [ + { + "apply_tuesday": true, + "apply_friday": true, + "apply_sunday": false, + "apply_saturday": false, + "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", + "apply_monday": true, + "end_date": [ + 12, + 31 + ], + "start_date": [ + 1, + 1 + ], + "apply_thursday": true, + "apply_wednesday": true, + "type": "ScheduleRuleAbridged" + }, + { + "apply_tuesday": false, + "apply_friday": false, + "apply_sunday": false, + "apply_saturday": true, + "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", + "apply_monday": false, + "end_date": [ + 12, + 31 + ], + "start_date": [ + 1, + 1 + ], + "apply_thursday": false, + "apply_wednesday": false, + "type": "ScheduleRuleAbridged" + } + ], + "type": "ScheduleRulesetAbridged", + "properties": { + "ph": { + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] }, - { - "value": 239.98640000000000, - "fuel_name": "HARD_COAL_CGS_70_CHP", - "units": "g/kWh" + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997 + }, + "type": "ScheduleRulesetProperties", + "revive": { + "type": "ScheduleRulesetReviveProperties", + "id_num": 0 + } + } + }, + { + "default_day_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", + "day_schedules": [ + { + "times": [ + [ + 0, + 0 + ] + ], + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 26.699999999999999 + ] + }, + { + "times": [ + [ + 0, + 0 + ], + [ + 5, + 0 + ], + [ + 6, + 0 + ], + [ + 7, + 0 + ], + [ + 22, + 0 + ] + ], + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 26.699999999999999, + 25.699999999999999, + 25.0, + 24.0, + 26.699999999999999 + ] + }, + { + "times": [ + [ + 0, + 0 + ] + ], + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 26.699999999999999 + ] + }, + { + "times": [ + [ + 0, + 0 + ], + [ + 5, + 0 + ], + [ + 6, + 0 + ], + [ + 7, + 0 + ], + [ + 22, + 0 + ] + ], + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 26.699999999999999, + 25.600000000000001, + 25.0, + 24.0, + 26.699999999999999 + ] + }, + { + "times": [ + [ + 0, + 0 + ], + [ + 5, + 0 + ], + [ + 6, + 0 + ], + [ + 7, + 0 + ], + [ + 17, + 0 + ] + ], + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 26.699999999999999, + 25.699999999999999, + 25.0, + 24.0, + 26.699999999999999 + ] + } + ], + "holiday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", + "winter_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", + "schedule_type_limit": "Temperature", + "identifier": "Generic Office Cooling", + "summer_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", + "schedule_rules": [ + { + "apply_tuesday": true, + "apply_friday": true, + "apply_sunday": false, + "apply_saturday": false, + "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", + "apply_monday": true, + "end_date": [ + 12, + 31 + ], + "start_date": [ + 1, + 1 + ], + "apply_thursday": true, + "apply_wednesday": true, + "type": "ScheduleRuleAbridged" + }, + { + "apply_tuesday": false, + "apply_friday": false, + "apply_sunday": false, + "apply_saturday": true, + "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", + "apply_monday": false, + "end_date": [ + 12, + 31 + ], + "start_date": [ + 1, + 1 + ], + "apply_thursday": false, + "apply_wednesday": false, + "type": "ScheduleRuleAbridged" + } + ], + "type": "ScheduleRulesetAbridged", + "properties": { + "ph": { + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] }, - { - "value": 309.99660000000000, - "fuel_name": "OIL", - "units": "g/kWh" - } - ] - }, - "display_name": "_unnamed_bldg_segment_", - "num_floor_levels": 1 - } - ] - }, - "energy": { - "program_types": [ + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997 + }, + "type": "ScheduleRulesetProperties", + "revive": { + "type": "ScheduleRulesetReviveProperties", + "id_num": 0 + } + } + }, { - "lighting": { - "schedule": "Generic Office Lighting", - "return_air_fraction": 0.0, - "properties": { - "ph": { - "id_num": 0, - "type": "LightingPhProperties", - "target_lux_height": 0.80000000000000004, - "target_lux": 300 - }, - "type": "LightingProperties", - "revive": { - "cost": 0.0, - "type": "LightingReviveProperties", - "labor_fraction": 0.40000000000000002, - "id_num": 0, - "lifetime_years": 25 - } + "default_day_schedule": "OfficeMedium BLDG_OCC_SCH_Default", + "day_schedules": [ + { + "times": [ + [ + 0, + 0 + ], + [ + 6, + 0 + ], + [ + 18, + 0 + ] + ], + "identifier": "OfficeMedium BLDG_OCC_SCH_Default", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 0.0, + 0.050000000000000003, + 0.0 + ] }, - "type": "LightingAbridged", - "radiant_fraction": 0.69999999999999996, - "identifier": "Generic Office Lighting", - "watts_per_area": 10.550000000000001, - "visible_fraction": 0.20000000000000001 - }, - "electric_equipment": { - "schedule": "Generic Office Equipment", - "properties": { - "ph": { - "equipment_collection": { - "equipment_set": {} - }, - "type": "ElectricEquipmentPhProperties" - }, - "type": "ElectricEquipmentProperties", - "revive": { - "id_num": 0, - "type": "ElectricEquipmentReviveProperties" - } + { + "times": [ + [ + 0, + 0 + ], + [ + 6, + 0 + ], + [ + 22, + 0 + ] + ], + "identifier": "OfficeMedium BLDG_OCC_SCH_SmrDsn", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 0.0, + 1.0, + 0.050000000000000003 + ] }, - "type": "ElectricEquipmentAbridged", - "radiant_fraction": 0.5, - "identifier": "Generic Office Equipment", - "lost_fraction": 0.0, - "watts_per_area": 10.330000000000000, - "latent_fraction": 0.0 - }, - "type": "ProgramTypeAbridged", - "infiltration": { - "type": "InfiltrationAbridged", - "identifier": "Generic Office Infiltration", - "flow_per_exterior_area": 0.00022660000000000001, - "schedule": "Generic Office Infiltration" - }, - "setpoint": { - "type": "SetpointAbridged", - "identifier": "Generic Office Setpoints", - "heating_schedule": "Generic Office Heating", - "cooling_schedule": "Generic Office Cooling" - }, - "ventilation": { - "flow_per_area": 0.00030499999999999999, - "type": "VentilationAbridged", - "identifier": "Generic Office Ventilation", - "flow_per_person": 0.0023600000000000001 - }, - "identifier": "Generic Office Program", - "people": { - "occupancy_schedule": "Generic Office Occupancy", - "properties": { - "ph": { - "number_people": 0.0, - "dwellings": { - "identifier": "dfea3746-3079-4e46-b42d-21e135a8ba1e", - "num_dwellings": 0 - }, - "type": "PeoplePhProperties", - "number_bedrooms": 0, - "id_num": 0 - }, - "type": "PeopleProperties", - "revive": { - "id_num": 0, - "type": "PeopleReviveProperties" - } + { + "times": [ + [ + 0, + 0 + ] + ], + "identifier": "OfficeMedium BLDG_OCC_SCH_WntrDsn", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 0.0 + ] + }, + { + "times": [ + [ + 0, + 0 + ], + [ + 6, + 0 + ], + [ + 7, + 0 + ], + [ + 8, + 0 + ], + [ + 12, + 0 + ], + [ + 13, + 0 + ], + [ + 17, + 0 + ], + [ + 18, + 0 + ], + [ + 22, + 0 + ] + ], + "identifier": "OfficeMedium BLDG_OCC_SCH_Wkdy", + "type": "ScheduleDay", + "interpolate": false, + "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 + ] + ], + "identifier": "OfficeMedium BLDG_OCC_SCH_Sat", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 0.0, + 0.10000000000000001, + 0.29999999999999999, + 0.10000000000000001, + 0.050000000000000003, + 0.0 + ] + } + ], + "holiday_schedule": "OfficeMedium BLDG_OCC_SCH_Default", + "winter_designday_schedule": "OfficeMedium BLDG_OCC_SCH_WntrDsn", + "schedule_type_limit": "Fractional", + "identifier": "Generic Office Occupancy", + "summer_designday_schedule": "OfficeMedium BLDG_OCC_SCH_SmrDsn", + "schedule_rules": [ + { + "apply_tuesday": true, + "apply_friday": true, + "apply_sunday": false, + "apply_saturday": false, + "schedule_day": "OfficeMedium BLDG_OCC_SCH_Wkdy", + "apply_monday": true, + "end_date": [ + 12, + 31 + ], + "start_date": [ + 1, + 1 + ], + "apply_thursday": true, + "apply_wednesday": true, + "type": "ScheduleRuleAbridged" }, - "type": "PeopleAbridged", - "radiant_fraction": 0.29999999999999999, - "people_per_area": 0.056500000000000002, - "identifier": "Generic Office People", - "activity_schedule": "Seated Adult Activity", - "latent_fraction": { - "type": "Autocalculate" + { + "apply_tuesday": false, + "apply_friday": false, + "apply_sunday": false, + "apply_saturday": true, + "schedule_day": "OfficeMedium BLDG_OCC_SCH_Sat", + "apply_monday": false, + "end_date": [ + 12, + 31 + ], + "start_date": [ + 1, + 1 + ], + "apply_thursday": false, + "apply_wednesday": false, + "type": "ScheduleRuleAbridged" } - } - } - ], - "type": "ModelEnergyProperties", - "hvacs": [ - { - "heating_air_temperature": 50.0, - "sensible_heat_recovery": 0.0, - "economizer_type": "DifferentialDryBulb", + ], + "type": "ScheduleRulesetAbridged", "properties": { - "revive": { - "equipment_collection": { - "type": "PhiusReviveHVACEquipmentCollection", - "equipment": [] + "ph": { + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] }, - "type": "IdealAirSystemReviveProperties" + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997 }, - "type": "IdealAirSystemProperties" - }, - "type": "IdealAirSystemAbridged", - "latent_heat_recovery": 0.0, - "demand_controlled_ventilation": false, - "cooling_air_temperature": 13.0, - "identifier": "Room_3_654deabd Ideal Loads Air System", - "heating_limit": { - "type": "Autosize" - }, - "cooling_limit": { - "type": "Autosize" - } - }, - { - "heating_air_temperature": 50.0, - "sensible_heat_recovery": 0.0, - "economizer_type": "DifferentialDryBulb", - "properties": { + "type": "ScheduleRulesetProperties", "revive": { - "equipment_collection": { - "type": "PhiusReviveHVACEquipmentCollection", - "equipment": [] - }, - "type": "IdealAirSystemReviveProperties" - }, - "type": "IdealAirSystemProperties" - }, - "type": "IdealAirSystemAbridged", - "latent_heat_recovery": 0.0, - "demand_controlled_ventilation": false, - "cooling_air_temperature": 13.0, - "identifier": "Room_4_3d192209 Ideal Loads Air System", - "heating_limit": { - "type": "Autosize" - }, - "cooling_limit": { - "type": "Autosize" + "type": "ScheduleRulesetReviveProperties", + "id_num": 0 + } } - } - ], - "constructions": [ + }, { - "window_construction": { - "materials": [ - "PhWindowConstruction_6614e303" - ], - "type": "WindowConstructionAbridged", - "identifier": "PhWindowConstruction_6614e303", - "properties": { - "ph": { - "id_num": 0, - "type": "WindowConstructionPhProperties", - "ph_frame": { - "bottom": { - "width": 0.10000000000000001, - "chi_value": 0.0, - "psi_glazing": 0.040000000000000001, - "id_num": 0, - "identifier": "PhWindowFrameElement_4531596c", - "user_data": {}, - "u_factor": 1.0, - "psi_install": 0.040000000000000001, - "display_name": "PhWindowFrameElement_4531596c" - }, - "top": { - "width": 0.10000000000000001, - "chi_value": 0.0, - "psi_glazing": 0.040000000000000001, - "id_num": 0, - "identifier": "PhWindowFrameElement_4531596c", - "user_data": {}, - "u_factor": 1.0, - "psi_install": 0.040000000000000001, - "display_name": "PhWindowFrameElement_4531596c" - }, - "id_num": 0, - "left": { - "width": 0.10000000000000001, - "chi_value": 0.0, - "psi_glazing": 0.040000000000000001, - "id_num": 0, - "identifier": "PhWindowFrameElement_4531596c", - "user_data": {}, - "u_factor": 1.0, - "psi_install": 0.040000000000000001, - "display_name": "PhWindowFrameElement_4531596c" - }, - "identifier": "PhWindowFrame_3d2118cc", - "user_data": {}, - "right": { - "width": 0.10000000000000001, - "chi_value": 0.0, - "psi_glazing": 0.040000000000000001, - "id_num": 0, - "identifier": "PhWindowFrameElement_4531596c", - "user_data": {}, - "u_factor": 1.0, - "psi_install": 0.040000000000000001, - "display_name": "PhWindowFrameElement_4531596c" - }, - "display_name": "PhWindowFrame_3d2118cc" - }, - "ph_glazing": { - "id_num": 0, - "identifier": "PhWindowGlazing_d80b1989", - "user_data": {}, - "u_factor": 0.80000000000000004, - "display_name": "PhWindowGlazing_d80b1989", - "g_value": 0.40000000000000002 - } - }, - "type": "WindowConstructionProperties", - "revive": { - "id_num": 0, - "type": "WindowConstructionReviveProperties" - } + "default_day_schedule": "Seated Adult Activity_Day Schedule", + "day_schedules": [ + { + "times": [ + [ + 0, + 0 + ] + ], + "identifier": "Seated Adult Activity_Day Schedule", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 120.0 + ] } - }, + ], + "schedule_type_limit": "Activity Level", + "identifier": "Seated Adult Activity", + "type": "ScheduleRulesetAbridged", "properties": { "ph": { + "operating_days_wk": 7.0, "id_num": 0, - "type": "WindowConstructionShadePhProperties" + "operating_periods": { + "collection": [] + }, + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997 }, - "type": "WindowConstructionShadeProperties", + "type": "ScheduleRulesetProperties", "revive": { - "id_num": 0, - "type": "WindowConstructionShadeReviveProperties" + "type": "ScheduleRulesetReviveProperties", + "id_num": 0 } - }, - "control_type": "AlwaysOn", - "type": "WindowConstructionShadeAbridged", - "shade_location": "Interior", - "identifier": "PhWindowConstruction_6614e303", - "shade_material": "test-shade" + } }, { - "materials": [ - "PhWindowConstruction_574f4808" - ], - "type": "WindowConstructionAbridged", - "identifier": "PhWindowConstruction_574f4808", - "properties": { - "ph": { - "id_num": 0, - "type": "WindowConstructionPhProperties", - "ph_frame": { - "bottom": { - "width": 0.10000000000000001, - "chi_value": 0.0, - "psi_glazing": 0.040000000000000001, - "id_num": 0, - "identifier": "PhWindowFrameElement_5965bc35", - "user_data": {}, - "u_factor": 0.123, - "psi_install": 0.040000000000000001, - "display_name": "PhWindowFrameElement_5965bc35" - }, - "top": { - "width": 0.10000000000000001, - "chi_value": 0.0, - "psi_glazing": 0.040000000000000001, - "id_num": 0, - "identifier": "PhWindowFrameElement_5965bc35", - "user_data": {}, - "u_factor": 0.123, - "psi_install": 0.040000000000000001, - "display_name": "PhWindowFrameElement_5965bc35" - }, - "id_num": 0, - "left": { - "width": 0.10000000000000001, - "chi_value": 0.0, - "psi_glazing": 0.040000000000000001, - "id_num": 0, - "identifier": "PhWindowFrameElement_5965bc35", - "user_data": {}, - "u_factor": 0.123, - "psi_install": 0.040000000000000001, - "display_name": "PhWindowFrameElement_5965bc35" - }, - "identifier": "PhWindowFrame_afa68715", - "user_data": {}, - "right": { - "width": 0.10000000000000001, - "chi_value": 0.0, - "psi_glazing": 0.040000000000000001, - "id_num": 0, - "identifier": "PhWindowFrameElement_5965bc35", - "user_data": {}, - "u_factor": 0.123, - "psi_install": 0.040000000000000001, - "display_name": "PhWindowFrameElement_5965bc35" - }, - "display_name": "PhWindowFrame_afa68715" - }, - "ph_glazing": { - "id_num": 0, - "identifier": "PhWindowGlazing_9f4f39ff", - "user_data": {}, - "u_factor": 0.80000000000000004, - "display_name": "PhWindowGlazing_9f4f39ff", - "g_value": 0.40000000000000002 - } + "default_day_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", + "day_schedules": [ + { + "times": [ + [ + 0, + 0 + ], + [ + 6, + 0 + ], + [ + 18, + 0 + ] + ], + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 0.2307553806, + 0.28810717499999999, + 0.2307553806 + ] }, - "type": "WindowConstructionProperties", - "revive": { - "id_num": 0, - "type": "WindowConstructionReviveProperties" - } - } - } - ], - "shws": [], - "schedules": [ - { - "summer_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", - "properties": { - "ph": { - "operating_weeks_year": 52.142899999999997, - "type": "ScheduleRulesetPhProperties", - "operating_days_wk": 7.0, - "id_num": 0, - "operating_periods": { - "collection": [] - } + { + "times": [ + [ + 0, + 0 + ] + ], + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 1.0 + ] }, - "type": "ScheduleRulesetProperties", - "revive": { - "id_num": 0, - "type": "ScheduleRulesetReviveProperties" + { + "times": [ + [ + 0, + 0 + ] + ], + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 0.0 + ] + }, + { + "times": [ + [ + 0, + 0 + ], + [ + 6, + 0 + ], + [ + 8, + 0 + ], + [ + 12, + 0 + ], + [ + 17, + 0 + ], + [ + 19, + 0 + ] + ], + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", + "type": "ScheduleDay", + "interpolate": false, + "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 + ] + ], + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 0.30767384079999999, + 0.38123479599999999, + 0.85777829100000003, + 0.76246959199999997, + 0.85777829100000003, + 0.47654349499999998, + 0.38123479599999999 + ] } - }, + ], + "holiday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", + "winter_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", "schedule_type_limit": "Fractional", - "type": "ScheduleRulesetAbridged", - "default_day_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", "identifier": "Generic Office Equipment", + "summer_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", "schedule_rules": [ { - "apply_monday": true, - "start_date": [ - 1, - 1 - ], - "type": "ScheduleRuleAbridged", - "apply_wednesday": true, "apply_tuesday": true, "apply_friday": true, - "apply_thursday": true, "apply_sunday": false, + "apply_saturday": false, + "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", + "apply_monday": true, "end_date": [ 12, 31 ], - "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", - "apply_saturday": false - }, - { - "apply_monday": false, "start_date": [ 1, 1 ], - "type": "ScheduleRuleAbridged", - "apply_wednesday": false, + "apply_thursday": true, + "apply_wednesday": true, + "type": "ScheduleRuleAbridged" + }, + { "apply_tuesday": false, "apply_friday": false, - "apply_thursday": false, "apply_sunday": false, + "apply_saturday": true, + "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", + "apply_monday": false, "end_date": [ 12, 31 ], - "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", - "apply_saturday": true + "start_date": [ + 1, + 1 + ], + "apply_thursday": false, + "apply_wednesday": false, + "type": "ScheduleRuleAbridged" } ], - "holiday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", - "winter_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", + "type": "ScheduleRulesetAbridged", + "properties": { + "ph": { + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] + }, + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997 + }, + "type": "ScheduleRulesetProperties", + "revive": { + "type": "ScheduleRulesetReviveProperties", + "id_num": 0 + } + } + }, + { + "default_day_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", "day_schedules": [ { - "values": [ - 0.2307553806, - 0.28810717499999999, - 0.2307553806 - ], - "type": "ScheduleDay", "times": [ [ 0, @@ -1565,62 +1441,102 @@ 0 ] ], - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", - "interpolate": false + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 0.050000000000000003, + 0.04311628, + 0.050000000000000003 + ] }, { - "values": [ - 1.0 - ], - "type": "ScheduleDay", "times": [ [ 0, 0 ] ], - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", - "interpolate": false + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 1.0 + ] }, { - "values": [ - 0.0 - ], - "type": "ScheduleDay", "times": [ [ 0, 0 ] ], - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", - "interpolate": false + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 0.0 + ] }, { - "values": [ - 0.2307553806, - 0.38123479599999999, - 0.47654349499999998, - 0.33358044650000002, - 0.28592609699999999, - 0.2307553806 + "times": [ + [ + 0, + 0 + ], + [ + 6, + 0 + ], + [ + 8, + 0 + ], + [ + 12, + 0 + ], + [ + 17, + 0 + ], + [ + 19, + 0 + ] ], + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", "type": "ScheduleDay", + "interpolate": false, + "values": [ + 0.050000000000000003, + 0.08623256, + 0.25869767999999999, + 0.12934883999999999, + 0.04311628, + 0.050000000000000003 + ] + }, + { "times": [ [ 0, 0 ], + [ + 5, + 0 + ], [ 6, 0 ], [ - 8, + 7, 0 ], [ - 12, + 8, 0 ], [ @@ -1628,2370 +1544,3260 @@ 0 ], [ - 19, + 18, + 0 + ], + [ + 20, + 0 + ], + [ + 22, + 0 + ], + [ + 23, 0 ] ], - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", - "interpolate": false + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", + "type": "ScheduleDay", + "interpolate": false, + "values": [ + 0.050000000000000003, + 0.10000000000000001, + 0.08623256, + 0.25869767999999999, + 0.77609304000000001, + 0.43116280000000001, + 0.25869767999999999, + 0.17246512, + 0.08623256, + 0.04311628 + ] + } + ], + "holiday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", + "winter_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", + "schedule_type_limit": "Fractional", + "identifier": "Generic Office Lighting", + "summer_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", + "schedule_rules": [ + { + "apply_tuesday": true, + "apply_friday": true, + "apply_sunday": false, + "apply_saturday": false, + "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", + "apply_monday": true, + "end_date": [ + 12, + 31 + ], + "start_date": [ + 1, + 1 + ], + "apply_thursday": true, + "apply_wednesday": true, + "type": "ScheduleRuleAbridged" + }, + { + "apply_tuesday": false, + "apply_friday": false, + "apply_sunday": false, + "apply_saturday": true, + "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", + "apply_monday": false, + "end_date": [ + 12, + 31 + ], + "start_date": [ + 1, + 1 + ], + "apply_thursday": false, + "apply_wednesday": false, + "type": "ScheduleRuleAbridged" + } + ], + "type": "ScheduleRulesetAbridged", + "properties": { + "ph": { + "operating_days_wk": 7.0, + "id_num": 0, + "operating_periods": { + "collection": [] + }, + "type": "ScheduleRulesetPhProperties", + "operating_weeks_year": 52.142899999999997 + }, + "type": "ScheduleRulesetProperties", + "revive": { + "type": "ScheduleRulesetReviveProperties", + "id_num": 0 + } + } + } + ], + "construction_sets": [ + { + "wall_set": { + "exterior_construction": "Ext_Wall", + "type": "WallConstructionSetAbridged", + "ground_construction": null, + "interior_construction": null + }, + "roof_ceiling_set": { + "exterior_construction": "Ext_Roof", + "type": "RoofCeilingConstructionSetAbridged", + "ground_construction": null, + "interior_construction": null + }, + "door_set": { + "overhead_construction": null, + "exterior_glass_construction": "PhWindowConstruction_5d55e451", + "exterior_construction": null, + "type": "DoorConstructionSetAbridged", + "interior_construction": null, + "interior_glass_construction": null + }, + "floor_set": { + "exterior_construction": null, + "type": "FloorConstructionSetAbridged", + "ground_construction": null, + "interior_construction": null + }, + "identifier": "ConstructionSet_a1814837", + "shade_construction": null, + "air_boundary_construction": null, + "type": "ConstructionSetAbridged", + "aperture_set": { + "skylight_construction": "PhWindowConstruction_5d55e451", + "operable_construction": "PhWindowConstruction_5d55e451", + "type": "ApertureConstructionSetAbridged", + "interior_construction": null, + "window_construction": "PhWindowConstruction_5d55e451" + } + }, + { + "wall_set": { + "exterior_construction": null, + "type": "WallConstructionSetAbridged", + "ground_construction": null, + "interior_construction": null + }, + "roof_ceiling_set": { + "exterior_construction": null, + "type": "RoofCeilingConstructionSetAbridged", + "ground_construction": null, + "interior_construction": null + }, + "door_set": { + "overhead_construction": null, + "exterior_glass_construction": "PhWindowConstruction_94bc7a40", + "exterior_construction": null, + "type": "DoorConstructionSetAbridged", + "interior_construction": null, + "interior_glass_construction": null + }, + "floor_set": { + "exterior_construction": null, + "type": "FloorConstructionSetAbridged", + "ground_construction": null, + "interior_construction": null + }, + "identifier": "ConstructionSet_ca1fd052", + "shade_construction": null, + "air_boundary_construction": null, + "type": "ConstructionSetAbridged", + "aperture_set": { + "skylight_construction": "PhWindowConstruction_94bc7a40", + "operable_construction": "PhWindowConstruction_94bc7a40", + "type": "ApertureConstructionSetAbridged", + "interior_construction": null, + "window_construction": "PhWindowConstruction_94bc7a40" + } + } + ], + "global_construction_set": { + "wall_set": { + "exterior_construction": "Generic Exterior Wall", + "type": "WallConstructionSetAbridged", + "ground_construction": "Generic Underground Wall", + "interior_construction": "Generic Interior Wall" + }, + "roof_ceiling_set": { + "exterior_construction": "Generic Roof", + "type": "RoofCeilingConstructionSetAbridged", + "ground_construction": "Generic Underground Roof", + "interior_construction": "Generic Interior Ceiling" + }, + "context_construction": "Generic Context", + "constructions": [ + { + "identifier": "Generic Context", + "is_specular": false, + "solar_reflectance": 0.20000000000000001, + "type": "ShadeConstruction", + "properties": { + "type": "ShadeConstructionProperties", + "revive": { + "type": "ShadeConstructionReviveProperties", + "id_num": 0 + } + }, + "visible_reflectance": 0.20000000000000001 + }, + { + "properties": { + "ph": { + "type": "OpaqueConstructionPhProperties", + "id_num": 0 + }, + "type": "OpaqueConstructionProperties", + "revive": { + "type": "OpaqueConstructionReviveProperties", + "id_num": 0 + } + }, + "identifier": "Generic Roof", + "type": "OpaqueConstructionAbridged", + "materials": [ + "Generic Roof Membrane", + "Generic 50mm Insulation", + "Generic LW Concrete", + "Generic Ceiling Air Gap", + "Generic Acoustic Tile" + ] + }, + { + "properties": { + "ph": { + "type": "OpaqueConstructionPhProperties", + "id_num": 0 + }, + "type": "OpaqueConstructionProperties", + "revive": { + "type": "OpaqueConstructionReviveProperties", + "id_num": 0 + } + }, + "identifier": "Generic Interior Ceiling", + "type": "OpaqueConstructionAbridged", + "materials": [ + "Generic LW Concrete", + "Generic Ceiling Air Gap", + "Generic Acoustic Tile" + ] + }, + { + "properties": { + "ph": { + "type": "WindowConstructionPhProperties", + "id_num": 0 + }, + "type": "WindowConstructionProperties", + "revive": { + "type": "WindowConstructionReviveProperties", + "id_num": 0 + } + }, + "identifier": "Generic Double Pane", + "type": "WindowConstructionAbridged", + "materials": [ + "Generic Low-e Glass", + "Generic Window Air Gap", + "Generic Clear Glass" + ] + }, + { + "properties": { + "ph": { + "type": "OpaqueConstructionPhProperties", + "id_num": 0 + }, + "type": "OpaqueConstructionProperties", + "revive": { + "type": "OpaqueConstructionReviveProperties", + "id_num": 0 + } + }, + "identifier": "Generic Interior Floor", + "type": "OpaqueConstructionAbridged", + "materials": [ + "Generic Acoustic Tile", + "Generic Ceiling Air Gap", + "Generic LW Concrete" + ] + }, + { + "properties": { + "ph": { + "type": "OpaqueConstructionPhProperties", + "id_num": 0 + }, + "type": "OpaqueConstructionProperties", + "revive": { + "type": "OpaqueConstructionReviveProperties", + "id_num": 0 + } }, - { - "values": [ - 0.30767384079999999, - 0.38123479599999999, - 0.85777829100000003, - 0.76246959199999997, - 0.85777829100000003, - 0.47654349499999998, - 0.38123479599999999 - ], - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 6, - 0 - ], - [ - 8, - 0 - ], - [ - 12, - 0 - ], - [ - 13, - 0 - ], - [ - 17, - 0 - ], - [ - 18, - 0 - ] - ], - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", - "interpolate": false - } - ] - }, - { - "properties": { - "ph": { - "operating_weeks_year": 52.142899999999997, - "type": "ScheduleRulesetPhProperties", - "operating_days_wk": 7.0, - "id_num": 0, - "operating_periods": { - "collection": [] + "identifier": "Generic Underground Wall", + "type": "OpaqueConstructionAbridged", + "materials": [ + "Generic 50mm Insulation", + "Generic HW Concrete", + "Generic Wall Air Gap", + "Generic Gypsum Board" + ] + }, + { + "properties": { + "ph": { + "type": "WindowConstructionPhProperties", + "id_num": 0 + }, + "type": "WindowConstructionProperties", + "revive": { + "type": "WindowConstructionReviveProperties", + "id_num": 0 } }, - "type": "ScheduleRulesetProperties", - "revive": { - "id_num": 0, - "type": "ScheduleRulesetReviveProperties" - } + "identifier": "Generic Single Pane", + "type": "WindowConstructionAbridged", + "materials": [ + "Generic Clear Glass" + ] }, - "schedule_type_limit": "Activity Level", - "type": "ScheduleRulesetAbridged", - "default_day_schedule": "Seated Adult Activity_Day Schedule", - "identifier": "Seated Adult Activity", - "day_schedules": [ - { - "values": [ - 120.0 - ], - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ] - ], - "identifier": "Seated Adult Activity_Day Schedule", - "interpolate": false - } - ] - }, - { - "summer_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", - "properties": { - "ph": { - "operating_weeks_year": 52.142899999999997, - "type": "ScheduleRulesetPhProperties", - "operating_days_wk": 7.0, - "id_num": 0, - "operating_periods": { - "collection": [] + { + "properties": { + "ph": { + "type": "OpaqueConstructionPhProperties", + "id_num": 0 + }, + "type": "OpaqueConstructionProperties", + "revive": { + "type": "OpaqueConstructionReviveProperties", + "id_num": 0 } }, - "type": "ScheduleRulesetProperties", - "revive": { - "id_num": 0, - "type": "ScheduleRulesetReviveProperties" - } + "identifier": "Generic Interior Door", + "type": "OpaqueConstructionAbridged", + "materials": [ + "Generic 25mm Wood" + ] }, - "schedule_type_limit": "Fractional", - "type": "ScheduleRulesetAbridged", - "default_day_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", - "identifier": "Generic Office Lighting", - "schedule_rules": [ - { - "apply_monday": true, - "start_date": [ - 1, - 1 - ], - "type": "ScheduleRuleAbridged", - "apply_wednesday": true, - "apply_tuesday": true, - "apply_friday": true, - "apply_thursday": true, - "apply_sunday": false, - "end_date": [ - 12, - 31 - ], - "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", - "apply_saturday": false + { + "properties": { + "ph": { + "type": "OpaqueConstructionPhProperties", + "id_num": 0 + }, + "type": "OpaqueConstructionProperties", + "revive": { + "type": "OpaqueConstructionReviveProperties", + "id_num": 0 + } }, - { - "apply_monday": false, - "start_date": [ - 1, - 1 - ], - "type": "ScheduleRuleAbridged", - "apply_wednesday": false, - "apply_tuesday": false, - "apply_friday": false, - "apply_thursday": false, - "apply_sunday": false, - "end_date": [ - 12, - 31 - ], - "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", - "apply_saturday": true - } - ], - "holiday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", - "winter_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", - "day_schedules": [ - { - "values": [ - 0.050000000000000003, - 0.04311628, - 0.050000000000000003 - ], - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 6, - 0 - ], - [ - 18, - 0 - ] - ], - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", - "interpolate": false + "identifier": "Generic Ground Slab", + "type": "OpaqueConstructionAbridged", + "materials": [ + "Generic 50mm Insulation", + "Generic HW Concrete" + ] + }, + { + "identifier": "Generic Shade", + "is_specular": false, + "solar_reflectance": 0.34999999999999998, + "type": "ShadeConstruction", + "properties": { + "type": "ShadeConstructionProperties", + "revive": { + "type": "ShadeConstructionReviveProperties", + "id_num": 0 + } + }, + "visible_reflectance": 0.34999999999999998 + }, + { + "air_mixing_per_area": 0.10000000000000001, + "identifier": "Generic Air Boundary", + "properties": { + "ph": { + "type": "AirBoundaryConstructionPhProperties", + "id_num": 0 + }, + "type": "AirBoundaryConstructionProperties" + }, + "type": "AirBoundaryConstructionAbridged", + "air_mixing_schedule": "Always On" + }, + { + "properties": { + "ph": { + "type": "OpaqueConstructionPhProperties", + "id_num": 0 + }, + "type": "OpaqueConstructionProperties", + "revive": { + "type": "OpaqueConstructionReviveProperties", + "id_num": 0 + } + }, + "identifier": "Generic Exterior Wall", + "type": "OpaqueConstructionAbridged", + "materials": [ + "Generic Brick", + "Generic LW Concrete", + "Generic 50mm Insulation", + "Generic Wall Air Gap", + "Generic Gypsum Board" + ] + }, + { + "properties": { + "ph": { + "type": "OpaqueConstructionPhProperties", + "id_num": 0 + }, + "type": "OpaqueConstructionProperties", + "revive": { + "type": "OpaqueConstructionReviveProperties", + "id_num": 0 + } }, - { - "values": [ - 1.0 - ], - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ] - ], - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", - "interpolate": false + "identifier": "Generic Interior Wall", + "type": "OpaqueConstructionAbridged", + "materials": [ + "Generic Gypsum Board", + "Generic Wall Air Gap", + "Generic Gypsum Board" + ] + }, + { + "properties": { + "ph": { + "type": "OpaqueConstructionPhProperties", + "id_num": 0 + }, + "type": "OpaqueConstructionProperties", + "revive": { + "type": "OpaqueConstructionReviveProperties", + "id_num": 0 + } }, - { - "values": [ - 0.0 - ], - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ] - ], - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", - "interpolate": false + "identifier": "Generic Exposed Floor", + "type": "OpaqueConstructionAbridged", + "materials": [ + "Generic Painted Metal", + "Generic Ceiling Air Gap", + "Generic 50mm Insulation", + "Generic LW Concrete" + ] + }, + { + "properties": { + "ph": { + "type": "OpaqueConstructionPhProperties", + "id_num": 0 + }, + "type": "OpaqueConstructionProperties", + "revive": { + "type": "OpaqueConstructionReviveProperties", + "id_num": 0 + } }, - { - "values": [ - 0.050000000000000003, - 0.08623256, - 0.25869767999999999, - 0.12934883999999999, - 0.04311628, - 0.050000000000000003 - ], - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 6, - 0 - ], - [ - 8, - 0 - ], - [ - 12, - 0 - ], - [ - 17, - 0 - ], - [ - 19, - 0 - ] - ], - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", - "interpolate": false + "identifier": "Generic Underground Roof", + "type": "OpaqueConstructionAbridged", + "materials": [ + "Generic 50mm Insulation", + "Generic HW Concrete", + "Generic Ceiling Air Gap", + "Generic Acoustic Tile" + ] + }, + { + "properties": { + "ph": { + "type": "OpaqueConstructionPhProperties", + "id_num": 0 + }, + "type": "OpaqueConstructionProperties", + "revive": { + "type": "OpaqueConstructionReviveProperties", + "id_num": 0 + } }, - { - "values": [ - 0.050000000000000003, - 0.10000000000000001, - 0.08623256, - 0.25869767999999999, - 0.77609304000000001, - 0.43116280000000001, - 0.25869767999999999, - 0.17246512, - 0.08623256, - 0.04311628 - ], - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 5, - 0 - ], - [ - 6, - 0 - ], - [ - 7, - 0 - ], - [ - 8, - 0 - ], - [ - 17, - 0 - ], - [ - 18, - 0 - ], - [ - 20, - 0 - ], - [ - 22, - 0 - ], - [ - 23, - 0 - ] - ], - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", - "interpolate": false - } - ] + "identifier": "Generic Exterior Door", + "type": "OpaqueConstructionAbridged", + "materials": [ + "Generic Painted Metal", + "Generic 25mm Insulation", + "Generic Painted Metal" + ] + } + ], + "door_set": { + "overhead_construction": "Generic Exterior Door", + "exterior_glass_construction": "Generic Double Pane", + "exterior_construction": "Generic Exterior Door", + "type": "DoorConstructionSetAbridged", + "interior_construction": "Generic Interior Door", + "interior_glass_construction": "Generic Single Pane" }, - { - "summer_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", - "properties": { - "ph": { - "operating_weeks_year": 52.142899999999997, - "type": "ScheduleRulesetPhProperties", - "operating_days_wk": 7.0, - "id_num": 0, - "operating_periods": { - "collection": [] + "floor_set": { + "exterior_construction": "Generic Exposed Floor", + "type": "FloorConstructionSetAbridged", + "ground_construction": "Generic Ground Slab", + "interior_construction": "Generic Interior Floor" + }, + "shade_construction": "Generic Shade", + "air_boundary_construction": "Generic Air Boundary", + "type": "GlobalConstructionSet", + "materials": [ + { + "identifier": "Generic 25mm Wood", + "roughness": "MediumSmooth", + "solar_absorptance": 0.5, + "thickness": 0.025399999999999999, + "properties": { + "ph": { + "user_data": {}, + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0 + }, + "type": "EnergyMaterialProperties", + "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, + "cost_per_m2": { + "value": 0.0, + "unit": "COST/M2" + }, + "id_num": 0, + "type": "EnergyMaterialReviveProperties", + "kg_CO2_per_m2": { + "value": 0.0, + "unit": "KG/M2" + } + } + }, + "density": 608.0, + "visible_absorptance": 0.5, + "conductivity": 0.14999999999999999, + "specific_heat": 1630.0, + "thermal_absorptance": 0.90000000000000002, + "type": "EnergyMaterial" + }, + { + "identifier": "Generic 25mm Insulation", + "roughness": "MediumRough", + "solar_absorptance": 0.69999999999999996, + "thickness": 0.025000000000000001, + "properties": { + "ph": { + "user_data": {}, + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0 + }, + "type": "EnergyMaterialProperties", + "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, + "cost_per_m2": { + "value": 0.0, + "unit": "COST/M2" + }, + "id_num": 0, + "type": "EnergyMaterialReviveProperties", + "kg_CO2_per_m2": { + "value": 0.0, + "unit": "KG/M2" + } } }, - "type": "ScheduleRulesetProperties", - "revive": { - "id_num": 0, - "type": "ScheduleRulesetReviveProperties" - } + "density": 43.0, + "visible_absorptance": 0.69999999999999996, + "conductivity": 0.029999999999999999, + "specific_heat": 1210.0, + "thermal_absorptance": 0.90000000000000002, + "type": "EnergyMaterial" }, - "schedule_type_limit": "Temperature", - "type": "ScheduleRulesetAbridged", - "default_day_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", - "identifier": "Generic Office Cooling", - "schedule_rules": [ - { - "apply_monday": true, - "start_date": [ - 1, - 1 - ], - "type": "ScheduleRuleAbridged", - "apply_wednesday": true, - "apply_tuesday": true, - "apply_friday": true, - "apply_thursday": true, - "apply_sunday": false, - "end_date": [ - 12, - 31 - ], - "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", - "apply_saturday": false - }, - { - "apply_monday": false, - "start_date": [ - 1, - 1 - ], - "type": "ScheduleRuleAbridged", - "apply_wednesday": false, - "apply_tuesday": false, - "apply_friday": false, - "apply_thursday": false, - "apply_sunday": false, - "end_date": [ - 12, - 31 - ], - "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", - "apply_saturday": true - } - ], - "holiday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", - "winter_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", - "day_schedules": [ - { - "values": [ - 26.699999999999999 - ], - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ] - ], - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", - "interpolate": false - }, - { - "values": [ - 26.699999999999999, - 25.699999999999999, - 25.0, - 24.0, - 26.699999999999999 - ], - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 5, - 0 - ], - [ - 6, - 0 - ], - [ - 7, - 0 - ], - [ - 22, - 0 - ] - ], - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", - "interpolate": false - }, - { - "values": [ - 26.699999999999999 - ], - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ] - ], - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", - "interpolate": false + { + "identifier": "Generic Brick", + "roughness": "MediumRough", + "solar_absorptance": 0.65000000000000002, + "thickness": 0.10000000000000001, + "properties": { + "ph": { + "user_data": {}, + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0 + }, + "type": "EnergyMaterialProperties", + "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, + "cost_per_m2": { + "value": 0.0, + "unit": "COST/M2" + }, + "id_num": 0, + "type": "EnergyMaterialReviveProperties", + "kg_CO2_per_m2": { + "value": 0.0, + "unit": "KG/M2" + } + } }, - { - "values": [ - 26.699999999999999, - 25.600000000000001, - 25.0, - 24.0, - 26.699999999999999 - ], - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 5, - 0 - ], - [ - 6, - 0 - ], - [ - 7, - 0 - ], - [ - 22, - 0 - ] - ], - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", - "interpolate": false + "density": 1920.0, + "visible_absorptance": 0.65000000000000002, + "conductivity": 0.90000000000000002, + "specific_heat": 790.0, + "thermal_absorptance": 0.90000000000000002, + "type": "EnergyMaterial" + }, + { + "identifier": "Generic Ceiling Air Gap", + "roughness": "Smooth", + "solar_absorptance": 0.69999999999999996, + "thickness": 0.10000000000000001, + "properties": { + "ph": { + "user_data": {}, + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0 + }, + "type": "EnergyMaterialProperties", + "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, + "cost_per_m2": { + "value": 0.0, + "unit": "COST/M2" + }, + "id_num": 0, + "type": "EnergyMaterialReviveProperties", + "kg_CO2_per_m2": { + "value": 0.0, + "unit": "KG/M2" + } + } }, - { - "values": [ - 26.699999999999999, - 25.699999999999999, - 25.0, - 24.0, - 26.699999999999999 - ], - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 5, - 0 - ], - [ - 6, - 0 - ], - [ - 7, - 0 - ], - [ - 17, - 0 - ] - ], - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", - "interpolate": false + "density": 1.2800000000000000, + "visible_absorptance": 0.69999999999999996, + "conductivity": 0.55600000000000005, + "specific_heat": 1000.0, + "thermal_absorptance": 0.90000000000000002, + "type": "EnergyMaterial" + }, + { + "thickness": 0.0060000000000000001, + "solar_transmittance": 0.45000000000000001, + "solar_reflectance": 0.35999999999999999, + "solar_reflectance_back": 0.35999999999999999, + "emissivity": 0.83999999999999997, + "emissivity_back": 0.047, + "visible_transmittance": 0.70999999999999996, + "type": "EnergyWindowMaterialGlazing", + "dirt_correction": 1.0, + "infrared_transmittance": 0.0, + "conductivity": 1.0, + "visible_reflectance_back": 0.20999999999999999, + "visible_reflectance": 0.20999999999999999, + "identifier": "Generic Low-e Glass", + "solar_diffusing": false, + "properties": { + "type": "EnergyWindowMaterialGlazingsProperties", + "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, + "cost_per_m2": { + "value": 0.0, + "unit": "COST/M2" + }, + "id_num": 0, + "type": "EnergyWindowMaterialGlazingReviveProperties", + "kg_CO2_per_m2": { + "value": 0.0, + "unit": "KG/M2" + } + } } - ] - }, - { - "summer_designday_schedule": "OfficeMedium BLDG_OCC_SCH_SmrDsn", - "properties": { - "ph": { - "operating_weeks_year": 52.142899999999997, - "type": "ScheduleRulesetPhProperties", - "operating_days_wk": 7.0, - "id_num": 0, - "operating_periods": { - "collection": [] + }, + { + "identifier": "Generic Acoustic Tile", + "roughness": "MediumSmooth", + "solar_absorptance": 0.20000000000000001, + "thickness": 0.02, + "properties": { + "ph": { + "user_data": {}, + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0 + }, + "type": "EnergyMaterialProperties", + "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, + "cost_per_m2": { + "value": 0.0, + "unit": "COST/M2" + }, + "id_num": 0, + "type": "EnergyMaterialReviveProperties", + "kg_CO2_per_m2": { + "value": 0.0, + "unit": "KG/M2" + } } }, - "type": "ScheduleRulesetProperties", - "revive": { - "id_num": 0, - "type": "ScheduleRulesetReviveProperties" + "density": 368.0, + "visible_absorptance": 0.20000000000000001, + "conductivity": 0.059999999999999998, + "specific_heat": 590.0, + "thermal_absorptance": 0.90000000000000002, + "type": "EnergyMaterial" + }, + { + "thickness": 0.0060000000000000001, + "solar_transmittance": 0.77000000000000002, + "solar_reflectance": 0.070000000000000007, + "solar_reflectance_back": 0.070000000000000007, + "emissivity": 0.83999999999999997, + "emissivity_back": 0.83999999999999997, + "visible_transmittance": 0.88, + "type": "EnergyWindowMaterialGlazing", + "dirt_correction": 1.0, + "infrared_transmittance": 0.0, + "conductivity": 1.0, + "visible_reflectance_back": 0.080000000000000002, + "visible_reflectance": 0.080000000000000002, + "identifier": "Generic Clear Glass", + "solar_diffusing": false, + "properties": { + "type": "EnergyWindowMaterialGlazingsProperties", + "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, + "cost_per_m2": { + "value": 0.0, + "unit": "COST/M2" + }, + "id_num": 0, + "type": "EnergyWindowMaterialGlazingReviveProperties", + "kg_CO2_per_m2": { + "value": 0.0, + "unit": "KG/M2" + } + } } }, - "schedule_type_limit": "Fractional", - "type": "ScheduleRulesetAbridged", - "default_day_schedule": "OfficeMedium BLDG_OCC_SCH_Default", - "identifier": "Generic Office Occupancy", - "schedule_rules": [ - { - "apply_monday": true, - "start_date": [ - 1, - 1 - ], - "type": "ScheduleRuleAbridged", - "apply_wednesday": true, - "apply_tuesday": true, - "apply_friday": true, - "apply_thursday": true, - "apply_sunday": false, - "end_date": [ - 12, - 31 - ], - "schedule_day": "OfficeMedium BLDG_OCC_SCH_Wkdy", - "apply_saturday": false + { + "identifier": "Generic HW Concrete", + "roughness": "MediumRough", + "solar_absorptance": 0.80000000000000004, + "thickness": 0.20000000000000001, + "properties": { + "ph": { + "user_data": {}, + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0 + }, + "type": "EnergyMaterialProperties", + "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, + "cost_per_m2": { + "value": 0.0, + "unit": "COST/M2" + }, + "id_num": 0, + "type": "EnergyMaterialReviveProperties", + "kg_CO2_per_m2": { + "value": 0.0, + "unit": "KG/M2" + } + } }, - { - "apply_monday": false, - "start_date": [ - 1, - 1 - ], - "type": "ScheduleRuleAbridged", - "apply_wednesday": false, - "apply_tuesday": false, - "apply_friday": false, - "apply_thursday": false, - "apply_sunday": false, - "end_date": [ - 12, - 31 - ], - "schedule_day": "OfficeMedium BLDG_OCC_SCH_Sat", - "apply_saturday": true - } - ], - "holiday_schedule": "OfficeMedium BLDG_OCC_SCH_Default", - "winter_designday_schedule": "OfficeMedium BLDG_OCC_SCH_WntrDsn", - "day_schedules": [ - { - "values": [ - 0.0, - 0.050000000000000003, - 0.0 - ], - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 6, - 0 - ], - [ - 18, - 0 - ] - ], - "identifier": "OfficeMedium BLDG_OCC_SCH_Default", - "interpolate": false + "density": 2240.0, + "visible_absorptance": 0.80000000000000004, + "conductivity": 1.9500000000000000, + "specific_heat": 900.0, + "thermal_absorptance": 0.90000000000000002, + "type": "EnergyMaterial" + }, + { + "identifier": "Generic Gypsum Board", + "roughness": "MediumSmooth", + "solar_absorptance": 0.5, + "thickness": 0.012699999999999999, + "properties": { + "ph": { + "user_data": {}, + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0 + }, + "type": "EnergyMaterialProperties", + "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, + "cost_per_m2": { + "value": 0.0, + "unit": "COST/M2" + }, + "id_num": 0, + "type": "EnergyMaterialReviveProperties", + "kg_CO2_per_m2": { + "value": 0.0, + "unit": "KG/M2" + } + } + }, + "density": 800.0, + "visible_absorptance": 0.5, + "conductivity": 0.16, + "specific_heat": 1090.0, + "thermal_absorptance": 0.90000000000000002, + "type": "EnergyMaterial" + }, + { + "identifier": "Generic Roof Membrane", + "roughness": "MediumRough", + "solar_absorptance": 0.65000000000000002, + "thickness": 0.01, + "properties": { + "ph": { + "user_data": {}, + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0 + }, + "type": "EnergyMaterialProperties", + "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, + "cost_per_m2": { + "value": 0.0, + "unit": "COST/M2" + }, + "id_num": 0, + "type": "EnergyMaterialReviveProperties", + "kg_CO2_per_m2": { + "value": 0.0, + "unit": "KG/M2" + } + } + }, + "density": 1120.0, + "visible_absorptance": 0.65000000000000002, + "conductivity": 0.16, + "specific_heat": 1460.0, + "thermal_absorptance": 0.90000000000000002, + "type": "EnergyMaterial" + }, + { + "properties": { + "type": "EnergyWindowMaterialGasProperties", + "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, + "cost_per_m2": { + "value": 0.0, + "unit": "COST/M2" + }, + "id_num": 0, + "type": "EnergyWindowMaterialGasReviveProperties", + "kg_CO2_per_m2": { + "value": 0.0, + "unit": "KG/M2" + } + } + }, + "identifier": "Generic Window Air Gap", + "type": "EnergyWindowMaterialGas", + "gas_type": "Air", + "thickness": 0.012699999999999999 + }, + { + "identifier": "Generic Painted Metal", + "roughness": "Smooth", + "solar_absorptance": 0.5, + "thickness": 0.0015, + "properties": { + "ph": { + "user_data": {}, + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0 + }, + "type": "EnergyMaterialProperties", + "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, + "cost_per_m2": { + "value": 0.0, + "unit": "COST/M2" + }, + "id_num": 0, + "type": "EnergyMaterialReviveProperties", + "kg_CO2_per_m2": { + "value": 0.0, + "unit": "KG/M2" + } + } }, - { - "values": [ - 0.0, - 1.0, - 0.050000000000000003 - ], - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 6, - 0 - ], - [ - 22, - 0 - ] - ], - "identifier": "OfficeMedium BLDG_OCC_SCH_SmrDsn", - "interpolate": false + "density": 7690.0, + "visible_absorptance": 0.5, + "conductivity": 45.0, + "specific_heat": 410.0, + "thermal_absorptance": 0.90000000000000002, + "type": "EnergyMaterial" + }, + { + "identifier": "Generic Wall Air Gap", + "roughness": "Smooth", + "solar_absorptance": 0.69999999999999996, + "thickness": 0.10000000000000001, + "properties": { + "ph": { + "user_data": {}, + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0 + }, + "type": "EnergyMaterialProperties", + "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, + "cost_per_m2": { + "value": 0.0, + "unit": "COST/M2" + }, + "id_num": 0, + "type": "EnergyMaterialReviveProperties", + "kg_CO2_per_m2": { + "value": 0.0, + "unit": "KG/M2" + } + } }, - { - "values": [ - 0.0 - ], - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ] - ], - "identifier": "OfficeMedium BLDG_OCC_SCH_WntrDsn", - "interpolate": false + "density": 1.2800000000000000, + "visible_absorptance": 0.69999999999999996, + "conductivity": 0.66700000000000004, + "specific_heat": 1000.0, + "thermal_absorptance": 0.90000000000000002, + "type": "EnergyMaterial" + }, + { + "identifier": "Generic 50mm Insulation", + "roughness": "MediumRough", + "solar_absorptance": 0.69999999999999996, + "thickness": 0.050000000000000003, + "properties": { + "ph": { + "user_data": {}, + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0 + }, + "type": "EnergyMaterialProperties", + "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, + "cost_per_m2": { + "value": 0.0, + "unit": "COST/M2" + }, + "id_num": 0, + "type": "EnergyMaterialReviveProperties", + "kg_CO2_per_m2": { + "value": 0.0, + "unit": "KG/M2" + } + } }, - { - "values": [ - 0.0, - 0.10000000000000001, - 0.20000000000000001, - 0.94999999999999996, - 0.5, - 0.94999999999999996, - 0.29999999999999999, - 0.10000000000000001, - 0.050000000000000003 - ], - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 6, - 0 - ], - [ - 7, - 0 - ], - [ - 8, - 0 - ], - [ - 12, - 0 - ], - [ - 13, - 0 - ], - [ - 17, - 0 - ], - [ - 18, - 0 - ], - [ - 22, - 0 - ] - ], - "identifier": "OfficeMedium BLDG_OCC_SCH_Wkdy", - "interpolate": false + "density": 43.0, + "visible_absorptance": 0.69999999999999996, + "conductivity": 0.029999999999999999, + "specific_heat": 1210.0, + "thermal_absorptance": 0.90000000000000002, + "type": "EnergyMaterial" + }, + { + "identifier": "Generic LW Concrete", + "roughness": "MediumRough", + "solar_absorptance": 0.80000000000000004, + "thickness": 0.10000000000000001, + "properties": { + "ph": { + "user_data": {}, + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0 + }, + "type": "EnergyMaterialProperties", + "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, + "cost_per_m2": { + "value": 0.0, + "unit": "COST/M2" + }, + "id_num": 0, + "type": "EnergyMaterialReviveProperties", + "kg_CO2_per_m2": { + "value": 0.0, + "unit": "KG/M2" + } + } }, - { - "values": [ - 0.0, - 0.10000000000000001, - 0.29999999999999999, - 0.10000000000000001, - 0.050000000000000003, - 0.0 - ], - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 6, - 0 - ], - [ - 8, - 0 - ], - [ - 12, - 0 - ], - [ - 17, - 0 - ], - [ - 19, - 0 - ] - ], - "identifier": "OfficeMedium BLDG_OCC_SCH_Sat", - "interpolate": false - } - ] + "density": 1280.0, + "visible_absorptance": 0.80000000000000004, + "conductivity": 0.53000000000000003, + "specific_heat": 840.0, + "thermal_absorptance": 0.90000000000000002, + "type": "EnergyMaterial" + } + ], + "aperture_set": { + "skylight_construction": "Generic Double Pane", + "operable_construction": "Generic Double Pane", + "type": "ApertureConstructionSetAbridged", + "interior_construction": "Generic Single Pane", + "window_construction": "Generic Double Pane" + } + }, + "schedule_type_limits": [ + { + "lower_limit": 0.0, + "upper_limit": 1.0, + "identifier": "Fractional", + "numeric_type": "Continuous", + "unit_type": "Dimensionless", + "type": "ScheduleTypeLimit" + }, + { + "lower_limit": 0.0, + "upper_limit": { + "type": "NoLimit" + }, + "identifier": "Activity Level", + "numeric_type": "Continuous", + "unit_type": "ActivityLevel", + "type": "ScheduleTypeLimit" }, { - "summer_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", + "lower_limit": -273.14999999999998, + "upper_limit": { + "type": "NoLimit" + }, + "identifier": "Temperature", + "numeric_type": "Continuous", + "unit_type": "Temperature", + "type": "ScheduleTypeLimit" + } + ], + "constructions": [ + { "properties": { "ph": { - "operating_weeks_year": 52.142899999999997, - "type": "ScheduleRulesetPhProperties", - "operating_days_wk": 7.0, + "ph_glazing": { + "display_name": "PhWindowGlazing_cd03f73b", + "g_value": 0.40000000000000002, + "id_num": 0, + "identifier": "PhWindowGlazing_cd03f73b", + "user_data": {}, + "u_factor": 0.80000000000000004 + }, + "type": "WindowConstructionPhProperties", "id_num": 0, - "operating_periods": { - "collection": [] + "ph_frame": { + "display_name": "PhWindowFrame_0c722781", + "top": { + "display_name": "PhWindowFrameElement_74cfa6d4", + "psi_glazing": 0.040000000000000001, + "width": 0.10000000000000001, + "chi_value": 0.0, + "id_num": 0, + "identifier": "PhWindowFrameElement_74cfa6d4", + "user_data": {}, + "psi_install": 0.040000000000000001, + "u_factor": 0.123 + }, + "id_num": 0, + "bottom": { + "display_name": "PhWindowFrameElement_74cfa6d4", + "psi_glazing": 0.040000000000000001, + "width": 0.10000000000000001, + "chi_value": 0.0, + "id_num": 0, + "identifier": "PhWindowFrameElement_74cfa6d4", + "user_data": {}, + "psi_install": 0.040000000000000001, + "u_factor": 0.123 + }, + "right": { + "display_name": "PhWindowFrameElement_74cfa6d4", + "psi_glazing": 0.040000000000000001, + "width": 0.10000000000000001, + "chi_value": 0.0, + "id_num": 0, + "identifier": "PhWindowFrameElement_74cfa6d4", + "user_data": {}, + "psi_install": 0.040000000000000001, + "u_factor": 0.123 + }, + "identifier": "PhWindowFrame_0c722781", + "user_data": {}, + "left": { + "display_name": "PhWindowFrameElement_74cfa6d4", + "psi_glazing": 0.040000000000000001, + "width": 0.10000000000000001, + "chi_value": 0.0, + "id_num": 0, + "identifier": "PhWindowFrameElement_74cfa6d4", + "user_data": {}, + "psi_install": 0.040000000000000001, + "u_factor": 0.123 + } } }, - "type": "ScheduleRulesetProperties", + "type": "WindowConstructionProperties", "revive": { - "id_num": 0, - "type": "ScheduleRulesetReviveProperties" + "type": "WindowConstructionReviveProperties", + "id_num": 0 } }, - "schedule_type_limit": "Fractional", - "type": "ScheduleRulesetAbridged", - "default_day_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", - "identifier": "Generic Office Infiltration", - "schedule_rules": [ - { - "apply_monday": true, - "start_date": [ - 1, - 1 - ], - "type": "ScheduleRuleAbridged", - "apply_wednesday": true, - "apply_tuesday": true, - "apply_friday": true, - "apply_thursday": true, - "apply_sunday": false, - "end_date": [ - 12, - 31 - ], - "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Wkdy", - "apply_saturday": false + "identifier": "PhWindowConstruction_94bc7a40", + "type": "WindowConstructionAbridged", + "materials": [ + "PhWindowConstruction_94bc7a40" + ] + }, + { + "display_name": "Ext_Wall", + "identifier": "Ext_Wall", + "properties": { + "ph": { + "type": "OpaqueConstructionPhProperties", + "id_num": 0 }, - { - "apply_monday": false, - "start_date": [ - 1, - 1 - ], - "type": "ScheduleRuleAbridged", - "apply_wednesday": false, - "apply_tuesday": false, - "apply_friday": false, - "apply_thursday": false, - "apply_sunday": false, - "end_date": [ - 12, - 31 - ], - "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Sat", - "apply_saturday": true + "type": "OpaqueConstructionProperties", + "revive": { + "type": "OpaqueConstructionReviveProperties", + "id_num": 0 } - ], - "holiday_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", - "winter_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", - "day_schedules": [ - { - "values": [ - 1.0 - ], - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ] - ], - "identifier": "OfficeMedium INFIL_SCH_PNNL_Default", - "interpolate": false - }, - { - "values": [ - 1.0, - 0.25, - 1.0 - ], - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 6, - 0 - ], - [ - 22, - 0 - ] - ], - "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", - "interpolate": false + }, + "type": "OpaqueConstructionAbridged", + "materials": [ + "Plywood", + "Insulation_2 + Wood_1", + "GWB" + ] + }, + { + "display_name": "Ext_Roof", + "identifier": "Ext_Roof", + "properties": { + "ph": { + "type": "OpaqueConstructionPhProperties", + "id_num": 0 }, - { - "values": [ - 1.0, - 0.25, - 1.0 - ], - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 6, - 0 - ], - [ - 18, - 0 - ] - ], - "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", - "interpolate": false + "type": "OpaqueConstructionProperties", + "revive": { + "type": "OpaqueConstructionReviveProperties", + "id_num": 0 + } + }, + "type": "OpaqueConstructionAbridged", + "materials": [ + "Plywood", + "Insulation_1+Mix_1+Mix_2", + "GWB" + ] + }, + { + "control_type": "AlwaysOn", + "shade_material": "test-shade", + "identifier": "PhWindowConstruction_5d55e451", + "type": "WindowConstructionShadeAbridged", + "properties": { + "ph": { + "type": "WindowConstructionShadePhProperties", + "id_num": 0 }, - { - "values": [ - 1.0, - 0.25, - 1.0 - ], - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 6, - 0 - ], - [ - 22, - 0 - ] - ], - "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy", - "interpolate": false + "type": "WindowConstructionShadeProperties", + "revive": { + "type": "WindowConstructionShadeReviveProperties", + "id_num": 0 + } + }, + "shade_location": "Interior", + "window_construction": { + "properties": { + "ph": { + "ph_glazing": { + "display_name": "PhWindowGlazing_410b7571", + "g_value": 0.40000000000000002, + "id_num": 0, + "identifier": "PhWindowGlazing_410b7571", + "user_data": {}, + "u_factor": 0.80000000000000004 + }, + "type": "WindowConstructionPhProperties", + "id_num": 0, + "ph_frame": { + "display_name": "PhWindowFrame_a1c2da42", + "top": { + "display_name": "PhWindowFrameElement_9d05acd8", + "psi_glazing": 0.040000000000000001, + "width": 0.10000000000000001, + "chi_value": 0.0, + "id_num": 0, + "identifier": "PhWindowFrameElement_9d05acd8", + "user_data": {}, + "psi_install": 0.040000000000000001, + "u_factor": 1.0 + }, + "id_num": 0, + "bottom": { + "display_name": "PhWindowFrameElement_9d05acd8", + "psi_glazing": 0.040000000000000001, + "width": 0.10000000000000001, + "chi_value": 0.0, + "id_num": 0, + "identifier": "PhWindowFrameElement_9d05acd8", + "user_data": {}, + "psi_install": 0.040000000000000001, + "u_factor": 1.0 + }, + "right": { + "display_name": "PhWindowFrameElement_9d05acd8", + "psi_glazing": 0.040000000000000001, + "width": 0.10000000000000001, + "chi_value": 0.0, + "id_num": 0, + "identifier": "PhWindowFrameElement_9d05acd8", + "user_data": {}, + "psi_install": 0.040000000000000001, + "u_factor": 1.0 + }, + "identifier": "PhWindowFrame_a1c2da42", + "user_data": {}, + "left": { + "display_name": "PhWindowFrameElement_9d05acd8", + "psi_glazing": 0.040000000000000001, + "width": 0.10000000000000001, + "chi_value": 0.0, + "id_num": 0, + "identifier": "PhWindowFrameElement_9d05acd8", + "user_data": {}, + "psi_install": 0.040000000000000001, + "u_factor": 1.0 + } + } + }, + "type": "WindowConstructionProperties", + "revive": { + "type": "WindowConstructionReviveProperties", + "id_num": 0 + } }, - { - "values": [ - 1.0, - 0.25, - 1.0 - ], - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 6, - 0 - ], - [ - 18, - 0 - ] - ], - "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat", - "interpolate": false - } - ] - }, + "identifier": "PhWindowConstruction_5d55e451", + "type": "WindowConstructionAbridged", + "materials": [ + "PhWindowConstruction_5d55e451" + ] + } + } + ], + "electric_load_center": { + "inverter_efficiency": 0.95999999999999996, + "type": "ElectricLoadCenter", + "inverter_dc_to_ac_size_ratio": 1.1000000000000001 + }, + "shws": [], + "ventilation_simulation_control": { + "long_axis_angle": 0.0, + "aspect_ratio": 1.0, + "reference_humidity_ratio": 0.0, + "building_type": "LowRise", + "reference_temperature": 20.0, + "type": "VentilationSimulationControl", + "vent_control_type": "SingleZone", + "reference_pressure": 101325.0 + }, + "type": "ModelEnergyProperties", + "materials": [ { - "summer_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", + "display_name": "GWB", + "conductivity": 0.12, "properties": { "ph": { - "operating_weeks_year": 52.142899999999997, - "type": "ScheduleRulesetPhProperties", - "operating_days_wk": 7.0, - "id_num": 0, - "operating_periods": { - "collection": [] - } + "user_data": {}, + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0 }, - "type": "ScheduleRulesetProperties", + "type": "EnergyMaterialProperties", "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, + "cost_per_m2": { + "value": 0.0, + "unit": "COST/M2" + }, "id_num": 0, - "type": "ScheduleRulesetReviveProperties" + "type": "EnergyMaterialReviveProperties", + "kg_CO2_per_m2": { + "value": 0.0, + "unit": "KG/M2" + } } }, - "schedule_type_limit": "Temperature", - "type": "ScheduleRulesetAbridged", - "default_day_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", - "identifier": "Generic Office Heating", - "schedule_rules": [ - { - "apply_monday": true, - "start_date": [ - 1, - 1 - ], - "type": "ScheduleRuleAbridged", - "apply_wednesday": true, - "apply_tuesday": true, - "apply_friday": true, - "apply_thursday": true, - "apply_sunday": false, - "end_date": [ - 12, - 31 - ], - "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", - "apply_saturday": false - }, - { - "apply_monday": false, - "start_date": [ - 1, - 1 - ], - "type": "ScheduleRuleAbridged", - "apply_wednesday": false, - "apply_tuesday": false, - "apply_friday": false, - "apply_thursday": false, - "apply_sunday": false, - "end_date": [ - 12, - 31 - ], - "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", - "apply_saturday": true - } - ], - "holiday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", - "winter_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", - "day_schedules": [ - { - "values": [ - 15.600000000000000 - ], - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ] - ], - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", - "interpolate": false - }, - { - "values": [ - 15.600000000000000 - ], - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ] - ], - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", - "interpolate": false - }, - { - "values": [ - 15.600000000000000, - 17.600000000000001, - 19.600000000000001, - 21.0, - 15.600000000000000 - ], - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 5, - 0 - ], - [ - 6, - 0 - ], - [ - 7, - 0 - ], - [ - 22, - 0 - ] - ], - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", - "interpolate": false - }, - { - "values": [ - 15.600000000000000, - 17.800000000000001, - 20.0, - 21.0, - 15.600000000000000 - ], - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 5, - 0 - ], - [ - 6, - 0 + "thickness": 0.012699999999999999, + "thermal_absorptance": 0.90000000000000002, + "solar_absorptance": 0.69999999999999996, + "specific_heat": 999.0, + "visible_absorptance": 0.69999999999999996, + "identifier": "GWB", + "density": 999.0, + "roughness": "MediumRough", + "type": "EnergyMaterial" + }, + { + "display_name": "Insulation_2 + Wood_1", + "conductivity": 0.17078124999999994, + "properties": { + "ph": { + "user_data": {}, + "divisions": { + "row_heights": [ + 0.07619999999999999, + 2.3241000000000001, + 0.038099999999999995 ], - [ - 7, - 0 + "cells": [ + { + "material": { + "display_name": "Wood_1", + "conductivity": 1.0, + "properties": { + "ph": { + "user_data": {}, + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0 + }, + "type": "EnergyMaterialProperties", + "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, + "cost_per_m2": { + "value": 0.0, + "unit": "COST/M2" + }, + "id_num": 0, + "type": "EnergyMaterialReviveProperties", + "kg_CO2_per_m2": { + "value": 0.0, + "unit": "KG/M2" + } + } + }, + "thickness": 0.45000000000000001, + "thermal_absorptance": 0.90000000000000002, + "solar_absorptance": 0.69999999999999996, + "specific_heat": 999.0, + "visible_absorptance": 0.69999999999999996, + "identifier": "Wood_1", + "density": 999.0, + "roughness": "MediumRough", + "type": "EnergyMaterial" + }, + "column": 0, + "row": 0 + }, + { + "material": { + "display_name": "Wood_1", + "conductivity": 1.0, + "properties": { + "ph": { + "user_data": {}, + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0 + }, + "type": "EnergyMaterialProperties", + "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, + "cost_per_m2": { + "value": 0.0, + "unit": "COST/M2" + }, + "id_num": 0, + "type": "EnergyMaterialReviveProperties", + "kg_CO2_per_m2": { + "value": 0.0, + "unit": "KG/M2" + } + } + }, + "thickness": 0.45000000000000001, + "thermal_absorptance": 0.90000000000000002, + "solar_absorptance": 0.69999999999999996, + "specific_heat": 999.0, + "visible_absorptance": 0.69999999999999996, + "identifier": "Wood_1", + "density": 999.0, + "roughness": "MediumRough", + "type": "EnergyMaterial" + }, + "column": 1, + "row": 0 + }, + { + "material": { + "display_name": "Wood_1", + "conductivity": 1.0, + "properties": { + "ph": { + "user_data": {}, + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0 + }, + "type": "EnergyMaterialProperties", + "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, + "cost_per_m2": { + "value": 0.0, + "unit": "COST/M2" + }, + "id_num": 0, + "type": "EnergyMaterialReviveProperties", + "kg_CO2_per_m2": { + "value": 0.0, + "unit": "KG/M2" + } + } + }, + "thickness": 0.45000000000000001, + "thermal_absorptance": 0.90000000000000002, + "solar_absorptance": 0.69999999999999996, + "specific_heat": 999.0, + "visible_absorptance": 0.69999999999999996, + "identifier": "Wood_1", + "density": 999.0, + "roughness": "MediumRough", + "type": "EnergyMaterial" + }, + "column": 2, + "row": 0 + }, + { + "material": { + "display_name": "Insulation_2", + "conductivity": 0.040000000000000001, + "properties": { + "ph": { + "user_data": {}, + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0 + }, + "type": "EnergyMaterialProperties", + "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, + "cost_per_m2": { + "value": 0.0, + "unit": "COST/M2" + }, + "id_num": 0, + "type": "EnergyMaterialReviveProperties", + "kg_CO2_per_m2": { + "value": 0.0, + "unit": "KG/M2" + } + } + }, + "thickness": 0.45000000000000001, + "thermal_absorptance": 0.90000000000000002, + "solar_absorptance": 0.69999999999999996, + "specific_heat": 999.0, + "visible_absorptance": 0.69999999999999996, + "identifier": "Insulation_2", + "density": 999.0, + "roughness": "MediumRough", + "type": "EnergyMaterial" + }, + "column": 0, + "row": 1 + }, + { + "material": { + "display_name": "Wood_1", + "conductivity": 1.0, + "properties": { + "ph": { + "user_data": {}, + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0 + }, + "type": "EnergyMaterialProperties", + "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, + "cost_per_m2": { + "value": 0.0, + "unit": "COST/M2" + }, + "id_num": 0, + "type": "EnergyMaterialReviveProperties", + "kg_CO2_per_m2": { + "value": 0.0, + "unit": "KG/M2" + } + } + }, + "thickness": 0.45000000000000001, + "thermal_absorptance": 0.90000000000000002, + "solar_absorptance": 0.69999999999999996, + "specific_heat": 999.0, + "visible_absorptance": 0.69999999999999996, + "identifier": "Wood_1", + "density": 999.0, + "roughness": "MediumRough", + "type": "EnergyMaterial" + }, + "column": 1, + "row": 1 + }, + { + "material": { + "display_name": "Insulation_2", + "conductivity": 0.040000000000000001, + "properties": { + "ph": { + "user_data": {}, + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0 + }, + "type": "EnergyMaterialProperties", + "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, + "cost_per_m2": { + "value": 0.0, + "unit": "COST/M2" + }, + "id_num": 0, + "type": "EnergyMaterialReviveProperties", + "kg_CO2_per_m2": { + "value": 0.0, + "unit": "KG/M2" + } + } + }, + "thickness": 0.45000000000000001, + "thermal_absorptance": 0.90000000000000002, + "solar_absorptance": 0.69999999999999996, + "specific_heat": 999.0, + "visible_absorptance": 0.69999999999999996, + "identifier": "Insulation_2", + "density": 999.0, + "roughness": "MediumRough", + "type": "EnergyMaterial" + }, + "column": 2, + "row": 1 + }, + { + "material": { + "display_name": "Wood_1", + "conductivity": 1.0, + "properties": { + "ph": { + "user_data": {}, + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0 + }, + "type": "EnergyMaterialProperties", + "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, + "cost_per_m2": { + "value": 0.0, + "unit": "COST/M2" + }, + "id_num": 0, + "type": "EnergyMaterialReviveProperties", + "kg_CO2_per_m2": { + "value": 0.0, + "unit": "KG/M2" + } + } + }, + "thickness": 0.45000000000000001, + "thermal_absorptance": 0.90000000000000002, + "solar_absorptance": 0.69999999999999996, + "specific_heat": 999.0, + "visible_absorptance": 0.69999999999999996, + "identifier": "Wood_1", + "density": 999.0, + "roughness": "MediumRough", + "type": "EnergyMaterial" + }, + "column": 0, + "row": 2 + }, + { + "material": { + "display_name": "Wood_1", + "conductivity": 1.0, + "properties": { + "ph": { + "user_data": {}, + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0 + }, + "type": "EnergyMaterialProperties", + "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, + "cost_per_m2": { + "value": 0.0, + "unit": "COST/M2" + }, + "id_num": 0, + "type": "EnergyMaterialReviveProperties", + "kg_CO2_per_m2": { + "value": 0.0, + "unit": "KG/M2" + } + } + }, + "thickness": 0.45000000000000001, + "thermal_absorptance": 0.90000000000000002, + "solar_absorptance": 0.69999999999999996, + "specific_heat": 999.0, + "visible_absorptance": 0.69999999999999996, + "identifier": "Wood_1", + "density": 999.0, + "roughness": "MediumRough", + "type": "EnergyMaterial" + }, + "column": 1, + "row": 2 + }, + { + "material": { + "display_name": "Wood_1", + "conductivity": 1.0, + "properties": { + "ph": { + "user_data": {}, + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0 + }, + "type": "EnergyMaterialProperties", + "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, + "cost_per_m2": { + "value": 0.0, + "unit": "COST/M2" + }, + "id_num": 0, + "type": "EnergyMaterialReviveProperties", + "kg_CO2_per_m2": { + "value": 0.0, + "unit": "KG/M2" + } + } + }, + "thickness": 0.45000000000000001, + "thermal_absorptance": 0.90000000000000002, + "solar_absorptance": 0.69999999999999996, + "specific_heat": 999.0, + "visible_absorptance": 0.69999999999999996, + "identifier": "Wood_1", + "density": 999.0, + "roughness": "MediumRough", + "type": "EnergyMaterial" + }, + "column": 2, + "row": 2 + } ], - [ - 22, - 0 + "column_widths": [ + 0.18414999999999998, + 0.038099999999999995, + 0.18414999999999998 ] - ], - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", - "interpolate": false + }, + "id_num": 0 }, - { - "values": [ - 15.600000000000000, - 17.800000000000001, - 20.0, - 21.0, - 15.600000000000000 - ], - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ], - [ - 5, - 0 - ], - [ - 6, - 0 - ], - [ - 7, - 0 - ], - [ - 17, - 0 - ] - ], - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", - "interpolate": false + "type": "EnergyMaterialProperties", + "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, + "cost_per_m2": { + "value": 0.0, + "unit": "COST/M2" + }, + "id_num": 0, + "type": "EnergyMaterialReviveProperties", + "kg_CO2_per_m2": { + "value": 0.0, + "unit": "KG/M2" + } } - ] + }, + "thickness": 0.45000000000000001, + "thermal_absorptance": 0.90000000000000002, + "solar_absorptance": 0.69999999999999996, + "specific_heat": 999.0, + "visible_absorptance": 0.69999999999999996, + "identifier": "Insulation_2 + Wood_1", + "density": 999.0, + "roughness": "MediumRough", + "type": "EnergyMaterial" }, { + "display_name": "Plywood", + "conductivity": 0.12, "properties": { "ph": { - "operating_weeks_year": 52.142899999999997, - "type": "ScheduleRulesetPhProperties", - "operating_days_wk": 7.0, - "id_num": 0, - "operating_periods": { - "collection": [] - } + "user_data": {}, + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0 }, - "type": "ScheduleRulesetProperties", + "type": "EnergyMaterialProperties", "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, + "cost_per_m2": { + "value": 0.0, + "unit": "COST/M2" + }, "id_num": 0, - "type": "ScheduleRulesetReviveProperties" - } - }, - "schedule_type_limit": "Fractional", - "type": "ScheduleRulesetAbridged", - "default_day_schedule": "Always On_Day Schedule", - "identifier": "Always On", - "day_schedules": [ - { - "values": [ - 1.0 - ], - "type": "ScheduleDay", - "times": [ - [ - 0, - 0 - ] - ], - "identifier": "Always On_Day Schedule", - "interpolate": false + "type": "EnergyMaterialReviveProperties", + "kg_CO2_per_m2": { + "value": 0.0, + "unit": "KG/M2" + } } - ] - } - ], - "electric_load_center": { - "type": "ElectricLoadCenter", - "inverter_efficiency": 0.95999999999999996, - "inverter_dc_to_ac_size_ratio": 1.1000000000000001 - }, - "construction_sets": [ - { - "door_set": { - "interior_glass_construction": null, - "type": "DoorConstructionSetAbridged", - "exterior_glass_construction": "PhWindowConstruction_574f4808", - "exterior_construction": null, - "interior_construction": null, - "overhead_construction": null - }, - "type": "ConstructionSetAbridged", - "shade_construction": null, - "identifier": "ConstructionSet_d1bba653", - "roof_ceiling_set": { - "exterior_construction": null, - "type": "RoofCeilingConstructionSetAbridged", - "ground_construction": null, - "interior_construction": null - }, - "wall_set": { - "exterior_construction": null, - "type": "WallConstructionSetAbridged", - "ground_construction": null, - "interior_construction": null - }, - "aperture_set": { - "window_construction": "PhWindowConstruction_574f4808", - "type": "ApertureConstructionSetAbridged", - "interior_construction": null, - "skylight_construction": "PhWindowConstruction_574f4808", - "operable_construction": "PhWindowConstruction_574f4808" - }, - "floor_set": { - "exterior_construction": null, - "type": "FloorConstructionSetAbridged", - "ground_construction": null, - "interior_construction": null }, - "air_boundary_construction": null + "thickness": 0.019, + "thermal_absorptance": 0.90000000000000002, + "solar_absorptance": 0.69999999999999996, + "specific_heat": 999.0, + "visible_absorptance": 0.69999999999999996, + "identifier": "Plywood", + "density": 999.0, + "roughness": "MediumRough", + "type": "EnergyMaterial" }, { - "door_set": { - "interior_glass_construction": null, - "type": "DoorConstructionSetAbridged", - "exterior_glass_construction": "PhWindowConstruction_6614e303", - "exterior_construction": null, - "interior_construction": null, - "overhead_construction": null - }, - "type": "ConstructionSetAbridged", - "shade_construction": null, - "identifier": "ConstructionSet_40754dbd", - "roof_ceiling_set": { - "exterior_construction": null, - "type": "RoofCeilingConstructionSetAbridged", - "ground_construction": null, - "interior_construction": null - }, - "wall_set": { - "exterior_construction": null, - "type": "WallConstructionSetAbridged", - "ground_construction": null, - "interior_construction": null - }, - "aperture_set": { - "window_construction": "PhWindowConstruction_6614e303", - "type": "ApertureConstructionSetAbridged", - "interior_construction": null, - "skylight_construction": "PhWindowConstruction_6614e303", - "operable_construction": "PhWindowConstruction_6614e303" - }, - "floor_set": { - "exterior_construction": null, - "type": "FloorConstructionSetAbridged", - "ground_construction": null, - "interior_construction": null + "properties": { + "type": "EnergyWindowMaterialSimpleGlazSysProperties", + "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, + "cost_per_m2": { + "value": 0.0, + "unit": "COST/M2" + }, + "id_num": 0, + "type": "EnergyWindowMaterialSimpleGlazSysReviveProperties", + "kg_CO2_per_m2": { + "value": 0.0, + "unit": "KG/M2" + } + } }, - "air_boundary_construction": null - } - ], - "materials": [ + "u_factor": 0.83391891891891878, + "identifier": "PhWindowConstruction_94bc7a40", + "type": "EnergyWindowMaterialSimpleGlazSys", + "display_name": "PhWindowConstruction_94bc7a40", + "vt": 0.59999999999999998, + "shgc": 0.40000000000000002 + }, { - "solar_reflectance": 0.17500000000000004, - "airflow_permeability": 0.0, - "emissivity": 0.90000000000000002, - "visible_transmittance": 0.82499999999999996, - "type": "EnergyWindowMaterialShade", - "solar_transmittance": 0.82499999999999996, - "right_opening_multiplier": 0.5, - "distance_to_glass": 0.050000000000000003, - "left_opening_multiplier": 0.5, - "identifier": "test-shade", - "display_name": "test-shade", - "visible_reflectance": 0.17500000000000004, - "infrared_transmittance": 0.0, - "thickness": 0.10000000000000001, - "top_opening_multiplier": 0.5, - "bottom_opening_multiplier": 0.5, + "display_name": "Insulation_1+Mix_1+Mix_2", + "conductivity": 0.16, "properties": { + "ph": { + "ph_color": { + "a": 255, + "b": 255, + "r": 255, + "g": 84 + }, + "user_data": {}, + "divisions": { + "row_heights": [ + 1.0 + ], + "cells": [ + { + "material": { + "display_name": "Mix_2", + "conductivity": 1.0, + "properties": { + "ph": { + "user_data": {}, + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0 + }, + "type": "EnergyMaterialProperties", + "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, + "cost_per_m2": { + "value": 0.0, + "unit": "COST/M2" + }, + "id_num": 0, + "type": "EnergyMaterialReviveProperties", + "kg_CO2_per_m2": { + "value": 0.0, + "unit": "KG/M2" + } + } + }, + "thickness": 0.45000000000000001, + "thermal_absorptance": 0.90000000000000002, + "solar_absorptance": 0.69999999999999996, + "specific_heat": 999.0, + "visible_absorptance": 0.69999999999999996, + "identifier": "Mix_2", + "density": 999.0, + "roughness": "MediumRough", + "type": "EnergyMaterial" + }, + "column": 0, + "row": 0 + }, + { + "material": { + "display_name": "Insulation_1", + "conductivity": 0.040000000000000001, + "properties": { + "ph": { + "user_data": {}, + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0 + }, + "type": "EnergyMaterialProperties", + "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, + "cost_per_m2": { + "value": 0.0, + "unit": "COST/M2" + }, + "id_num": 0, + "type": "EnergyMaterialReviveProperties", + "kg_CO2_per_m2": { + "value": 0.0, + "unit": "KG/M2" + } + } + }, + "thickness": 0.45000000000000001, + "thermal_absorptance": 0.90000000000000002, + "solar_absorptance": 0.69999999999999996, + "specific_heat": 999.0, + "visible_absorptance": 0.69999999999999996, + "identifier": "Insulation_1", + "density": 999.0, + "roughness": "MediumRough", + "type": "EnergyMaterial" + }, + "column": 1, + "row": 0 + }, + { + "material": { + "display_name": "Insulation_1", + "conductivity": 0.040000000000000001, + "properties": { + "ph": { + "user_data": {}, + "divisions": { + "row_heights": [], + "cells": [], + "column_widths": [] + }, + "id_num": 0 + }, + "type": "EnergyMaterialProperties", + "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, + "cost_per_m2": { + "value": 0.0, + "unit": "COST/M2" + }, + "id_num": 0, + "type": "EnergyMaterialReviveProperties", + "kg_CO2_per_m2": { + "value": 0.0, + "unit": "KG/M2" + } + } + }, + "thickness": 0.45000000000000001, + "thermal_absorptance": 0.90000000000000002, + "solar_absorptance": 0.69999999999999996, + "specific_heat": 999.0, + "visible_absorptance": 0.69999999999999996, + "identifier": "Insulation_1", + "density": 999.0, + "roughness": "MediumRough", + "type": "EnergyMaterial" + }, + "column": 2, + "row": 0 + } + ], + "column_widths": [ + 0.012699999999999999, + 0.07619999999999999, + 0.012699999999999999 + ] + }, + "id_num": 0 + }, + "type": "EnergyMaterialProperties", "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, "cost_per_m2": { - "unit": "COST/M2", - "value": 0.0 + "value": 0.0, + "unit": "COST/M2" }, - "type": "EnergyWindowMaterialShadeReviveProperties", - "labor_fraction": 0.40000000000000002, "id_num": 0, - "lifetime_years": 25, + "type": "EnergyMaterialReviveProperties", "kg_CO2_per_m2": { - "unit": "KG/M2", - "value": 0.0 + "value": 0.0, + "unit": "KG/M2" } - }, - "type": "EnergyWindowMaterialShadeProperties" + } }, - "conductivity": 0.90000000000000002 + "thickness": 0.45000000000000001, + "thermal_absorptance": 0.90000000000000002, + "solar_absorptance": 0.69999999999999996, + "specific_heat": 999.0, + "visible_absorptance": 0.69999999999999996, + "identifier": "Insulation_1+Mix_1+Mix_2", + "density": 999.0, + "roughness": "MediumRough", + "type": "EnergyMaterial" }, { "properties": { + "type": "EnergyWindowMaterialSimpleGlazSysProperties", "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, "cost_per_m2": { - "unit": "COST/M2", - "value": 0.0 + "value": 0.0, + "unit": "COST/M2" }, - "type": "EnergyWindowMaterialSimpleGlazSysReviveProperties", - "labor_fraction": 0.40000000000000002, "id_num": 0, - "lifetime_years": 25, + "type": "EnergyWindowMaterialSimpleGlazSysReviveProperties", "kg_CO2_per_m2": { - "unit": "KG/M2", - "value": 0.0 + "value": 0.0, + "unit": "KG/M2" } - }, - "type": "EnergyWindowMaterialSimpleGlazSysProperties" + } }, - "type": "EnergyWindowMaterialSimpleGlazSys", "u_factor": 1.0757635684464950, - "identifier": "PhWindowConstruction_6614e303", - "shgc": 0.40000000000000002, - "display_name": "PhWindowConstruction_6614e303", - "vt": 0.59999999999999998 + "identifier": "PhWindowConstruction_5d55e451", + "type": "EnergyWindowMaterialSimpleGlazSys", + "display_name": "PhWindowConstruction_5d55e451", + "vt": 0.59999999999999998, + "shgc": 0.40000000000000002 }, { + "top_opening_multiplier": 0.5, + "display_name": "test-shade", + "solar_reflectance": 0.099999999999999978, + "visible_transmittance": 0.90000000000000002, + "thickness": 0.10000000000000001, + "type": "EnergyWindowMaterialShade", + "emissivity": 0.90000000000000002, + "solar_transmittance": 0.90000000000000002, + "left_opening_multiplier": 0.5, + "bottom_opening_multiplier": 0.5, + "identifier": "test-shade", + "airflow_permeability": 0.0, + "right_opening_multiplier": 0.5, + "visible_reflectance": 0.099999999999999978, + "distance_to_glass": 0.050000000000000003, + "conductivity": 0.90000000000000002, + "infrared_transmittance": 0.0, "properties": { + "type": "EnergyWindowMaterialShadeProperties", "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, "cost_per_m2": { - "unit": "COST/M2", - "value": 0.0 + "value": 0.0, + "unit": "COST/M2" }, - "type": "EnergyWindowMaterialSimpleGlazSysReviveProperties", - "labor_fraction": 0.40000000000000002, "id_num": 0, - "lifetime_years": 25, + "type": "EnergyWindowMaterialShadeReviveProperties", "kg_CO2_per_m2": { - "unit": "KG/M2", - "value": 0.0 + "value": 0.0, + "unit": "KG/M2" } - }, - "type": "EnergyWindowMaterialSimpleGlazSysProperties" - }, - "type": "EnergyWindowMaterialSimpleGlazSys", - "u_factor": 0.83391891891891878, - "identifier": "PhWindowConstruction_574f4808", - "shgc": 0.40000000000000002, - "display_name": "PhWindowConstruction_574f4808", - "vt": 0.59999999999999998 + } + } } ], - "global_construction_set": { - "door_set": { - "interior_glass_construction": "Generic Single Pane", - "type": "DoorConstructionSetAbridged", - "exterior_glass_construction": "Generic Double Pane", - "exterior_construction": "Generic Exterior Door", - "interior_construction": "Generic Interior Door", - "overhead_construction": "Generic Exterior Door" - }, - "context_construction": "Generic Context", - "type": "GlobalConstructionSet", - "constructions": [ - { + "program_types": [ + { + "setpoint": { + "identifier": "Generic Office Setpoints", + "cooling_schedule": "Generic Office Cooling", + "type": "SetpointAbridged", + "heating_schedule": "Generic Office Heating" + }, + "electric_equipment": { + "schedule": "Generic Office Equipment", + "latent_fraction": 0.0, + "identifier": "Generic Office Equipment", + "watts_per_area": 10.330000000000000, + "radiant_fraction": 0.5, + "type": "ElectricEquipmentAbridged", "properties": { - "revive": { - "id_num": 0, - "type": "ShadeConstructionReviveProperties" + "ph": { + "equipment_collection": { + "equipment_set": {} + }, + "type": "ElectricEquipmentPhProperties" }, - "type": "ShadeConstructionProperties" + "type": "ElectricEquipmentProperties", + "revive": { + "type": "ElectricEquipmentReviveProperties", + "id_num": 0 + } }, - "type": "ShadeConstruction", - "visible_reflectance": 0.20000000000000001, - "identifier": "Generic Context", - "is_specular": false, - "solar_reflectance": 0.20000000000000001 + "lost_fraction": 0.0 }, - { - "air_mixing_schedule": "Always On", - "type": "AirBoundaryConstructionAbridged", - "identifier": "Generic Air Boundary", - "air_mixing_per_area": 0.10000000000000001 + "ventilation": { + "flow_per_person": 0.0023600000000000001, + "identifier": "Generic Office Ventilation", + "flow_per_area": 0.00030499999999999999, + "type": "VentilationAbridged" }, - { - "materials": [ - "Generic Roof Membrane", - "Generic 50mm Insulation", - "Generic LW Concrete", - "Generic Ceiling Air Gap", - "Generic Acoustic Tile" - ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Roof", + "lighting": { + "return_air_fraction": 0.0, + "schedule": "Generic Office Lighting", + "identifier": "Generic Office Lighting", + "watts_per_area": 10.550000000000001, + "radiant_fraction": 0.69999999999999996, + "type": "LightingAbridged", + "visible_fraction": 0.20000000000000001, "properties": { + "ph": { + "target_lux_height": 0.80000000000000004, + "type": "LightingPhProperties", + "id_num": 0, + "target_lux": 300 + }, + "type": "LightingProperties", "revive": { + "lifetime_years": 25, + "labor_fraction": 0.40000000000000002, + "id_num": 0, + "type": "LightingReviveProperties", + "cost": 0.0 + } + } + }, + "identifier": "Generic Office Program", + "people": { + "people_per_area": 0.056500000000000002, + "latent_fraction": { + "type": "Autocalculate" + }, + "occupancy_schedule": "Generic Office Occupancy", + "identifier": "Generic Office People", + "radiant_fraction": 0.29999999999999999, + "type": "PeopleAbridged", + "properties": { + "ph": { + "number_bedrooms": 0, + "dwellings": { + "num_dwellings": 0, + "identifier": "618be857-6814-4255-9bfa-9fa866313ef0" + }, "id_num": 0, - "type": "OpaqueConstructionReviveProperties" + "number_people": 0.0, + "type": "PeoplePhProperties" + }, + "type": "PeopleProperties", + "revive": { + "type": "PeopleReviveProperties", + "id_num": 0 + } + }, + "activity_schedule": "Seated Adult Activity" + }, + "type": "ProgramTypeAbridged", + "infiltration": { + "identifier": "Generic Office Infiltration", + "flow_per_exterior_area": 0.00022660000000000001, + "type": "InfiltrationAbridged", + "schedule": "Generic Office Infiltration" + } + } + ], + "hvacs": [ + { + "heating_limit": { + "type": "Autosize" + }, + "demand_controlled_ventilation": false, + "economizer_type": "DifferentialDryBulb", + "cooling_air_temperature": 13.0, + "latent_heat_recovery": 0.0, + "cooling_limit": { + "type": "Autosize" + }, + "identifier": "Room_11_ed80c7ba Ideal Loads Air System", + "sensible_heat_recovery": 0.0, + "type": "IdealAirSystemAbridged", + "heating_air_temperature": 50.0, + "properties": { + "type": "IdealAirSystemProperties", + "revive": { + "equipment_collection": { + "equipment": [], + "type": "PhiusReviveHVACEquipmentCollection" + }, + "type": "IdealAirSystemReviveProperties" + } + } + }, + { + "heating_limit": { + "type": "Autosize" + }, + "demand_controlled_ventilation": false, + "economizer_type": "DifferentialDryBulb", + "cooling_air_temperature": 13.0, + "latent_heat_recovery": 0.0, + "cooling_limit": { + "type": "Autosize" + }, + "identifier": "Room_4_9460264b Ideal Loads Air System", + "sensible_heat_recovery": 0.0, + "type": "IdealAirSystemAbridged", + "heating_air_temperature": 50.0, + "properties": { + "type": "IdealAirSystemProperties", + "revive": { + "equipment_collection": { + "equipment": [], + "type": "PhiusReviveHVACEquipmentCollection" }, - "type": "OpaqueConstructionProperties" + "type": "IdealAirSystemReviveProperties" + } + } + } + ] + }, + "ph": { + "team": { + "display_name": "3a13a3de-d157-4965-b2b9-ad3324eef20c", + "owner": { + "display_name": "86affca9-f240-4c49-a561-a5e3e27d4a16", + "name": null, + "email": null, + "city": null, + "identifier": "86affca9-f240-4c49-a561-a5e3e27d4a16", + "street": null, + "user_data": {}, + "telephone": null, + "post_code": null, + "license_number": null + }, + "designer": { + "display_name": "6383b256-a90a-4da5-a03a-ee6c943c5f8e", + "name": null, + "email": null, + "city": null, + "identifier": "6383b256-a90a-4da5-a03a-ee6c943c5f8e", + "street": null, + "user_data": {}, + "telephone": null, + "post_code": null, + "license_number": null + }, + "identifier": "3a13a3de-d157-4965-b2b9-ad3324eef20c", + "building": { + "display_name": "292fc633-88c4-44c7-82c8-58bde83fd7da", + "name": null, + "email": null, + "city": null, + "identifier": "292fc633-88c4-44c7-82c8-58bde83fd7da", + "street": null, + "user_data": {}, + "telephone": null, + "post_code": null, + "license_number": null + }, + "user_data": {}, + "customer": { + "display_name": "256ccc62-7fa3-4c05-80b7-667476efd1d6", + "name": null, + "email": null, + "city": null, + "identifier": "256ccc62-7fa3-4c05-80b7-667476efd1d6", + "street": null, + "user_data": {}, + "telephone": null, + "post_code": null, + "license_number": null + } + }, + "bldg_segments": [ + { + "display_name": "_unnamed_bldg_segment_", + "name": "_unnamed_bldg_segment_", + "phi_certification": { + "display_name": "a56a93c9-81d3-43ed-9dcf-9234a85875ae", + "phpp_version": 9, + "identifier": "a56a93c9-81d3-43ed-9dcf-9234a85875ae", + "user_data": {}, + "attributes": { + "certification_type": "1-PASSIVE HOUSE", + "enerphit_type": "2-ENERGY DEMAND METHOD", + "building_category_type": "1-RESIDENTIAL BUILDING", + "certification_class": "1-CLASSIC", + "tfa_override": null, + "ihg_type": "2-STANDARD", + "building_use_type": "10-DWELLING", + "phpp_version": 9, + "occupancy_type": "1-STANDARD (ONLY FOR RESIDENTIAL BUILDINGS)", + "primary_energy_type": "1-PE (NON-RENEWABLE)", + "retrofit_type": "1-NEW BUILDING" } }, - { - "materials": [ - "Generic Gypsum Board", - "Generic Wall Air Gap", - "Generic Gypsum Board" - ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Wall", - "properties": { - "revive": { - "id_num": 0, - "type": "OpaqueConstructionReviveProperties" + "phius_certification": { + "display_name": "ba00d2de-b0ed-4220-b7dd-1a621910c963", + "building_category_type": { + "value": "1-RESIDENTIAL BUILDING" + }, + "localization_selection_type": 2, + "building_use_type": { + "value": "1-RESIDENTIAL" + }, + "int_gains_num_toilets": 1, + "int_gains_dhw_marginal_perf_ratio": null, + "certification_program": { + "value": "7-PHIUS 2021 CORE" + }, + "icfa_override": null, + "building_type": { + "value": "1-NEW_CONSTRUCTION" + }, + "building_status": { + "value": "1-IN_PLANNING" + }, + "PHIUS2021_cooling_load": 10.0, + "int_gains_toilet_room_util_pat": null, + "identifier": "ba00d2de-b0ed-4220-b7dd-1a621910c963", + "PHIUS2021_cooling_demand": 15.0, + "user_data": {}, + "int_gains_evap_per_person": 15, + "PHIUS2021_heating_load": 10.0, + "int_gains_use_school_defaults": false, + "int_gains_flush_heat_loss": true, + "PHIUS2021_heating_demand": 15.0 + }, + "co2e_factors": { + "factors": [ + { + "units": "g/kWh", + "fuel_name": "GAS_CGS_35_CHP", + "value": 129.98980000000000 }, - "type": "OpaqueConstructionProperties" - } - }, - { - "materials": [ - "Generic Brick", - "Generic LW Concrete", - "Generic 50mm Insulation", - "Generic Wall Air Gap", - "Generic Gypsum Board" - ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Exterior Wall", - "properties": { - "revive": { - "id_num": 0, - "type": "OpaqueConstructionReviveProperties" + { + "units": "g/kWh", + "fuel_name": "ELECTRICITY_PV", + "value": 250.01710000000000 }, - "type": "OpaqueConstructionProperties" - } - }, - { - "materials": [ - "Generic Painted Metal", - "Generic 25mm Insulation", - "Generic Painted Metal" - ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Exterior Door", - "properties": { - "revive": { - "id_num": 0, - "type": "OpaqueConstructionReviveProperties" + { + "units": "g/kWh", + "fuel_name": "WOOD", + "value": 53.428899999999999 }, - "type": "OpaqueConstructionProperties" - } - }, - { - "materials": [ - "Generic 50mm Insulation", - "Generic HW Concrete", - "Generic Wall Air Gap", - "Generic Gypsum Board" - ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Underground Wall", - "properties": { - "revive": { - "id_num": 0, - "type": "OpaqueConstructionReviveProperties" + { + "units": "g/kWh", + "fuel_name": "HARD_COAL_CGS_0_CHP", + "value": 409.99660000000000 }, - "type": "OpaqueConstructionProperties" - } - }, - { - "materials": [ - "Generic 25mm Wood" - ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Door", - "properties": { - "revive": { - "id_num": 0, - "type": "OpaqueConstructionReviveProperties" + { + "units": "g/kWh", + "fuel_name": "HARD_COAL_CGS_35_CHP", + "value": 319.99320000000000 }, - "type": "OpaqueConstructionProperties" - } - }, - { - "properties": { - "revive": { - "id_num": 0, - "type": "ShadeConstructionReviveProperties" + { + "units": "g/kWh", + "fuel_name": "GAS_CGS_0_CHP", + "value": 319.99320000000000 }, - "type": "ShadeConstructionProperties" - }, - "type": "ShadeConstruction", - "visible_reflectance": 0.34999999999999998, - "identifier": "Generic Shade", - "is_specular": false, - "solar_reflectance": 0.34999999999999998 - }, - { - "materials": [ - "Generic 50mm Insulation", - "Generic HW Concrete", - "Generic Ceiling Air Gap", - "Generic Acoustic Tile" - ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Underground Roof", - "properties": { - "revive": { - "id_num": 0, - "type": "OpaqueConstructionReviveProperties" + { + "units": "g/kWh", + "fuel_name": "GAS_CGS_70_CHP", + "value": -70.010199999999998 }, - "type": "OpaqueConstructionProperties" - } - }, - { - "materials": [ - "Generic Clear Glass" - ], - "type": "WindowConstructionAbridged", - "identifier": "Generic Single Pane", - "properties": { - "ph": { - "id_num": 0, - "type": "WindowConstructionPhProperties" + { + "units": "g/kWh", + "fuel_name": "OIL", + "value": 309.99660000000000 }, - "type": "WindowConstructionProperties", - "revive": { - "id_num": 0, - "type": "WindowConstructionReviveProperties" - } - } - }, - { - "materials": [ - "Generic 50mm Insulation", - "Generic HW Concrete" - ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Ground Slab", - "properties": { - "revive": { - "id_num": 0, - "type": "OpaqueConstructionReviveProperties" + { + "units": "g/kWh", + "fuel_name": "LPG", + "value": 270.01020000000000 }, - "type": "OpaqueConstructionProperties" - } - }, - { - "materials": [ - "Generic Painted Metal", - "Generic Ceiling Air Gap", - "Generic 50mm Insulation", - "Generic LW Concrete" - ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Exposed Floor", - "properties": { - "revive": { - "id_num": 0, - "type": "OpaqueConstructionReviveProperties" + { + "units": "g/kWh", + "fuel_name": "OIL_CGS_35_CHP", + "value": 250.01710000000000 }, - "type": "OpaqueConstructionProperties" - } - }, - { - "materials": [ - "Generic Acoustic Tile", - "Generic Ceiling Air Gap", - "Generic LW Concrete" - ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Floor", - "properties": { - "revive": { - "id_num": 0, - "type": "OpaqueConstructionReviveProperties" + { + "units": "g/kWh", + "fuel_name": "OIL_CGS_0_CHP", + "value": 409.99660000000000 }, - "type": "OpaqueConstructionProperties" - } - }, - { - "materials": [ - "Generic LW Concrete", - "Generic Ceiling Air Gap", - "Generic Acoustic Tile" - ], - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Ceiling", - "properties": { - "revive": { - "id_num": 0, - "type": "OpaqueConstructionReviveProperties" + { + "units": "g/kWh", + "fuel_name": "HARD_COAL_CGS_70_CHP", + "value": 239.98640000000000 }, - "type": "OpaqueConstructionProperties" - } - }, - { - "materials": [ - "Generic Low-e Glass", - "Generic Window Air Gap", - "Generic Clear Glass" - ], - "type": "WindowConstructionAbridged", - "identifier": "Generic Double Pane", - "properties": { - "ph": { - "id_num": 0, - "type": "WindowConstructionPhProperties" + { + "units": "g/kWh", + "fuel_name": "OIL_CGS_70_CHP", + "value": 100.0 }, - "type": "WindowConstructionProperties", - "revive": { - "id_num": 0, - "type": "WindowConstructionReviveProperties" + { + "units": "g/kWh", + "fuel_name": "HARD_COAL", + "value": 439.98640000000000 + }, + { + "units": "g/kWh", + "fuel_name": "ELECTRICITY_MIX", + "value": 680.00680000000000 + }, + { + "units": "g/kWh", + "fuel_name": "NATURAL_GAS", + "value": 250.01710000000000 } - } - } - ], - "shade_construction": "Generic Shade", - "materials": [ - { - "properties": { - "ph": { - "id_num": 0, - "divisions": { - "row_heights": [], - "column_widths": [], - "cells": [] + ] + }, + "num_dwelling_units": 1, + "site": { + "display_name": "_unnamed_", + "phpp_library_codes": { + "display_name": "US0055b-New York", + "identifier": "e3bceaea-41ed-4ed1-8057-9027f9243328", + "user_data": {}, + "dataset_name": "US0055b-New York", + "region_code": "New York", + "country_code": "US-United States of America" + }, + "climate": { + "display_name": "My_Test_Climate", + "station_elevation": 0.0, + "summer_daily_temperature_swing": 10.0, + "ground": { + "display_name": "4cdf45b4-3899-4472-a187-9d78b2c371d6", + "ground_thermal_conductivity": 2, + "ground_heat_capacity": 1000, + "identifier": "4cdf45b4-3899-4472-a187-9d78b2c371d6", + "depth_groundwater": 3, + "flow_rate_groundwater": 0.050000000000000003, + "user_data": {}, + "ground_density": 2000 + }, + "monthly_temps": { + "display_name": "b5b4da21-110c-4e89-a0f6-09efcecea27a", + "ground_temps": { + "display_name": "f3674d05-368b-41d0-aadf-a56162a603c2", + "april": 0.0, + "march": 0.0, + "october": 0.0, + "november": 0.0, + "february": 0.0, + "june": 0.0, + "may": 0.0, + "july": 0.0, + "identifier": "f3674d05-368b-41d0-aadf-a56162a603c2", + "user_data": {}, + "august": 0.0, + "december": 0.0, + "january": 0.0, + "september": 0.0 + }, + "sky_temps": { + "display_name": "5745e806-a944-4cc8-b43d-8f608eee7227", + "april": 16.460000000000001, + "march": 8.3300000000000001, + "october": 6.4800000000000004, + "november": 5.0599999999999996, + "february": 3.3300000000000001, + "june": 20.620000000000001, + "may": 17.920000000000002, + "july": 17.699999999999999, + "identifier": "5745e806-a944-4cc8-b43d-8f608eee7227", + "user_data": {}, + "august": 13.210000000000001, + "december": 3.6200000000000001, + "january": 0.0, + "september": 9.7799999999999994 }, - "user_data": {} - }, - "type": "EnergyMaterialProperties", - "revive": { - "cost_per_m2": { - "unit": "COST/M2", - "value": 0.0 + "identifier": "b5b4da21-110c-4e89-a0f6-09efcecea27a", + "dewpoints": { + "display_name": "11cb305d-f3f8-4314-8856-a9d7431a1856", + "april": 7.9600000000000000, + "march": 6.6699999999999999, + "october": 1.5400000000000000, + "november": 1.6200000000000001, + "february": 2.6699999999999999, + "june": 6.9500000000000002, + "may": 5.1299999999999999, + "july": 4.9500000000000002, + "identifier": "11cb305d-f3f8-4314-8856-a9d7431a1856", + "user_data": {}, + "august": 4.1399999999999997, + "december": 4.2800000000000002, + "january": 0.0, + "september": 1.0500000000000000 }, - "type": "EnergyMaterialReviveProperties", - "labor_fraction": 0.40000000000000002, - "id_num": 0, - "lifetime_years": 25, - "kg_CO2_per_m2": { - "unit": "KG/M2", - "value": 0.0 + "user_data": {}, + "air_temps": { + "display_name": "3ab8854c-8c47-4d41-a582-860d5d1a5641", + "april": 19.75, + "march": 10.0, + "october": 7.7800000000000002, + "november": 6.0700000000000003, + "february": 4.0, + "june": 24.75, + "may": 21.5, + "july": 21.230000000000000, + "identifier": "3ab8854c-8c47-4d41-a582-860d5d1a5641", + "user_data": {}, + "august": 15.850000000000000, + "december": 4.3399999999999999, + "january": 0.0, + "september": 11.740000000000000 } - } - }, - "visible_absorptance": 0.65000000000000002, - "roughness": "MediumRough", - "solar_absorptance": 0.65000000000000002, - "type": "EnergyMaterial", - "density": 1120.0, - "specific_heat": 1460.0, - "thermal_absorptance": 0.90000000000000002, - "conductivity": 0.16, - "identifier": "Generic Roof Membrane", - "thickness": 0.01 - }, - { - "properties": { - "ph": { - "id_num": 0, - "divisions": { - "row_heights": [], - "column_widths": [], - "cells": [] - }, - "user_data": {} }, - "type": "EnergyMaterialProperties", - "revive": { - "cost_per_m2": { - "unit": "COST/M2", - "value": 0.0 + "average_wind_speed": 4.0, + "identifier": "368d4e78-979c-43fb-9a14-6c06f3a45874", + "peak_loads": { + "display_name": "e5cdcf4d-c945-451e-86f7-b045c421f1df", + "heat_load_1": { + "display_name": "test_peak_heat_1", + "rad_global": 0.0, + "rad_north": 0.0, + "rad_south": 0.0, + "rad_east": 0.0, + "identifier": "10fd00c7-7649-4947-8776-a8b6df50cbb2", + "temp": 0.0, + "sky_temp": null, + "rad_west": 0.0, + "user_data": {}, + "ground_temp": null, + "dewpoint": null }, - "type": "EnergyMaterialReviveProperties", - "labor_fraction": 0.40000000000000002, - "id_num": 0, - "lifetime_years": 25, - "kg_CO2_per_m2": { - "unit": "KG/M2", - "value": 0.0 - } - } - }, - "visible_absorptance": 0.65000000000000002, - "roughness": "MediumRough", - "solar_absorptance": 0.65000000000000002, - "type": "EnergyMaterial", - "density": 1920.0, - "specific_heat": 790.0, - "thermal_absorptance": 0.90000000000000002, - "conductivity": 0.90000000000000002, - "identifier": "Generic Brick", - "thickness": 0.10000000000000001 - }, - { - "type": "EnergyWindowMaterialGas", - "gas_type": "Air", - "identifier": "Generic Window Air Gap", - "thickness": 0.012699999999999999, - "properties": { - "revive": { - "cost_per_m2": { - "unit": "COST/M2", - "value": 0.0 + "heat_load_2": { + "display_name": "test_peak_heat_2", + "rad_global": 0.0, + "rad_north": 0.0, + "rad_south": 0.0, + "rad_east": 0.0, + "identifier": "637da68a-9754-441b-8eda-fd08f380c687", + "temp": 0.0, + "sky_temp": null, + "rad_west": 0.0, + "user_data": {}, + "ground_temp": null, + "dewpoint": null }, - "type": "EnergyWindowMaterialGasReviveProperties", - "labor_fraction": 0.40000000000000002, - "id_num": 0, - "lifetime_years": 25, - "kg_CO2_per_m2": { - "unit": "KG/M2", - "value": 0.0 - } - }, - "type": "EnergyWindowMaterialGasProperties" - } - }, - { - "properties": { - "ph": { - "id_num": 0, - "divisions": { - "row_heights": [], - "column_widths": [], - "cells": [] + "cooling_load_2": { + "display_name": "test_peak_cooling_2", + "rad_global": 0.0, + "rad_north": 0.0, + "rad_south": 0.0, + "rad_east": 0.0, + "identifier": "ab40f5c6-24c5-4289-981d-5c0f9b967d4c", + "temp": 0.0, + "sky_temp": null, + "rad_west": 0.0, + "user_data": {}, + "ground_temp": null, + "dewpoint": null + }, + "cooling_load_1": { + "display_name": "test_peak_cooling_1", + "rad_global": 0.0, + "rad_north": 0.0, + "rad_south": 0.0, + "rad_east": 0.0, + "identifier": "045ea6cf-a2a8-4082-af23-5a45b98f465f", + "temp": 0.0, + "sky_temp": null, + "rad_west": 0.0, + "user_data": {}, + "ground_temp": null, + "dewpoint": null }, + "identifier": "e5cdcf4d-c945-451e-86f7-b045c421f1df", "user_data": {} }, - "type": "EnergyMaterialProperties", - "revive": { - "cost_per_m2": { - "unit": "COST/M2", - "value": 0.0 + "monthly_radiation": { + "display_name": "cd76470f-1f92-47dd-813d-8d1f535aa664", + "south": { + "display_name": "579befe7-1d7c-4164-940d-0e1ce6cbdde0", + "april": 0.0, + "march": 0.0, + "october": 0.0, + "november": 0.0, + "february": 0.0, + "june": 0.0, + "may": 0.0, + "july": 0.0, + "identifier": "579befe7-1d7c-4164-940d-0e1ce6cbdde0", + "user_data": {}, + "august": 0.0, + "december": 0.0, + "january": 0.0, + "september": 0.0 }, - "type": "EnergyMaterialReviveProperties", - "labor_fraction": 0.40000000000000002, - "id_num": 0, - "lifetime_years": 25, - "kg_CO2_per_m2": { - "unit": "KG/M2", - "value": 0.0 - } - } - }, - "visible_absorptance": 0.69999999999999996, - "roughness": "MediumRough", - "solar_absorptance": 0.69999999999999996, - "type": "EnergyMaterial", - "density": 43.0, - "specific_heat": 1210.0, - "thermal_absorptance": 0.90000000000000002, - "conductivity": 0.029999999999999999, - "identifier": "Generic 50mm Insulation", - "thickness": 0.050000000000000003 - }, - { - "solar_reflectance": 0.35999999999999999, - "infrared_transmittance": 0.0, - "identifier": "Generic Low-e Glass", - "type": "EnergyWindowMaterialGlazing", - "visible_reflectance": 0.20999999999999999, - "visible_reflectance_back": 0.20999999999999999, - "solar_reflectance_back": 0.35999999999999999, - "dirt_correction": 1.0, - "solar_diffusing": false, - "conductivity": 1.0, - "visible_transmittance": 0.70999999999999996, - "thickness": 0.0060000000000000001, - "emissivity_back": 0.047, - "solar_transmittance": 0.45000000000000001, - "emissivity": 0.83999999999999997, - "properties": { - "revive": { - "cost_per_m2": { - "unit": "COST/M2", - "value": 0.0 + "west": { + "display_name": "e6c7ae1f-f50a-4820-acc6-5324c7383cd5", + "april": 131.66000000000000, + "march": 66.659999999999997, + "october": 74.319999999999993, + "november": 42.049999999999997, + "february": 26.660000000000000, + "june": 165.0, + "may": 149.97000000000000, + "july": 200.0, + "identifier": "e6c7ae1f-f50a-4820-acc6-5324c7383cd5", + "user_data": {}, + "august": 145.61000000000001, + "december": 0.0, + "january": 0.0, + "september": 104.03000000000000 }, - "type": "EnergyWindowMaterialGlazingReviveProperties", - "labor_fraction": 0.40000000000000002, - "id_num": 0, - "lifetime_years": 25, - "kg_CO2_per_m2": { - "unit": "KG/M2", - "value": 0.0 - } - }, - "type": "EnergyWindowMaterialGlazingsProperties" - } - }, - { - "properties": { - "ph": { - "id_num": 0, - "divisions": { - "row_heights": [], - "column_widths": [], - "cells": [] + "east": { + "display_name": "f004557d-d899-4736-bd61-77344bab6070", + "april": 131.66000000000000, + "march": 66.659999999999997, + "october": 74.319999999999993, + "november": 42.049999999999997, + "february": 26.660000000000000, + "june": 165.0, + "may": 149.97000000000000, + "july": 200.0, + "identifier": "f004557d-d899-4736-bd61-77344bab6070", + "user_data": {}, + "august": 145.61000000000001, + "december": 0.0, + "january": 0.0, + "september": 104.03000000000000 }, - "user_data": {} - }, - "type": "EnergyMaterialProperties", - "revive": { - "cost_per_m2": { - "unit": "COST/M2", - "value": 0.0 + "north": { + "display_name": "71c080cb-3b37-4569-ad54-64493f13dca5", + "april": 131.66000000000000, + "march": 66.659999999999997, + "october": 74.319999999999993, + "november": 42.049999999999997, + "february": 26.660000000000000, + "june": 165.0, + "may": 149.97000000000000, + "july": 200.0, + "identifier": "71c080cb-3b37-4569-ad54-64493f13dca5", + "user_data": {}, + "august": 145.61000000000001, + "december": 0.0, + "january": 0.0, + "september": 104.03000000000000 }, - "type": "EnergyMaterialReviveProperties", - "labor_fraction": 0.40000000000000002, - "id_num": 0, - "lifetime_years": 25, - "kg_CO2_per_m2": { - "unit": "KG/M2", - "value": 0.0 - } - } - }, - "visible_absorptance": 0.69999999999999996, - "roughness": "Smooth", - "solar_absorptance": 0.69999999999999996, - "type": "EnergyMaterial", - "density": 1.2800000000000000, - "specific_heat": 1000.0, - "thermal_absorptance": 0.90000000000000002, - "conductivity": 0.55600000000000005, - "identifier": "Generic Ceiling Air Gap", - "thickness": 0.10000000000000001 - }, - { - "properties": { - "ph": { - "id_num": 0, - "divisions": { - "row_heights": [], - "column_widths": [], - "cells": [] + "identifier": "cd76470f-1f92-47dd-813d-8d1f535aa664", + "glob": { + "display_name": "c90b050b-b9ee-4f84-b183-cc6ab00507ce", + "april": 131.66000000000000, + "march": 66.659999999999997, + "october": 74.319999999999993, + "november": 42.049999999999997, + "february": 26.660000000000000, + "june": 165.0, + "may": 149.97000000000000, + "july": 200.0, + "identifier": "c90b050b-b9ee-4f84-b183-cc6ab00507ce", + "user_data": {}, + "august": 145.61000000000001, + "december": 0.0, + "january": 0.0, + "september": 104.03000000000000 }, "user_data": {} }, - "type": "EnergyMaterialProperties", - "revive": { - "cost_per_m2": { - "unit": "COST/M2", - "value": 0.0 - }, - "type": "EnergyMaterialReviveProperties", - "labor_fraction": 0.40000000000000002, - "id_num": 0, - "lifetime_years": 25, - "kg_CO2_per_m2": { - "unit": "KG/M2", - "value": 0.0 - } - } + "user_data": {} }, - "visible_absorptance": 0.5, - "roughness": "MediumSmooth", - "solar_absorptance": 0.5, - "type": "EnergyMaterial", - "density": 800.0, - "specific_heat": 1090.0, - "thermal_absorptance": 0.90000000000000002, - "conductivity": 0.16, - "identifier": "Generic Gypsum Board", - "thickness": 0.012699999999999999 + "location": { + "display_name": "New_York", + "latitude": 40.600000000000001, + "longitude": -73.799999999999997, + "climate_zone": 1, + "identifier": "69369ef5-2083-4dd1-88ea-7a593c2dafb6", + "user_data": {}, + "site_elevation": 0.0, + "hours_from_UTC": -4 + }, + "identifier": "c9bdfd6b-845b-4f1d-bca9-04cdec5be8bf", + "user_data": {} }, - { - "properties": { - "ph": { - "id_num": 0, - "divisions": { - "row_heights": [], - "column_widths": [], - "cells": [] - }, - "user_data": {} + "set_points": { + "display_name": "858a140d-df34-4911-8519-a86afefcd8ac", + "winter": 21.0, + "identifier": "858a140d-df34-4911-8519-a86afefcd8ac", + "user_data": {}, + "summer": 24.0 + }, + "summer_hrv_bypass_mode": { + "value": "2-TEMPERATURE CONTROLLED" + }, + "identifier": "610a5608-d5d4-4d0f-b76e-b7b29a1a5edf", + "source_energy_factors": { + "factors": [ + { + "units": "kWh/kWh", + "fuel_name": "GAS_CGS_35_CHP", + "value": 1.1000000000000001 }, - "type": "EnergyMaterialProperties", - "revive": { - "cost_per_m2": { - "unit": "COST/M2", - "value": 0.0 - }, - "type": "EnergyMaterialReviveProperties", - "labor_fraction": 0.40000000000000002, - "id_num": 0, - "lifetime_years": 25, - "kg_CO2_per_m2": { - "unit": "KG/M2", - "value": 0.0 - } + { + "units": "kWh/kWh", + "fuel_name": "ELECTRICITY_PV", + "value": 1.7000000000000000 + }, + { + "units": "kWh/kWh", + "fuel_name": "WOOD", + "value": 0.20000000000000001 + }, + { + "units": "kWh/kWh", + "fuel_name": "HARD_COAL_CGS_0_CHP", + "value": 1.5 + }, + { + "units": "kWh/kWh", + "fuel_name": "HARD_COAL_CGS_35_CHP", + "value": 1.1000000000000001 + }, + { + "units": "kWh/kWh", + "fuel_name": "GAS_CGS_0_CHP", + "value": 1.5 + }, + { + "units": "kWh/kWh", + "fuel_name": "GAS_CGS_70_CHP", + "value": 0.69999999999999996 + }, + { + "units": "kWh/kWh", + "fuel_name": "OIL", + "value": 1.1000000000000001 + }, + { + "units": "kWh/kWh", + "fuel_name": "LPG", + "value": 1.1000000000000001 + }, + { + "units": "kWh/kWh", + "fuel_name": "OIL_CGS_35_CHP", + "value": 1.1000000000000001 + }, + { + "units": "kWh/kWh", + "fuel_name": "OIL_CGS_0_CHP", + "value": 1.5 + }, + { + "units": "kWh/kWh", + "fuel_name": "HARD_COAL_CGS_70_CHP", + "value": 0.80000000000000004 + }, + { + "units": "kWh/kWh", + "fuel_name": "OIL_CGS_70_CHP", + "value": 0.80000000000000004 + }, + { + "units": "kWh/kWh", + "fuel_name": "HARD_COAL", + "value": 1.1000000000000001 + }, + { + "units": "kWh/kWh", + "fuel_name": "ELECTRICITY_MIX", + "value": 1.8000000000000000 + }, + { + "units": "kWh/kWh", + "fuel_name": "NATURAL_GAS", + "value": 1.1000000000000001 } - }, - "visible_absorptance": 0.5, - "roughness": "MediumSmooth", - "solar_absorptance": 0.5, - "type": "EnergyMaterial", - "density": 608.0, - "specific_heat": 1630.0, - "thermal_absorptance": 0.90000000000000002, - "conductivity": 0.14999999999999999, - "identifier": "Generic 25mm Wood", - "thickness": 0.025399999999999999 + ] }, - { - "properties": { - "ph": { - "id_num": 0, - "divisions": { - "row_heights": [], - "column_widths": [], - "cells": [] - }, - "user_data": {} + "non_combustible_materials": false, + "user_data": {}, + "thermal_bridges": { + "b60447c8-b24d-4348-a8ef-60f6ac7f7d83": { + "display_name": "_unnamed_bldg_segment__4f3ddd99", + "_group_type": { + "value": "15-AMBIENT" }, - "type": "EnergyMaterialProperties", - "revive": { - "cost_per_m2": { - "unit": "COST/M2", - "value": 0.0 - }, - "type": "EnergyMaterialReviveProperties", - "labor_fraction": 0.40000000000000002, - "id_num": 0, - "lifetime_years": 25, - "kg_CO2_per_m2": { - "unit": "KG/M2", - "value": 0.0 - } - } + "psi_value": 0.01, + "id_num": 0, + "identifier": "b60447c8-b24d-4348-a8ef-60f6ac7f7d83", + "geometry": { + "type": "Polyline3D", + "vertices": [ + [ + 5.0, + 4.0, + 0.0 + ], + [ + 5.0, + 0.0, + 0.0 + ], + [ + 5.0, + 0.0, + 3.0 + ], + [ + 5.0, + 4.0, + 3.0 + ], + [ + 5.0, + 4.0, + 0.0 + ] + ] + }, + "user_data": {}, + "fRsi_value": 0.75, + "quantity": 1.0 }, - "visible_absorptance": 0.69999999999999996, - "roughness": "Smooth", - "solar_absorptance": 0.69999999999999996, - "type": "EnergyMaterial", - "density": 1.2800000000000000, - "specific_heat": 1000.0, - "thermal_absorptance": 0.90000000000000002, - "conductivity": 0.66700000000000004, - "identifier": "Generic Wall Air Gap", - "thickness": 0.10000000000000001 - }, - { - "properties": { - "ph": { - "id_num": 0, - "divisions": { - "row_heights": [], - "column_widths": [], - "cells": [] - }, - "user_data": {} + "ef8e5579-fdf9-496e-bfb0-47928bc46da9": { + "display_name": "_unnamed_bldg_segment__0d94194d", + "_group_type": { + "value": "15-AMBIENT" + }, + "psi_value": 0.01, + "id_num": 0, + "identifier": "ef8e5579-fdf9-496e-bfb0-47928bc46da9", + "geometry": { + "type": "Polyline3D", + "vertices": [ + [ + 12.0, + 0.0, + 0.0 + ], + [ + 12.0, + 4.0, + 0.0 + ], + [ + 12.0, + 4.0, + 3.0 + ], + [ + 12.0, + 0.0, + 3.0 + ], + [ + 12.0, + 0.0, + 0.0 + ] + ] }, - "type": "EnergyMaterialProperties", - "revive": { - "cost_per_m2": { - "unit": "COST/M2", - "value": 0.0 - }, - "type": "EnergyMaterialReviveProperties", - "labor_fraction": 0.40000000000000002, - "id_num": 0, - "lifetime_years": 25, - "kg_CO2_per_m2": { - "unit": "KG/M2", - "value": 0.0 - } - } + "user_data": {}, + "fRsi_value": 0.75, + "quantity": 1.0 }, - "visible_absorptance": 0.80000000000000004, - "roughness": "MediumRough", - "solar_absorptance": 0.80000000000000004, - "type": "EnergyMaterial", - "density": 1280.0, - "specific_heat": 840.0, - "thermal_absorptance": 0.90000000000000002, - "conductivity": 0.53000000000000003, - "identifier": "Generic LW Concrete", - "thickness": 0.10000000000000001 - }, - { - "properties": { - "ph": { - "id_num": 0, - "divisions": { - "row_heights": [], - "column_widths": [], - "cells": [] - }, - "user_data": {} + "392f79c2-c67c-4e4f-a4df-d4a94c81b067": { + "display_name": "_unnamed_bldg_segment__ac222644", + "_group_type": { + "value": "15-AMBIENT" }, - "type": "EnergyMaterialProperties", - "revive": { - "cost_per_m2": { - "unit": "COST/M2", - "value": 0.0 - }, - "type": "EnergyMaterialReviveProperties", - "labor_fraction": 0.40000000000000002, - "id_num": 0, - "lifetime_years": 25, - "kg_CO2_per_m2": { - "unit": "KG/M2", - "value": 0.0 - } - } + "psi_value": 0.01, + "id_num": 0, + "identifier": "392f79c2-c67c-4e4f-a4df-d4a94c81b067", + "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 + ] + ] + }, + "user_data": {}, + "fRsi_value": 0.75, + "quantity": 1.0 }, - "visible_absorptance": 0.5, - "roughness": "Smooth", - "solar_absorptance": 0.5, - "type": "EnergyMaterial", - "density": 7690.0, - "specific_heat": 410.0, - "thermal_absorptance": 0.90000000000000002, - "conductivity": 45.0, - "identifier": "Generic Painted Metal", - "thickness": 0.0015 - }, - { - "properties": { - "ph": { - "id_num": 0, - "divisions": { - "row_heights": [], - "column_widths": [], - "cells": [] - }, - "user_data": {} + "ebaf1578-afe0-4cc6-8730-e21edd30bc6d": { + "display_name": "_unnamed_bldg_segment__a1885612", + "_group_type": { + "value": "15-AMBIENT" }, - "type": "EnergyMaterialProperties", - "revive": { - "cost_per_m2": { - "unit": "COST/M2", - "value": 0.0 - }, - "type": "EnergyMaterialReviveProperties", - "labor_fraction": 0.40000000000000002, - "id_num": 0, - "lifetime_years": 25, - "kg_CO2_per_m2": { - "unit": "KG/M2", - "value": 0.0 - } - } + "psi_value": 0.01, + "id_num": 0, + "identifier": "ebaf1578-afe0-4cc6-8730-e21edd30bc6d", + "geometry": { + "type": "Polyline3D", + "vertices": [ + [ + 0.0, + 0.0, + 3.0 + ], + [ + 5.0, + 0.0, + 3.0 + ], + [ + 5.0, + 4.0, + 3.0 + ], + [ + 0.0, + 4.0, + 3.0 + ], + [ + 0.0, + 0.0, + 3.0 + ] + ] + }, + "user_data": {}, + "fRsi_value": 0.75, + "quantity": 1.0 }, - "visible_absorptance": 0.80000000000000004, - "roughness": "MediumRough", - "solar_absorptance": 0.80000000000000004, - "type": "EnergyMaterial", - "density": 2240.0, - "specific_heat": 900.0, - "thermal_absorptance": 0.90000000000000002, - "conductivity": 1.9500000000000000, - "identifier": "Generic HW Concrete", - "thickness": 0.20000000000000001 - }, - { - "properties": { - "ph": { - "id_num": 0, - "divisions": { - "row_heights": [], - "column_widths": [], - "cells": [] - }, - "user_data": {} + "d2d38116-f524-4f2d-a0ed-81e64ed6d23c": { + "display_name": "_unnamed_bldg_segment__4694797a", + "_group_type": { + "value": "15-AMBIENT" }, - "type": "EnergyMaterialProperties", - "revive": { - "cost_per_m2": { - "unit": "COST/M2", - "value": 0.0 - }, - "type": "EnergyMaterialReviveProperties", - "labor_fraction": 0.40000000000000002, - "id_num": 0, - "lifetime_years": 25, - "kg_CO2_per_m2": { - "unit": "KG/M2", - "value": 0.0 - } - } + "psi_value": 0.01, + "id_num": 0, + "identifier": "d2d38116-f524-4f2d-a0ed-81e64ed6d23c", + "geometry": { + "type": "Polyline3D", + "vertices": [ + [ + 5.0, + 0.0, + 0.0 + ], + [ + 12.0, + 0.0, + 0.0 + ], + [ + 12.0, + 0.0, + 3.0 + ], + [ + 5.0, + 0.0, + 3.0 + ], + [ + 5.0, + 0.0, + 0.0 + ] + ] + }, + "user_data": {}, + "fRsi_value": 0.75, + "quantity": 1.0 }, - "visible_absorptance": 0.69999999999999996, - "roughness": "MediumRough", - "solar_absorptance": 0.69999999999999996, - "type": "EnergyMaterial", - "density": 43.0, - "specific_heat": 1210.0, - "thermal_absorptance": 0.90000000000000002, - "conductivity": 0.029999999999999999, - "identifier": "Generic 25mm Insulation", - "thickness": 0.025000000000000001 - }, - { - "solar_reflectance": 0.070000000000000007, - "infrared_transmittance": 0.0, - "identifier": "Generic Clear Glass", - "type": "EnergyWindowMaterialGlazing", - "visible_reflectance": 0.080000000000000002, - "visible_reflectance_back": 0.080000000000000002, - "solar_reflectance_back": 0.070000000000000007, - "dirt_correction": 1.0, - "solar_diffusing": false, - "conductivity": 1.0, - "visible_transmittance": 0.88, - "thickness": 0.0060000000000000001, - "emissivity_back": 0.83999999999999997, - "solar_transmittance": 0.77000000000000002, - "emissivity": 0.83999999999999997, - "properties": { - "revive": { - "cost_per_m2": { - "unit": "COST/M2", - "value": 0.0 - }, - "type": "EnergyWindowMaterialGlazingReviveProperties", - "labor_fraction": 0.40000000000000002, - "id_num": 0, - "lifetime_years": 25, - "kg_CO2_per_m2": { - "unit": "KG/M2", - "value": 0.0 - } + "35f8cf4b-1803-4ec4-bc7e-e552224c896e": { + "display_name": "_unnamed_bldg_segment__dd7ceed8", + "_group_type": { + "value": "15-AMBIENT" + }, + "psi_value": 0.01, + "id_num": 0, + "identifier": "35f8cf4b-1803-4ec4-bc7e-e552224c896e", + "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 + ] + ] }, - "type": "EnergyWindowMaterialGlazingsProperties" - } - }, - { - "properties": { - "ph": { - "id_num": 0, - "divisions": { - "row_heights": [], - "column_widths": [], - "cells": [] - }, - "user_data": {} + "user_data": {}, + "fRsi_value": 0.75, + "quantity": 1.0 + }, + "e04814f1-731a-4e67-95bb-70d7c824730d": { + "display_name": "_unnamed_bldg_segment__e9f92e79", + "_group_type": { + "value": "15-AMBIENT" }, - "type": "EnergyMaterialProperties", - "revive": { - "cost_per_m2": { - "unit": "COST/M2", - "value": 0.0 - }, - "type": "EnergyMaterialReviveProperties", - "labor_fraction": 0.40000000000000002, - "id_num": 0, - "lifetime_years": 25, - "kg_CO2_per_m2": { - "unit": "KG/M2", - "value": 0.0 - } - } + "psi_value": 0.01, + "id_num": 0, + "identifier": "e04814f1-731a-4e67-95bb-70d7c824730d", + "geometry": { + "type": "Polyline3D", + "vertices": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 5.0, + 0.0, + 0.0 + ], + [ + 5.0, + 0.0, + 3.0 + ], + [ + 0.0, + 0.0, + 3.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + }, + "user_data": {}, + "fRsi_value": 0.75, + "quantity": 1.0 }, - "visible_absorptance": 0.20000000000000001, - "roughness": "MediumSmooth", - "solar_absorptance": 0.20000000000000001, - "type": "EnergyMaterial", - "density": 368.0, - "specific_heat": 590.0, - "thermal_absorptance": 0.90000000000000002, - "conductivity": 0.059999999999999998, - "identifier": "Generic Acoustic Tile", - "thickness": 0.02 - } - ], - "roof_ceiling_set": { - "exterior_construction": "Generic Roof", - "type": "RoofCeilingConstructionSetAbridged", - "ground_construction": "Generic Underground Roof", - "interior_construction": "Generic Interior Ceiling" - }, - "wall_set": { - "exterior_construction": "Generic Exterior Wall", - "type": "WallConstructionSetAbridged", - "ground_construction": "Generic Underground Wall", - "interior_construction": "Generic Interior Wall" - }, - "aperture_set": { - "window_construction": "Generic Double Pane", - "type": "ApertureConstructionSetAbridged", - "interior_construction": "Generic Single Pane", - "skylight_construction": "Generic Double Pane", - "operable_construction": "Generic Double Pane" - }, - "floor_set": { - "exterior_construction": "Generic Exposed Floor", - "type": "FloorConstructionSetAbridged", - "ground_construction": "Generic Ground Slab", - "interior_construction": "Generic Interior Floor" - }, - "air_boundary_construction": "Generic Air Boundary" - }, - "ventilation_simulation_control": { - "vent_control_type": "SingleZone", - "type": "VentilationSimulationControl", - "reference_pressure": 101325.0, - "building_type": "LowRise", - "reference_temperature": 20.0, - "reference_humidity_ratio": 0.0, - "long_axis_angle": 0.0, - "aspect_ratio": 1.0 - }, - "schedule_type_limits": [ - { - "numeric_type": "Continuous", - "type": "ScheduleTypeLimit", - "unit_type": "ActivityLevel", - "upper_limit": { - "type": "NoLimit" - }, - "identifier": "Activity Level", - "lower_limit": 0.0 - }, - { - "numeric_type": "Continuous", - "type": "ScheduleTypeLimit", - "unit_type": "Temperature", - "upper_limit": { - "type": "NoLimit" - }, - "identifier": "Temperature", - "lower_limit": -273.14999999999998 - }, - { - "numeric_type": "Continuous", - "type": "ScheduleTypeLimit", - "unit_type": "Dimensionless", - "upper_limit": 1.0, - "identifier": "Fractional", - "lower_limit": 0.0 - } - ] - }, - "radiance": { - "modifiers": [ - { - "g_reflectance": 0.20000000000000001, - "identifier": "generic_context_0.20", - "r_reflectance": 0.20000000000000001, - "roughness": 0.0, - "specularity": 0.0, - "dependencies": [], - "type": "Plastic", - "b_reflectance": 0.20000000000000001, - "modifier": null - } - ], - "type": "ModelRadianceProperties", - "global_modifier_set": { - "door_set": { - "interior_modifier": "generic_opaque_door_0.50", - "type": "DoorModifierSetAbridged", - "interior_glass_modifier": "generic_interior_window_vis_0.88", - "exterior_modifier": "generic_opaque_door_0.50", - "exterior_glass_modifier": "generic_exterior_window_vis_0.64", - "overhead_modifier": "generic_opaque_door_0.50" - }, - "context_modifier": "generic_context_0.20", - "shade_set": { - "type": "ShadeModifierSetAbridged", - "exterior_modifier": "generic_exterior_shade_0.35", - "interior_modifier": "generic_interior_shade_0.50" - }, - "air_boundary_modifier": "air_boundary", - "type": "GlobalModifierSet", - "modifiers": [ - { - "g_reflectance": 0.80000000000000004, - "identifier": "generic_ceiling_0.80", - "r_reflectance": 0.80000000000000004, - "roughness": 0.0, - "specularity": 0.0, - "dependencies": [], - "type": "Plastic", - "b_reflectance": 0.80000000000000004, - "modifier": null - }, - { - "g_reflectance": 0.5, - "identifier": "generic_wall_0.50", - "r_reflectance": 0.5, - "roughness": 0.0, - "specularity": 0.0, - "dependencies": [], - "type": "Plastic", - "b_reflectance": 0.5, - "modifier": null - }, - { - "g_reflectance": 0.5, - "identifier": "generic_opaque_door_0.50", - "r_reflectance": 0.5, - "roughness": 0.0, - "specularity": 0.0, - "dependencies": [], - "type": "Plastic", - "b_reflectance": 0.5, - "modifier": null - }, - { - "g_reflectance": 0.5, - "identifier": "generic_interior_shade_0.50", - "r_reflectance": 0.5, - "roughness": 0.0, - "specularity": 0.0, - "dependencies": [], - "type": "Plastic", - "b_reflectance": 0.5, - "modifier": null - }, - { - "modifier": null, - "g_reflectance": 1.0, - "identifier": "air_boundary", - "roughness": 0.0, - "r_reflectance": 1.0, - "transmitted_diff": 1.0, - "dependencies": [], - "b_reflectance": 1.0, - "specularity": 0.0, - "type": "Trans", - "transmitted_spec": 1.0 - }, - { - "type": "Glass", - "b_transmissivity": 0.95841543286105957, - "refraction_index": null, - "dependencies": [], - "identifier": "generic_interior_window_vis_0.88", - "r_transmissivity": 0.95841543286105957, - "g_transmissivity": 0.95841543286105957, - "modifier": null - }, - { - "g_reflectance": 0.34999999999999998, - "identifier": "generic_exterior_shade_0.35", - "r_reflectance": 0.34999999999999998, - "roughness": 0.0, - "specularity": 0.0, - "dependencies": [], - "type": "Plastic", - "b_reflectance": 0.34999999999999998, - "modifier": null - }, - { - "g_reflectance": 0.20000000000000001, - "identifier": "generic_floor_0.20", - "r_reflectance": 0.20000000000000001, - "roughness": 0.0, - "specularity": 0.0, - "dependencies": [], - "type": "Plastic", - "b_reflectance": 0.20000000000000001, - "modifier": null - }, - { - "type": "Glass", - "b_transmissivity": 0.69757618153843315, - "refraction_index": null, - "dependencies": [], - "identifier": "generic_exterior_window_vis_0.64", - "r_transmissivity": 0.69757618153843315, - "g_transmissivity": 0.69757618153843315, - "modifier": null + "1d16321f-fb68-4b4b-a33c-372e69291b0f": { + "display_name": "_unnamed_bldg_segment__03816433", + "_group_type": { + "value": "15-AMBIENT" + }, + "psi_value": 0.01, + "id_num": 0, + "identifier": "1d16321f-fb68-4b4b-a33c-372e69291b0f", + "geometry": { + "type": "Polyline3D", + "vertices": [ + [ + 0.0, + 3.3416407864998741, + 0.49376941012509468 + ], + [ + 0.0, + 0.65835921350012616, + 0.49376941012509468 + ], + [ + 0.0, + 0.65835921350012616, + 2.5062305898749053 + ], + [ + 0.0, + 3.3416407864998741, + 2.5062305898749053 + ], + [ + 0.0, + 3.3416407864998741, + 0.49376941012509468 + ] + ] + }, + "user_data": {}, + "fRsi_value": 0.75, + "quantity": 1.0 + }, + "f7e8c543-1270-4169-aa4d-55e92d6c7d90": { + "display_name": "_unnamed_bldg_segment__1795e7f0", + "_group_type": { + "value": "15-AMBIENT" + }, + "psi_value": 0.01, + "id_num": 0, + "identifier": "f7e8c543-1270-4169-aa4d-55e92d6c7d90", + "geometry": { + "type": "Polyline3D", + "vertices": [ + [ + 0.0, + 4.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 3.0 + ], + [ + 0.0, + 4.0, + 3.0 + ], + [ + 0.0, + 4.0, + 0.0 + ] + ] + }, + "user_data": {}, + "fRsi_value": 0.75, + "quantity": 1.0 + }, + "2b8217dd-c8fe-4b6b-b8b7-a343a822a63d": { + "display_name": "_unnamed_bldg_segment__0ea559de", + "_group_type": { + "value": "15-AMBIENT" + }, + "psi_value": 0.01, + "id_num": 0, + "identifier": "2b8217dd-c8fe-4b6b-b8b7-a343a822a63d", + "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 + ] + ] + }, + "user_data": {}, + "fRsi_value": 0.75, + "quantity": 1.0 + } }, - { - "g_reflectance": 0.20000000000000001, - "identifier": "generic_context_0.20", - "r_reflectance": 0.20000000000000001, - "roughness": 0.0, - "specularity": 0.0, - "dependencies": [], - "type": "Plastic", - "b_reflectance": 0.20000000000000001, - "modifier": null + "mech_room_temp": 20.0, + "num_floor_levels": 1, + "wind_exposure_type": { + "value": "1-SEVERAL_SIDES_EXPOSED_NO_SCREENING" } - ], - "roof_ceiling_set": { - "type": "RoofCeilingModifierSetAbridged", - "exterior_modifier": "generic_ceiling_0.80", - "interior_modifier": "generic_ceiling_0.80" - }, - "wall_set": { - "type": "WallModifierSetAbridged", - "exterior_modifier": "generic_wall_0.50", - "interior_modifier": "generic_wall_0.50" - }, - "aperture_set": { - "window_modifier": "generic_exterior_window_vis_0.64", - "interior_modifier": "generic_interior_window_vis_0.88", - "type": "ApertureModifierSetAbridged", - "skylight_modifier": "generic_exterior_window_vis_0.64", - "operable_modifier": "generic_exterior_window_vis_0.64" - }, - "floor_set": { - "type": "FloorModifierSetAbridged", - "exterior_modifier": "generic_floor_0.20", - "interior_modifier": "generic_floor_0.20" } - }, - "modifier_sets": [] + ], + "type": "ModelPhPropertiesAbridged", + "id_num": 0 }, "ph_hvac": { "type": "ModelPhHvacProperties" @@ -3999,135 +4805,36 @@ "type": "ModelProperties" }, "type": "Model", - "angle_tolerance": 1.0, - "identifier": "unnamed_b6a24141", + "version": "1.58.5", "rooms": [ { + "display_name": "Room_11", "faces": [ { - "properties": { - "revive": { - "id_num": 0, - "type": "FaceRevivePropertiesAbridged" - }, - "ph": { - "id_num": 0, - "type": "FacePhPropertiesAbridged" - }, - "energy": { - "type": "FaceEnergyPropertiesAbridged" - }, - "radiance": { - "type": "FaceRadiancePropertiesAbridged" - }, - "ph_hvac": { - "type": "FacePhHvacPropertiesAbridged" - }, - "type": "FacePropertiesAbridged" - }, - "type": "Face", - "geometry": { - "plane": { - "x": [ - 0.98480775301220813, - -0.17364817766693041, - 0.0 - ], - "type": "Plane", - "n": [ - 0.17364817766693041, - 0.98480775301220813, - 0.0 - ], - "o": [ - 0.0, - -5.5, - 3.3000000000000003 - ] - }, - "type": "Face3D", - "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 - ] - ] - }, - "identifier": "Room_3_654deabd..Face0", + "display_name": "Room_11_ed80c7ba..Face0", "face_type": "Wall", "boundary_condition": { - "type": "Outdoors", "view_factor": { "type": "Autocalculate" }, - "sun_exposure": true, - "wind_exposure": true + "type": "Outdoors", + "wind_exposure": true, + "sun_exposure": true }, - "display_name": "Room_3_654deabd..Face0", "apertures": [ { - "properties": { - "revive": { - "id_num": 0, - "type": "ApertureRevivePropertiesAbridged" - }, - "ph": { - "summer_shading_factor": 0.75, - "type": "AperturePhPropertiesAbridged", - "winter_shading_factor": 0.75, - "default_monthly_shading_correction_factor": 1.0, - "install_depth": 0.1016, - "id_num": 0, - "variant_type": "_unnamed_type_" - }, - "energy": { - "type": "ApertureEnergyPropertiesAbridged" - }, - "radiance": { - "type": "ApertureRadiancePropertiesAbridged" - }, - "ph_hvac": { - "type": "AperturePhHvacPropertiesAbridged" + "display_name": "Room_11_ed80c7ba..Face0_Glz0", + "is_operable": false, + "boundary_condition": { + "view_factor": { + "type": "Autocalculate" }, - "type": "AperturePropertiesAbridged" + "type": "Outdoors", + "wind_exposure": true, + "sun_exposure": true }, - "type": "Aperture", + "identifier": "Room_11_ed80c7ba..Face0_Glz0", "geometry": { - "plane": { - "x": [ - 0.98480775301220813, - -0.17364817766693039, - 0.0 - ], - "type": "Plane", - "n": [ - 0.17364817766693039, - 0.98480775301220813, - 0.0 - ], - "o": [ - 0.89149122936767267, - -5.6571939568024794, - 2.7568536488623963 - ] - }, - "type": "Face3D", "boundary": [ [ 4.5249514121994716, @@ -4144,69 +4851,138 @@ -5.6571939568024794, 0.54314635113760423 ], - [ + [ + 0.89149122936767267, + -5.6571939568024794, + 2.7568536488623963 + ] + ], + "plane": { + "x": [ + 0.98480775301220813, + -0.17364817766693039, + 0.0 + ], + "type": "Plane", + "o": [ 0.89149122936767267, -5.6571939568024794, 2.7568536488623963 + ], + "n": [ + 0.17364817766693039, + 0.98480775301220813, + 0.0 ] - ] + }, + "type": "Face3D" }, - "is_operable": false, - "identifier": "Room_3_654deabd..Face0_Glz0", - "boundary_condition": { - "type": "Outdoors", - "view_factor": { - "type": "Autocalculate" + "properties": { + "revive": { + "type": "ApertureRevivePropertiesAbridged", + "id_num": 0 + }, + "radiance": { + "type": "ApertureRadiancePropertiesAbridged" + }, + "energy": { + "type": "ApertureEnergyPropertiesAbridged" + }, + "ph": { + "winter_shading_factor": 0.75, + "summer_shading_factor": 0.75, + "id_num": 0, + "variant_type": "_unnamed_type_", + "default_monthly_shading_correction_factor": 1.0, + "install_depth": 0.1016, + "type": "AperturePhPropertiesAbridged" + }, + "ph_hvac": { + "type": "AperturePhHvacPropertiesAbridged" }, - "sun_exposure": true, - "wind_exposure": true + "type": "AperturePropertiesAbridged" }, - "display_name": "Room_3_654deabd..Face0_Glz0" + "type": "Aperture" } - ] - }, - { + ], + "identifier": "Room_11_ed80c7ba..Face0", + "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": { + "x": [ + 0.98480775301220813, + -0.17364817766693041, + 0.0 + ], + "type": "Plane", + "o": [ + 0.0, + -5.5, + 3.3000000000000003 + ], + "n": [ + 0.17364817766693041, + 0.98480775301220813, + 0.0 + ] + }, + "type": "Face3D" + }, "properties": { "revive": { - "id_num": 0, - "type": "FaceRevivePropertiesAbridged" + "type": "FaceRevivePropertiesAbridged", + "id_num": 0 }, - "ph": { - "id_num": 0, - "type": "FacePhPropertiesAbridged" + "radiance": { + "type": "FaceRadiancePropertiesAbridged" }, "energy": { "type": "FaceEnergyPropertiesAbridged" }, - "radiance": { - "type": "FaceRadiancePropertiesAbridged" + "ph": { + "type": "FacePhPropertiesAbridged", + "id_num": 0 }, "ph_hvac": { "type": "FacePhHvacPropertiesAbridged" }, "type": "FacePropertiesAbridged" }, - "type": "Face", + "type": "Face" + }, + { + "display_name": "Room_11_ed80c7ba..Face1", + "face_type": "Wall", + "boundary_condition": { + "boundary_condition_objects": [ + "Room_4_9460264b..Face3", + "Room_4_9460264b" + ], + "type": "Surface" + }, + "identifier": "Room_11_ed80c7ba..Face1", "geometry": { - "plane": { - "x": [ - -0.1736481776669303, - -0.98480775301220813, - 0.0 - ], - "type": "Plane", - "n": [ - 0.98480775301220813, - -0.1736481776669303, - 0.0 - ], - "o": [ - 5.4164426415671443, - -6.4550649771681172, - 3.3000000000000003 - ] - }, - "type": "Face3D", "boundary": [ [ 4.6523906598326512, @@ -4228,143 +5004,74 @@ -6.4550649771681172, 3.3000000000000003 ] - ] - }, - "identifier": "Room_3_654deabd..Face1", - "face_type": "Wall", - "boundary_condition": { - "type": "Surface", - "boundary_condition_objects": [ - "Room_4_3d192209..Face3", - "Room_4_3d192209" - ] + ], + "plane": { + "x": [ + -0.1736481776669303, + -0.98480775301220813, + 0.0 + ], + "type": "Plane", + "o": [ + 5.4164426415671443, + -6.4550649771681172, + 3.3000000000000003 + ], + "n": [ + 0.98480775301220813, + -0.1736481776669303, + 0.0 + ] + }, + "type": "Face3D" }, - "display_name": "Room_3_654deabd..Face1" - }, - { "properties": { "revive": { - "id_num": 0, - "type": "FaceRevivePropertiesAbridged" + "type": "FaceRevivePropertiesAbridged", + "id_num": 0 }, - "ph": { - "id_num": 0, - "type": "FacePhPropertiesAbridged" + "radiance": { + "type": "FaceRadiancePropertiesAbridged" }, "energy": { "type": "FaceEnergyPropertiesAbridged" }, - "radiance": { - "type": "FaceRadiancePropertiesAbridged" + "ph": { + "type": "FacePhPropertiesAbridged", + "id_num": 0 }, "ph_hvac": { "type": "FacePhHvacPropertiesAbridged" }, "type": "FacePropertiesAbridged" }, - "type": "Face", - "geometry": { - "plane": { - "x": [ - -0.98480775301220813, - 0.17364817766693011, - 0.0 - ], - "type": "Plane", - "n": [ - -0.17364817766693011, - -0.98480775301220813, - 0.0 - ], - "o": [ - 4.6523906598326512, - -10.788219090421832, - 3.3000000000000003 - ] - }, - "type": "Face3D", - "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 - ] - ] - }, - "identifier": "Room_3_654deabd..Face2", + "type": "Face" + }, + { + "display_name": "Room_11_ed80c7ba..Face2", "face_type": "Wall", "boundary_condition": { - "type": "Outdoors", "view_factor": { "type": "Autocalculate" }, - "sun_exposure": true, - "wind_exposure": true + "type": "Outdoors", + "wind_exposure": true, + "sun_exposure": true }, - "display_name": "Room_3_654deabd..Face2", "apertures": [ { - "properties": { - "revive": { - "id_num": 0, - "type": "ApertureRevivePropertiesAbridged" - }, - "ph": { - "summer_shading_factor": 0.75, - "type": "AperturePhPropertiesAbridged", - "winter_shading_factor": 0.75, - "default_monthly_shading_correction_factor": 1.0, - "install_depth": 0.1016, - "id_num": 0, - "variant_type": "_unnamed_type_" - }, - "energy": { - "type": "ApertureEnergyPropertiesAbridged" - }, - "radiance": { - "type": "ApertureRadiancePropertiesAbridged" - }, - "ph_hvac": { - "type": "AperturePhHvacPropertiesAbridged" + "display_name": "Room_11_ed80c7ba..Face2_Glz0", + "is_operable": false, + "boundary_condition": { + "view_factor": { + "type": "Autocalculate" }, - "type": "AperturePropertiesAbridged" + "type": "Outdoors", + "wind_exposure": true, + "sun_exposure": true }, - "type": "Aperture", + "identifier": "Room_11_ed80c7ba..Face2_Glz0", "geometry": { - "plane": { - "x": [ - -0.98480775301220813, - 0.17364817766692994, - 0.0 - ], - "type": "Plane", - "n": [ - -0.17364817766692994, - -0.98480775301220813, - 0.0 - ], - "o": [ - 3.7608994304649785, - -10.631025133619353, - 2.7568536488623963 - ] - }, - "type": "Face3D", "boundary": [ [ 0.12743924763317918, @@ -4386,146 +5093,146 @@ -10.631025133619353, 2.7568536488623963 ] - ] + ], + "plane": { + "x": [ + -0.98480775301220813, + 0.17364817766692994, + 0.0 + ], + "type": "Plane", + "o": [ + 3.7608994304649785, + -10.631025133619353, + 2.7568536488623963 + ], + "n": [ + -0.17364817766692994, + -0.98480775301220813, + 0.0 + ] + }, + "type": "Face3D" }, - "is_operable": false, - "identifier": "Room_3_654deabd..Face2_Glz0", - "boundary_condition": { - "type": "Outdoors", - "view_factor": { - "type": "Autocalculate" + "properties": { + "revive": { + "type": "ApertureRevivePropertiesAbridged", + "id_num": 0 + }, + "radiance": { + "type": "ApertureRadiancePropertiesAbridged" + }, + "energy": { + "type": "ApertureEnergyPropertiesAbridged" + }, + "ph": { + "winter_shading_factor": 0.75, + "summer_shading_factor": 0.75, + "id_num": 0, + "variant_type": "_unnamed_type_", + "default_monthly_shading_correction_factor": 1.0, + "install_depth": 0.1016, + "type": "AperturePhPropertiesAbridged" }, - "sun_exposure": true, - "wind_exposure": true + "ph_hvac": { + "type": "AperturePhHvacPropertiesAbridged" + }, + "type": "AperturePropertiesAbridged" }, - "display_name": "Room_3_654deabd..Face2_Glz0" + "type": "Aperture" } - ] - }, - { - "properties": { - "revive": { - "id_num": 0, - "type": "FaceRevivePropertiesAbridged" - }, - "ph": { - "id_num": 0, - "type": "FacePhPropertiesAbridged" - }, - "energy": { - "type": "FaceEnergyPropertiesAbridged" - }, - "radiance": { - "type": "FaceRadiancePropertiesAbridged" - }, - "ph_hvac": { - "type": "FacePhHvacPropertiesAbridged" - }, - "type": "FacePropertiesAbridged" - }, - "type": "Face", + ], + "identifier": "Room_11_ed80c7ba..Face2", "geometry": { - "plane": { - "x": [ - 0.17364817766693036, - 0.98480775301220813, - 0.0 - ], - "type": "Plane", - "n": [ - -0.98480775301220813, - 0.17364817766693036, - 0.0 - ], - "o": [ - -0.76405198173449351, - -9.8331541132537161, - 3.3000000000000003 - ] - }, - "type": "Face3D", "boundary": [ [ - 0.0, - -5.5, + -0.76405198173449351, + -9.8331541132537161, 3.3000000000000003 ], [ - 0.0, - -5.5, + -0.76405198173449351, + -9.8331541132537161, 0.0 ], [ - -0.76405198173449351, - -9.8331541132537161, + 4.6523906598326512, + -10.788219090421832, 0.0 ], [ - -0.76405198173449351, - -9.8331541132537161, + 4.6523906598326512, + -10.788219090421832, 3.3000000000000003 ] - ] + ], + "plane": { + "x": [ + -0.98480775301220813, + 0.17364817766693011, + 0.0 + ], + "type": "Plane", + "o": [ + 4.6523906598326512, + -10.788219090421832, + 3.3000000000000003 + ], + "n": [ + -0.17364817766693011, + -0.98480775301220813, + 0.0 + ] + }, + "type": "Face3D" + }, + "properties": { + "revive": { + "type": "FaceRevivePropertiesAbridged", + "id_num": 0 + }, + "radiance": { + "type": "FaceRadiancePropertiesAbridged" + }, + "energy": { + "type": "FaceEnergyPropertiesAbridged" + }, + "ph": { + "type": "FacePhPropertiesAbridged", + "id_num": 0 + }, + "ph_hvac": { + "type": "FacePhHvacPropertiesAbridged" + }, + "type": "FacePropertiesAbridged" }, - "identifier": "Room_3_654deabd..Face3", + "type": "Face" + }, + { + "display_name": "Room_11_ed80c7ba..Face3", "face_type": "Wall", "boundary_condition": { - "type": "Outdoors", "view_factor": { "type": "Autocalculate" }, - "sun_exposure": true, - "wind_exposure": true + "type": "Outdoors", + "wind_exposure": true, + "sun_exposure": true }, - "display_name": "Room_3_654deabd..Face3", "apertures": [ { - "properties": { - "revive": { - "id_num": 0, - "type": "ApertureRevivePropertiesAbridged" - }, - "ph": { - "summer_shading_factor": 0.75, - "type": "AperturePhPropertiesAbridged", - "winter_shading_factor": 0.75, - "default_monthly_shading_correction_factor": 1.0, - "install_depth": 0.1016, - "id_num": 0, - "variant_type": "_unnamed_type_" - }, - "energy": { - "type": "ApertureEnergyPropertiesAbridged" - }, - "radiance": { - "type": "ApertureRadiancePropertiesAbridged" - }, - "ph_hvac": { - "type": "AperturePhHvacPropertiesAbridged" + "display_name": "Room_11_ed80c7ba..Face3_Glz0", + "is_operable": false, + "boundary_condition": { + "view_factor": { + "type": "Autocalculate" }, - "type": "AperturePropertiesAbridged" + "type": "Outdoors", + "wind_exposure": true, + "sun_exposure": true }, - "type": "Aperture", + "identifier": "Room_11_ed80c7ba..Face3_Glz0", "geometry": { - "plane": { - "x": [ - 0.17364817766693039, - 0.98480775301220813, - 0.0 - ], - "type": "Plane", - "n": [ - -0.98480775301220813, - 0.17364817766693039, - 0.0 - ], - "o": [ - -0.63829681629251001, - -9.1199611297595773, - 2.7568536488623963 - ] - }, - "type": "Face3D", "boundary": [ [ -0.12575516544198348, @@ -4547,64 +5254,129 @@ -9.1199611297595773, 2.7568536488623963 ] - ] + ], + "plane": { + "x": [ + 0.17364817766693039, + 0.98480775301220813, + 0.0 + ], + "type": "Plane", + "o": [ + -0.63829681629251001, + -9.1199611297595773, + 2.7568536488623963 + ], + "n": [ + -0.98480775301220813, + 0.17364817766693039, + 0.0 + ] + }, + "type": "Face3D" }, - "is_operable": false, - "identifier": "Room_3_654deabd..Face3_Glz0", - "boundary_condition": { - "type": "Outdoors", - "view_factor": { - "type": "Autocalculate" + "properties": { + "revive": { + "type": "ApertureRevivePropertiesAbridged", + "id_num": 0 + }, + "radiance": { + "type": "ApertureRadiancePropertiesAbridged" + }, + "energy": { + "type": "ApertureEnergyPropertiesAbridged" + }, + "ph": { + "winter_shading_factor": 0.75, + "summer_shading_factor": 0.75, + "id_num": 0, + "variant_type": "_unnamed_type_", + "default_monthly_shading_correction_factor": 1.0, + "install_depth": 0.1016, + "type": "AperturePhPropertiesAbridged" + }, + "ph_hvac": { + "type": "AperturePhHvacPropertiesAbridged" }, - "sun_exposure": true, - "wind_exposure": true + "type": "AperturePropertiesAbridged" }, - "display_name": "Room_3_654deabd..Face3_Glz0" + "type": "Aperture" } - ] - }, - { + ], + "identifier": "Room_11_ed80c7ba..Face3", + "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": { + "x": [ + 0.17364817766693036, + 0.98480775301220813, + 0.0 + ], + "type": "Plane", + "o": [ + -0.76405198173449351, + -9.8331541132537161, + 3.3000000000000003 + ], + "n": [ + -0.98480775301220813, + 0.17364817766693036, + 0.0 + ] + }, + "type": "Face3D" + }, "properties": { "revive": { - "id_num": 0, - "type": "FaceRevivePropertiesAbridged" + "type": "FaceRevivePropertiesAbridged", + "id_num": 0 }, - "ph": { - "id_num": 0, - "type": "FacePhPropertiesAbridged" + "radiance": { + "type": "FaceRadiancePropertiesAbridged" }, "energy": { "type": "FaceEnergyPropertiesAbridged" }, - "radiance": { - "type": "FaceRadiancePropertiesAbridged" + "ph": { + "type": "FacePhPropertiesAbridged", + "id_num": 0 }, "ph_hvac": { "type": "FacePhHvacPropertiesAbridged" }, "type": "FacePropertiesAbridged" }, - "type": "Face", + "type": "Face" + }, + { + "display_name": "Room_11_ed80c7ba..Face4", + "face_type": "Floor", + "boundary_condition": { + "type": "Ground" + }, + "identifier": "Room_11_ed80c7ba..Face4", "geometry": { - "plane": { - "x": [ - 1.0, - 0.0, - 0.0 - ], - "type": "Plane", - "n": [ - 0.0, - 0.0, - -1.0 - ], - "o": [ - 5.4164426415671443, - -6.4550649771681172, - 0.0 - ] - }, - "type": "Face3D", "boundary": [ [ 5.4164426415671443, @@ -4626,139 +5398,74 @@ -5.5, 0.0 ] - ] - }, - "identifier": "Room_3_654deabd..Face4", - "face_type": "Floor", - "boundary_condition": { - "type": "Ground" + ], + "plane": { + "x": [ + 1.0, + 0.0, + 0.0 + ], + "type": "Plane", + "o": [ + 5.4164426415671443, + -6.4550649771681172, + 0.0 + ], + "n": [ + 0.0, + 0.0, + -1.0 + ] + }, + "type": "Face3D" }, - "display_name": "Room_3_654deabd..Face4" - }, - { "properties": { "revive": { - "id_num": 0, - "type": "FaceRevivePropertiesAbridged" + "type": "FaceRevivePropertiesAbridged", + "id_num": 0 }, - "ph": { - "id_num": 0, - "type": "FacePhPropertiesAbridged" + "radiance": { + "type": "FaceRadiancePropertiesAbridged" }, "energy": { "type": "FaceEnergyPropertiesAbridged" }, - "radiance": { - "type": "FaceRadiancePropertiesAbridged" + "ph": { + "type": "FacePhPropertiesAbridged", + "id_num": 0 }, "ph_hvac": { "type": "FacePhHvacPropertiesAbridged" }, "type": "FacePropertiesAbridged" }, - "type": "Face", - "geometry": { - "plane": { - "x": [ - 1.0, - 0.0, - 0.0 - ], - "type": "Plane", - "n": [ - 0.0, - 0.0, - 1.0 - ], - "o": [ - -0.76405198173449351, - -9.8331541132537161, - 3.3000000000000003 - ] - }, - "type": "Face3D", - "boundary": [ - [ - 0.0, - -5.5, - 3.3000000000000003 - ], - [ - -0.76405198173449351, - -9.8331541132537161, - 3.3000000000000003 - ], - [ - 4.6523906598326512, - -10.788219090421832, - 3.3000000000000003 - ], - [ - 5.4164426415671443, - -6.4550649771681172, - 3.3000000000000003 - ] - ] - }, - "identifier": "Room_3_654deabd..Face5", + "type": "Face" + }, + { + "display_name": "Room_11_ed80c7ba..Face5", "face_type": "RoofCeiling", "boundary_condition": { - "type": "Outdoors", "view_factor": { "type": "Autocalculate" }, - "sun_exposure": true, - "wind_exposure": true + "type": "Outdoors", + "wind_exposure": true, + "sun_exposure": true }, - "display_name": "Room_3_654deabd..Face5", "apertures": [ { - "properties": { - "revive": { - "id_num": 0, - "type": "ApertureRevivePropertiesAbridged" - }, - "ph": { - "summer_shading_factor": 0.75, - "type": "AperturePhPropertiesAbridged", - "winter_shading_factor": 0.75, - "default_monthly_shading_correction_factor": 1.0, - "install_depth": 0.1016, - "id_num": 0, - "variant_type": "_unnamed_type_" - }, - "energy": { - "type": "ApertureEnergyPropertiesAbridged" - }, - "radiance": { - "type": "ApertureRadiancePropertiesAbridged" - }, - "ph_hvac": { - "type": "AperturePhHvacPropertiesAbridged" + "display_name": "Room_11_ed80c7ba..Face5_Glz0", + "is_operable": false, + "boundary_condition": { + "view_factor": { + "type": "Autocalculate" }, - "type": "AperturePropertiesAbridged" + "type": "Outdoors", + "wind_exposure": true, + "sun_exposure": true }, - "type": "Aperture", + "identifier": "Room_11_ed80c7ba..Face5_Glz0", "geometry": { - "plane": { - "x": [ - 1.0, - 0.0, - 0.0 - ], - "type": "Plane", - "n": [ - 0.0, - 0.0, - 1.0 - ], - "o": [ - 3.9710638220646373, - -10.013777334829634, - 3.3000000000000003 - ] - }, - "type": "Face3D", "boundary": [ [ 0.6813268377680135, @@ -4780,181 +5487,351 @@ -6.9497746774215505, 3.3000000000000003 ] - ] + ], + "plane": { + "x": [ + 1.0, + 0.0, + 0.0 + ], + "type": "Plane", + "o": [ + 3.9710638220646373, + -10.013777334829634, + 3.3000000000000003 + ], + "n": [ + 0.0, + 0.0, + 1.0 + ] + }, + "type": "Face3D" }, - "is_operable": false, - "identifier": "Room_3_654deabd..Face5_Glz0", - "boundary_condition": { - "type": "Outdoors", - "view_factor": { - "type": "Autocalculate" + "properties": { + "revive": { + "type": "ApertureRevivePropertiesAbridged", + "id_num": 0 + }, + "radiance": { + "type": "ApertureRadiancePropertiesAbridged" + }, + "energy": { + "type": "ApertureEnergyPropertiesAbridged" + }, + "ph": { + "winter_shading_factor": 0.75, + "summer_shading_factor": 0.75, + "id_num": 0, + "variant_type": "_unnamed_type_", + "default_monthly_shading_correction_factor": 1.0, + "install_depth": 0.1016, + "type": "AperturePhPropertiesAbridged" }, - "sun_exposure": true, - "wind_exposure": true + "ph_hvac": { + "type": "AperturePhHvacPropertiesAbridged" + }, + "type": "AperturePropertiesAbridged" }, - "display_name": "Room_3_654deabd..Face5_Glz0" + "type": "Aperture" } - ] + ], + "identifier": "Room_11_ed80c7ba..Face5", + "geometry": { + "boundary": [ + [ + 0.0, + -5.5, + 3.3000000000000003 + ], + [ + -0.76405198173449351, + -9.8331541132537161, + 3.3000000000000003 + ], + [ + 4.6523906598326512, + -10.788219090421832, + 3.3000000000000003 + ], + [ + 5.4164426415671443, + -6.4550649771681172, + 3.3000000000000003 + ] + ], + "plane": { + "x": [ + 1.0, + 0.0, + 0.0 + ], + "type": "Plane", + "o": [ + -0.76405198173449351, + -9.8331541132537161, + 3.3000000000000003 + ], + "n": [ + 0.0, + 0.0, + 1.0 + ] + }, + "type": "Face3D" + }, + "properties": { + "revive": { + "type": "FaceRevivePropertiesAbridged", + "id_num": 0 + }, + "radiance": { + "type": "FaceRadiancePropertiesAbridged" + }, + "energy": { + "type": "FaceEnergyPropertiesAbridged" + }, + "ph": { + "type": "FacePhPropertiesAbridged", + "id_num": 0 + }, + "ph_hvac": { + "type": "FacePhHvacPropertiesAbridged" + }, + "type": "FacePropertiesAbridged" + }, + "type": "Face" } ], + "story": "1", + "identifier": "Room_11_ed80c7ba", "properties": { "revive": { "type": "RoomRevivePropertiesAbridged" }, - "ph": { - "ph_bldg_segment_id": "ae4ab714-315a-4c85-8dc6-b10e3f44423a", - "type": "RoomPhPropertiesAbridged", - "spaces": [ - { - "properties": { - "type": "SpaceProperties", - "ph": { - "_v_sup": null, - "type": "SpacePhProperties", - "_v_eta": null, - "id_num": 0, - "_v_tran": null - }, - "energy": { - "id_num": 0, - "type": "SpaceEnergyProperties" - } - }, - "quantity": 1, - "number": "101", - "volumes": [ - { - "floor": { - "geometry": { - "plane": { - "x": [ - 1.0, - 0.0, - 0.0 - ], - "type": "Plane", - "n": [ - 0.0, - 0.0, - 1.0 - ], - "o": [ - -0.12690121986096739, - -9.3870163468138124, - 0.0 - ] + "radiance": { + "type": "RoomRadiancePropertiesAbridged" + }, + "energy": { + "electric_equipment": { + "schedule": "Generic Office Equipment", + "latent_fraction": 0.0, + "identifier": "Generic Office Equipment_b910ced5", + "watts_per_area": 10.330000000000000, + "radiant_fraction": 0.5, + "type": "ElectricEquipmentAbridged", + "properties": { + "ph": { + "equipment_collection": { + "equipment_set": { + "c0b6cfbd-300c-4619-b6e6-01e62cc0b0fb": { + "display_name": "Kitchen cooking", + "comment": "default", + "reference_energy_norm": 1, + "_cooktop_type": { + "value": "1-ELECTRICITY" }, - "type": "Face3D", - "boundary": [ - [ - -0.12690121986096739, - -9.3870163468138124, - 0.0 - ], - [ - 3.1229643650793193, - -9.9600553331146831, - 0.0 - ], - [ - 3.6960033513801895, - -6.7101897481743960, - 0.0 - ], - [ - 0.44613776643990277, - -6.1371507618735270, - 0.0 - ] - ] + "combined_energy_factor": 0, + "identifier": "c0b6cfbd-300c-4619-b6e6-01e62cc0b0fb", + "energy_demand": 0.20000000000000001, + "reference_quantity": 1, + "user_data": {}, + "in_conditioned_space": true, + "energy_demand_per_use": 0, + "equipment_type": "PhCooktop", + "quantity": 1 }, - "identifier": "86366593-db83-47ef-968c-bd99aff3d63d", - "floor_segments": [ - { - "weighted_floor_area": 10.890000000000001, - "net_floor_area": 10.890000000000001, - "reference_point": { - "x": 1.7845510657596111, - "type": "Point3D", - "y": -8.0486030474941046, - "z": 0.11000000000000001 - }, - "net_area_factor": 1.0, - "geometry": { - "plane": { - "x": [ - 1.0, - 0.0, - 0.0 - ], - "type": "Plane", - "n": [ - 0.0, - 0.0, - 1.0 - ], - "o": [ - -0.12690121986096739, - -9.3870163468138124, - 0.0 - ] - }, - "type": "Face3D", - "boundary": [ - [ - -0.12690121986096739, - -9.3870163468138124, - 0.0 - ], - [ - 3.1229643650793193, - -9.9600553331146831, - 0.0 - ], - [ - 3.6960033513801895, - -6.7101897481743960, - 0.0 - ], - [ - 0.44613776643990277, - -6.1371507618735270, - 0.0 - ] - ] - }, - "identifier": "e7d4cede-5a5d-4ce7-8ef1-2ded32a01709", - "user_data": {}, - "floor_area": 10.890000000000001, - "weighted_net_floor_area": 10.890000000000001, - "display_name": "e7d4cede-5a5d-4ce7-8ef1-2ded32a01709", - "weighting_factor": 1.0 - } - ], - "user_data": {}, - "display_name": "86366593-db83-47ef-968c-bd99aff3d63d" - }, + "0f89b15e-c703-412d-9951-00f8a52c9fa4": { + "display_name": "Kitchen fridge/freeze combo", + "comment": "default", + "reference_energy_norm": 1, + "combined_energy_factor": 0, + "identifier": "0f89b15e-c703-412d-9951-00f8a52c9fa4", + "energy_demand": 1.2200000000000000, + "reference_quantity": 4, + "user_data": {}, + "in_conditioned_space": true, + "energy_demand_per_use": 0, + "equipment_type": "PhFridgeFreezer", + "quantity": 1 + }, + "5d74ce53-a0de-4a66-af2f-582048e3e748": { + "display_name": "PHIUS+ Interior Lighting", + "comment": "default", + "reference_energy_norm": 1, + "frac_high_efficiency": 1.0, + "combined_energy_factor": 0, + "identifier": "5d74ce53-a0de-4a66-af2f-582048e3e748", + "energy_demand": 0, + "reference_quantity": 6, + "user_data": {}, + "in_conditioned_space": true, + "energy_demand_per_use": 0, + "equipment_type": "PhPhiusLightingInterior", + "quantity": 1 + }, + "0c458b01-ee89-459f-a108-b8b93c016dbe": { + "display_name": "PHIUS+ MELS", + "comment": "default", + "reference_energy_norm": 1, + "combined_energy_factor": 0, + "identifier": "0c458b01-ee89-459f-a108-b8b93c016dbe", + "energy_demand": 0, + "reference_quantity": 3, + "user_data": {}, + "in_conditioned_space": true, + "energy_demand_per_use": 0, + "equipment_type": "PhPhiusMEL", + "quantity": 1 + }, + "77876772-90ca-484b-b1df-958270b36ae9": { + "display_name": "Laundry - dryer", + "comment": "default", + "gas_efficiency_factor": 2.6699999999999999, + "reference_energy_norm": 2, + "combined_energy_factor": 3.9300000000000002, + "field_utilization_factor": 1.1799999999999999, + "identifier": "77876772-90ca-484b-b1df-958270b36ae9", + "energy_demand": 0, + "reference_quantity": 1, + "user_data": {}, + "_dryer_type": { + "value": "5-ELECTRIC EXHAUST AIR DRYER" + }, + "gas_consumption": 0, + "field_utilization_factor_type": 1, + "in_conditioned_space": true, + "energy_demand_per_use": 0, + "equipment_type": "PhClothesDryer", + "quantity": 1 + }, + "f80d55eb-69e3-42f3-a8ea-bcb80ca965de": { + "display_name": "Laundry - washer", + "modified_energy_factor": 2.7000000000000002, + "comment": "default", + "utilization_factor": 1.0, + "reference_energy_norm": 2, + "capacity": 0.12740000000000001, + "combined_energy_factor": 0, + "identifier": "f80d55eb-69e3-42f3-a8ea-bcb80ca965de", + "energy_demand": 120, + "reference_quantity": 1, + "user_data": {}, + "_water_connection": { + "value": "2-COLD WATER CONNECTION" + }, + "in_conditioned_space": true, + "energy_demand_per_use": 0, + "equipment_type": "PhClothesWasher", + "quantity": 1 + }, + "93dce07c-19d9-4703-9b13-485cac9d4f77": { + "display_name": "PHIUS+ Exterior Lighting", + "comment": "default", + "reference_energy_norm": 1, + "frac_high_efficiency": 1.0, + "combined_energy_factor": 0, + "identifier": "93dce07c-19d9-4703-9b13-485cac9d4f77", + "energy_demand": 0, + "reference_quantity": 6, + "user_data": {}, + "in_conditioned_space": false, + "energy_demand_per_use": 0, + "equipment_type": "PhPhiusLightingExterior", + "quantity": 1 + }, + "663ca50f-c323-4a8a-ad51-66fbb063d10a": { + "display_name": "Kitchen dishwasher", + "comment": "default", + "reference_energy_norm": 2, + "capacity": 12, + "combined_energy_factor": 0, + "identifier": "663ca50f-c323-4a8a-ad51-66fbb063d10a", + "energy_demand": 269, + "capacity_type": 1, + "reference_quantity": 1, + "user_data": {}, + "_water_connection": { + "value": "2-COLD WATER CONNECTION" + }, + "in_conditioned_space": true, + "energy_demand_per_use": 0, + "equipment_type": "PhDishwasher", + "quantity": 1 + } + } + }, + "type": "ElectricEquipmentPhProperties" + }, + "type": "ElectricEquipmentProperties", + "revive": { + "type": "ElectricEquipmentReviveProperties", + "id_num": 0 + } + }, + "lost_fraction": 0.0 + }, + "hvac": "Room_11_ed80c7ba Ideal Loads Air System", + "construction_set": "ConstructionSet_a1814837", + "service_hot_water": { + "schedule": "Always On", + "sensible_fraction": 0.20000000000000001, + "latent_fraction": 0.050000000000000003, + "identifier": "Room_11_ed80c7ba_service_hot_water", + "flow_per_area": 5.0000000000000002e-05, + "target_temperature": 60.0, + "type": "ServiceHotWaterAbridged", + "properties": { + "type": "ServiceHotWaterProperties", + "revive": { + "type": "ServiceHotWaterReviveProperties", + "id_num": 0 + } + } + }, + "people": { + "people_per_area": 0.050000000000000003, + "latent_fraction": { + "type": "Autocalculate" + }, + "occupancy_schedule": "Generic Office Occupancy", + "identifier": "Generic Office People", + "radiant_fraction": 0.29999999999999999, + "type": "PeopleAbridged", + "properties": { + "ph": { + "number_bedrooms": 1, + "dwellings": { + "num_dwellings": 1, + "identifier": "115050e2-247c-450a-9ea9-5adc3f0453db" + }, + "id_num": 0, + "number_people": 1, + "type": "PeoplePhProperties" + }, + "type": "PeopleProperties", + "revive": { + "type": "PeopleReviveProperties", + "id_num": 0 + } + }, + "activity_schedule": "Seated Adult Activity" + }, + "type": "RoomEnergyPropertiesAbridged", + "program_type": "Generic Office Program" + }, + "ph": { + "ph_foundations": [], + "ph_bldg_segment_id": "610a5608-d5d4-4d0f-b76e-b7b29a1a5edf", + "spaces": [ + { + "volumes": [ + { + "display_name": "e2578f37-7559-440f-a58b-f66732666ed8", + "avg_ceiling_height": 2.75, + "identifier": "e2578f37-7559-440f-a58b-f66732666ed8", "geometry": [ { - "plane": { - "x": [ - 0.17364817766693041, - 0.98480775301220813, - 0.0 - ], - "type": "Plane", - "n": [ - -0.98480775301220813, - 0.17364817766693041, - 0.0 - ], - "o": [ - -0.12690121986096739, - -9.3870163468138124, - 2.75 - ] - }, - "type": "Face3D", "boundary": [ [ -0.12690121986096739, @@ -4976,28 +5853,28 @@ -9.3870163468138124, 0.0 ] - ] - }, - { + ], "plane": { "x": [ + 0.17364817766693041, 0.98480775301220813, - -0.17364817766692997, 0.0 ], "type": "Plane", - "n": [ - 0.17364817766692997, - 0.98480775301220813, - 0.0 - ], "o": [ - 0.44613776643990277, - -6.1371507618735270, + -0.12690121986096739, + -9.3870163468138124, 2.75 + ], + "n": [ + -0.98480775301220813, + 0.17364817766693041, + 0.0 ] }, - "type": "Face3D", + "type": "Face3D" + }, + { "boundary": [ [ 0.44613776643990277, @@ -5019,28 +5896,28 @@ -6.1371507618735270, 0.0 ] - ] - }, - { + ], "plane": { "x": [ - -0.17364817766693033, - -0.98480775301220813, + 0.98480775301220813, + -0.17364817766692997, 0.0 ], "type": "Plane", + "o": [ + 0.44613776643990277, + -6.1371507618735270, + 2.75 + ], "n": [ + 0.17364817766692997, 0.98480775301220813, - -0.17364817766693033, 0.0 - ], - "o": [ - 3.6960033513801895, - -6.7101897481743960, - 2.75 ] }, - "type": "Face3D", + "type": "Face3D" + }, + { "boundary": [ [ 3.6960033513801895, @@ -5062,28 +5939,28 @@ -6.7101897481743960, 0.0 ] - ] - }, - { + ], "plane": { "x": [ - -0.98480775301220802, - 0.1736481776669305, + -0.17364817766693033, + -0.98480775301220813, 0.0 ], "type": "Plane", - "n": [ - -0.1736481776669305, - -0.98480775301220802, - 0.0 - ], "o": [ - 3.1229643650793193, - -9.9600553331146831, + 3.6960033513801895, + -6.7101897481743960, 2.75 + ], + "n": [ + 0.98480775301220813, + -0.17364817766693033, + 0.0 ] }, - "type": "Face3D", + "type": "Face3D" + }, + { "boundary": [ [ 3.1229643650793193, @@ -5105,9 +5982,50 @@ -9.9600553331146831, 0.0 ] - ] + ], + "plane": { + "x": [ + -0.98480775301220802, + 0.1736481776669305, + 0.0 + ], + "type": "Plane", + "o": [ + 3.1229643650793193, + -9.9600553331146831, + 2.75 + ], + "n": [ + -0.1736481776669305, + -0.98480775301220802, + 0.0 + ] + }, + "type": "Face3D" }, { + "boundary": [ + [ + 0.44613776643990277, + -6.1371507618735270, + 0.0 + ], + [ + 3.6960033513801895, + -6.7101897481743960, + 0.0 + ], + [ + 3.1229643650793193, + -9.9600553331146831, + 0.0 + ], + [ + -0.12690121986096739, + -9.3870163468138124, + 0.0 + ] + ], "plane": { "x": [ 1.0, @@ -5115,42 +6033,152 @@ 0.0 ], "type": "Plane", + "o": [ + 0.44613776643990277, + -6.1371507618735270, + 0.0 + ], "n": [ 0.0, 0.0, -1.0 + ] + }, + "type": "Face3D" + }, + { + "boundary": [ + [ + 3.1229643650793193, + -9.9600553331146831, + 2.75 ], - "o": [ + [ + 3.6960033513801895, + -6.7101897481743960, + 2.75 + ], + [ 0.44613776643990277, -6.1371507618735270, + 2.75 + ], + [ + -0.12690121986096739, + -9.3870163468138124, + 2.75 + ] + ], + "plane": { + "x": [ + 1.0, + 0.0, 0.0 + ], + "type": "Plane", + "o": [ + 3.1229643650793193, + -9.9600553331146831, + 2.75 + ], + "n": [ + 0.0, + 0.0, + 1.0 ] }, - "type": "Face3D", + "type": "Face3D" + } + ], + "user_data": {}, + "floor": { + "display_name": "42c16480-0b6c-40b5-962b-7267b4f989e7", + "floor_segments": [ + { + "display_name": "59564e42-41a1-4690-a123-2185052369fe", + "reference_point": { + "y": -8.0486030474941046, + "x": 1.7845510657596111, + "type": "Point3D", + "z": 0.11000000000000001 + }, + "floor_area": 10.890000000000001, + "weighted_floor_area": 10.890000000000001, + "net_area_factor": 1.0, + "identifier": "59564e42-41a1-4690-a123-2185052369fe", + "weighting_factor": 1.0, + "geometry": { + "boundary": [ + [ + -0.12690121986096739, + -9.3870163468138124, + 0.0 + ], + [ + 3.1229643650793193, + -9.9600553331146831, + 0.0 + ], + [ + 3.6960033513801895, + -6.7101897481743960, + 0.0 + ], + [ + 0.44613776643990277, + -6.1371507618735270, + 0.0 + ] + ], + "plane": { + "x": [ + 1.0, + 0.0, + 0.0 + ], + "type": "Plane", + "o": [ + -0.12690121986096739, + -9.3870163468138124, + 0.0 + ], + "n": [ + 0.0, + 0.0, + 1.0 + ] + }, + "type": "Face3D" + }, + "user_data": {}, + "net_floor_area": 10.890000000000001, + "weighted_net_floor_area": 10.890000000000001 + } + ], + "identifier": "42c16480-0b6c-40b5-962b-7267b4f989e7", + "geometry": { "boundary": [ [ - 0.44613776643990277, - -6.1371507618735270, + -0.12690121986096739, + -9.3870163468138124, 0.0 ], [ - 3.6960033513801895, - -6.7101897481743960, + 3.1229643650793193, + -9.9600553331146831, 0.0 ], [ - 3.1229643650793193, - -9.9600553331146831, + 3.6960033513801895, + -6.7101897481743960, 0.0 ], [ - -0.12690121986096739, - -9.3870163468138124, + 0.44613776643990277, + -6.1371507618735270, 0.0 ] - ] - }, - { + ], "plane": { "x": [ 1.0, @@ -5158,477 +6186,336 @@ 0.0 ], "type": "Plane", + "o": [ + -0.12690121986096739, + -9.3870163468138124, + 0.0 + ], "n": [ 0.0, 0.0, 1.0 - ], - "o": [ - 3.1229643650793193, - -9.9600553331146831, - 2.75 ] }, - "type": "Face3D", - "boundary": [ - [ - 3.1229643650793193, - -9.9600553331146831, - 2.75 - ], - [ - 3.6960033513801895, - -6.7101897481743960, - 2.75 - ], - [ - 0.44613776643990277, - -6.1371507618735270, - 2.75 - ], - [ - -0.12690121986096739, - -9.3870163468138124, - 2.75 - ] - ] - } - ], - "identifier": "5447e11b-af9a-465f-a422-c63431b9f217", - "user_data": {}, - "avg_ceiling_height": 2.75, - "display_name": "5447e11b-af9a-465f-a422-c63431b9f217" + "type": "Face3D" + }, + "user_data": {} + } } ], - "identifier": "5c5f6e05-ba82-4355-a3fd-d24f5f59b1da", + "name": "Room_11", + "number": "101", + "identifier": "c37b1ae5-e8a5-41ea-9cf9-6df0e975f187", "user_data": {}, - "name": "Room_3", - "wufi_type": 99 - } - ], - "specific_heat_capacity": "1-LIGHTWEIGHT", - "ph_foundations": [] - }, - "energy": { - "electric_equipment": { - "schedule": "Generic Office Equipment", - "properties": { - "ph": { - "equipment_collection": { - "equipment_set": { - "8591e81d-9753-467a-87ed-d09c721aa4b8": { - "equipment_type": "PhPhiusLightingInterior", - "reference_energy_norm": 1, - "energy_demand_per_use": 0, - "energy_demand": 0, - "frac_high_efficiency": 1.0, - "quantity": 1, - "reference_quantity": 6, - "comment": "default", - "identifier": "8591e81d-9753-467a-87ed-d09c721aa4b8", - "in_conditioned_space": true, - "user_data": {}, - "display_name": "PHIUS+ Interior Lighting", - "combined_energy_factor": 0 - }, - "aee7b203-f128-4380-b41b-4b1515ab4274": { - "equipment_type": "PhPhiusLightingExterior", - "reference_energy_norm": 1, - "energy_demand_per_use": 0, - "energy_demand": 0, - "frac_high_efficiency": 1.0, - "quantity": 1, - "reference_quantity": 6, - "comment": "default", - "identifier": "aee7b203-f128-4380-b41b-4b1515ab4274", - "in_conditioned_space": false, - "user_data": {}, - "display_name": "PHIUS+ Exterior Lighting", - "combined_energy_factor": 0 - }, - "63c30b01-e99b-49b7-8040-b791bde9dc39": { - "equipment_type": "PhPhiusMEL", - "reference_energy_norm": 1, - "energy_demand_per_use": 0, - "energy_demand": 0, - "quantity": 1, - "reference_quantity": 3, - "comment": "default", - "identifier": "63c30b01-e99b-49b7-8040-b791bde9dc39", - "in_conditioned_space": true, - "user_data": {}, - "display_name": "PHIUS+ MELS", - "combined_energy_factor": 0 - }, - "4ee90ddf-657e-4879-982d-ccc3d00571e8": { - "equipment_type": "PhClothesWasher", - "reference_energy_norm": 2, - "energy_demand_per_use": 0, - "energy_demand": 120, - "_water_connection": { - "value": "2-COLD WATER CONNECTION" - }, - "quantity": 1, - "capacity": 0.12740000000000001, - "modified_energy_factor": 2.7000000000000002, - "reference_quantity": 1, - "comment": "default", - "identifier": "4ee90ddf-657e-4879-982d-ccc3d00571e8", - "in_conditioned_space": true, - "user_data": {}, - "utilization_factor": 1.0, - "display_name": "Laundry - washer", - "combined_energy_factor": 0 - }, - "489809fe-0e72-45a2-9a11-e3c0f53a6ea1": { - "equipment_type": "PhDishwasher", - "reference_energy_norm": 2, - "energy_demand_per_use": 0, - "energy_demand": 269, - "capacity_type": 1, - "quantity": 1, - "_water_connection": { - "value": "2-COLD WATER CONNECTION" - }, - "capacity": 12, - "reference_quantity": 1, - "comment": "default", - "identifier": "489809fe-0e72-45a2-9a11-e3c0f53a6ea1", - "in_conditioned_space": true, - "user_data": {}, - "display_name": "Kitchen dishwasher", - "combined_energy_factor": 0 - }, - "abb349b2-7e79-478c-9cf0-42806e24931f": { - "equipment_type": "PhCooktop", - "reference_energy_norm": 1, - "energy_demand_per_use": 0, - "energy_demand": 0.20000000000000001, - "quantity": 1, - "reference_quantity": 1, - "_cooktop_type": { - "value": "1-ELECTRICITY" - }, - "comment": "default", - "identifier": "abb349b2-7e79-478c-9cf0-42806e24931f", - "in_conditioned_space": true, - "user_data": {}, - "display_name": "Kitchen cooking", - "combined_energy_factor": 0 - }, - "c28bc98d-0db5-4041-8aa3-dd7125402a77": { - "equipment_type": "PhClothesDryer", - "reference_energy_norm": 2, - "energy_demand_per_use": 0, - "energy_demand": 0, - "gas_consumption": 0, - "quantity": 1, - "field_utilization_factor_type": 1, - "_dryer_type": { - "value": "5-ELECTRIC EXHAUST AIR DRYER" - }, - "reference_quantity": 1, - "comment": "default", - "identifier": "c28bc98d-0db5-4041-8aa3-dd7125402a77", - "in_conditioned_space": true, - "user_data": {}, - "gas_efficiency_factor": 2.6699999999999999, - "field_utilization_factor": 1.1799999999999999, - "display_name": "Laundry - dryer", - "combined_energy_factor": 3.9300000000000002 - }, - "825dd9f1-ffb0-4566-b4d0-e997ddd77e71": { - "equipment_type": "PhFridgeFreezer", - "reference_energy_norm": 1, - "energy_demand_per_use": 0, - "energy_demand": 1.2200000000000000, - "quantity": 1, - "reference_quantity": 4, - "comment": "default", - "identifier": "825dd9f1-ffb0-4566-b4d0-e997ddd77e71", - "in_conditioned_space": true, - "user_data": {}, - "display_name": "Kitchen fridge/freeze combo", - "combined_energy_factor": 0 - } - } - }, - "type": "ElectricEquipmentPhProperties" - }, - "type": "ElectricEquipmentProperties", - "revive": { - "id_num": 0, - "type": "ElectricEquipmentReviveProperties" - } - }, - "type": "ElectricEquipmentAbridged", - "radiant_fraction": 0.5, - "identifier": "Generic Office Equipment_f8ae3c35", - "lost_fraction": 0.0, - "watts_per_area": 10.330000000000000, - "latent_fraction": 0.0 - }, - "type": "RoomEnergyPropertiesAbridged", - "program_type": "Generic Office Program", - "hvac": "Room_3_654deabd Ideal Loads Air System", - "people": { - "occupancy_schedule": "Generic Office Occupancy", - "properties": { - "ph": { - "number_people": 1, - "dwellings": { - "identifier": "8aec1883-4fb8-4dff-85bb-c176d2316d55", - "num_dwellings": 1 + "wufi_type": 99, + "properties": { + "energy": { + "type": "SpaceEnergyProperties", + "id_num": 0 }, - "type": "PeoplePhProperties", - "number_bedrooms": 1, - "id_num": 0 - }, - "type": "PeopleProperties", - "revive": { - "id_num": 0, - "type": "PeopleReviveProperties" - } - }, - "type": "PeopleAbridged", - "radiant_fraction": 0.29999999999999999, - "people_per_area": 0.050000000000000003, - "identifier": "Generic Office People", - "activity_schedule": "Seated Adult Activity", - "latent_fraction": { - "type": "Autocalculate" - } - }, - "construction_set": "ConstructionSet_40754dbd", - "service_hot_water": { - "target_temperature": 60.0, - "schedule": "Always On", - "properties": { - "revive": { - "id_num": 0, - "type": "ServiceHotWaterReviveProperties" - }, - "type": "ServiceHotWaterProperties" - }, - "type": "ServiceHotWaterAbridged", - "sensible_fraction": 0.20000000000000001, - "flow_per_area": 5.0000000000000002e-05, - "identifier": "Room_3_654deabd_service_hot_water", - "latent_fraction": 0.050000000000000003 - } - }, - "radiance": { - "type": "RoomRadiancePropertiesAbridged" - }, - "ph_hvac": { - "supportive_devices": [ - { - "device_type": 10, - "quantity": 3, - "norm_energy_demand_W": 123.0, - "annual_period_operation_khrs": 6.5, - "identifier": "89e5962e-5cb1-480d-98eb-fa922088d918", - "in_conditioned_space": false, - "user_data": {}, - "display_name": "Example Device", - "device_class_name": "PhSupportiveDevice" - } - ], - "type": "RoomPhHvacPropertiesAbridged", - "renewable_devices": [ - { - "array_size": 0.0, - "photovoltaic_renewable_energy": 1000.0, - "device_typename": "PhPhotovoltaicDevice", - "percent_coverage": 1.0, - "identifier": "0294aff9-a8c7-4ba9-a72b-a49a08b466f6", - "user_data": {}, - "utilization_factor": 1.0, - "display_name": "my_PV_system" + "type": "SpaceProperties", + "ph": { + "_v_tran": null, + "_v_sup": null, + "_v_eta": null, + "id_num": 0, + "type": "SpacePhProperties" + } + }, + "quantity": 1 } ], + "type": "RoomPhPropertiesAbridged", + "specific_heat_capacity": "1-LIGHTWEIGHT" + }, + "ph_hvac": { + "heating_systems": [], "heat_pump_systems": [ { - "heat_pump_class_name": "PhHeatPumpRatedMonthly", - "COP_1": 2.5, - "percent_coverage": 1.0, + "display_name": "None", "ambient_temp_1": -8.3330000000000002, - "identifier": "6e72cdb2-0052-432d-ae18-903cafa24c12", + "percent_coverage": 1.0, + "identifier": "78faf1ae-e768-460c-8443-e4da7b2fd584", + "COP_2": 2.5, + "heat_pump_class_name": "PhHeatPumpRatedMonthly", + "user_data": {}, + "ambient_temp_2": 8.3330000000000002, "cooling_params": { + "percent_coverage": 1.0, "panel": { + "display_name": "69b568ef-e953-420e-8583-1b3011ee9848", + "annual_COP": 4.0, + "identifier": "69b568ef-e953-420e-8583-1b3011ee9848", "used": false, + "user_data": {} + }, + "recirculation": { + "display_name": "69f6540a-7881-4dbb-88b5-b3ff5c04ea41", "annual_COP": 4.0, - "identifier": "ef79f140-fe6d-4287-accf-c926a631bde8", + "capacity": 10.0, + "flow_rate_m3_hr": 100.0, + "identifier": "69f6540a-7881-4dbb-88b5-b3ff5c04ea41", + "min_coil_temp": 12.0, + "used": false, "user_data": {}, - "display_name": "ef79f140-fe6d-4287-accf-c926a631bde8" + "flow_rate_variable": true, + "single_speed": false }, - "percent_coverage": 1.0, "ventilation": { - "single_speed": false, - "used": false, - "capacity": 10.0, + "display_name": "90a17848-a72c-4f20-818a-64b13356929f", "annual_COP": 4.0, - "identifier": "9a33f3c3-a529-489a-9a91-7a5eb5b461af", - "user_data": {}, + "capacity": 10.0, + "identifier": "90a17848-a72c-4f20-818a-64b13356929f", "min_coil_temp": 12.0, - "display_name": "9a33f3c3-a529-489a-9a91-7a5eb5b461af" + "used": false, + "user_data": {}, + "single_speed": false }, "dehumidification": { + "display_name": "ed78a7b9-8a68-4a8b-9c24-b15cb1bdd042", "useful_heat_loss": false, - "used": false, "annual_COP": 4.0, - "identifier": "4abe0b2c-2aac-4bf7-9441-0aaf9937758b", - "user_data": {}, - "display_name": "4abe0b2c-2aac-4bf7-9441-0aaf9937758b" - }, - "recirculation": { - "single_speed": false, - "flow_rate_m3_hr": 100.0, + "identifier": "ed78a7b9-8a68-4a8b-9c24-b15cb1bdd042", "used": false, - "flow_rate_variable": true, - "capacity": 10.0, - "annual_COP": 4.0, - "identifier": "843e6c1e-6646-4a65-8a36-bc2334a88285", - "user_data": {}, - "min_coil_temp": 12.0, - "display_name": "843e6c1e-6646-4a65-8a36-bc2334a88285" + "user_data": {} } }, - "user_data": {}, - "COP_2": 2.5, - "ambient_temp_2": 8.3330000000000002, - "display_name": "None" + "COP_1": 2.5 }, { - "heat_pump_class_name": "PhHeatPumpRatedMonthly", - "COP_1": 3.3999999999999999, - "percent_coverage": 1.0, + "display_name": "Example_Heat_Pump", "ambient_temp_1": -3.3300000000000001, - "identifier": "9e64d011-dab5-463d-9323-acf41daeaea3", + "percent_coverage": 1.0, + "identifier": "c1472eba-d74e-43ee-af9d-29c3b23f4144", + "COP_2": 4.1200000000000001, + "heat_pump_class_name": "PhHeatPumpRatedMonthly", + "user_data": {}, + "ambient_temp_2": 12.0, "cooling_params": { + "percent_coverage": 1.0, "panel": { - "used": false, + "display_name": "75a4b9a1-b8c5-49ae-a139-f1e2947907f6", "annual_COP": 4.0, - "identifier": "85ccb82b-cc69-4372-a7a0-447d1a22e3d6", + "identifier": "75a4b9a1-b8c5-49ae-a139-f1e2947907f6", + "used": false, + "user_data": {} + }, + "recirculation": { + "display_name": "_unnamed_recirculation_cooling__b8f94ba3", + "annual_COP": 2.0, + "capacity": 10.0, + "flow_rate_m3_hr": 100.08000000000000, + "identifier": "1feb503d-bdea-462f-a86f-883870e0c757", + "min_coil_temp": 12.0, + "used": true, "user_data": {}, - "display_name": "85ccb82b-cc69-4372-a7a0-447d1a22e3d6" + "flow_rate_variable": true, + "single_speed": false }, - "percent_coverage": 1.0, "ventilation": { - "single_speed": false, - "used": false, - "capacity": 10.0, + "display_name": "e64aef74-441b-40be-80ee-4d627f66656b", "annual_COP": 4.0, - "identifier": "2209334c-eef0-4043-a034-f56393a47160", - "user_data": {}, + "capacity": 10.0, + "identifier": "e64aef74-441b-40be-80ee-4d627f66656b", "min_coil_temp": 12.0, - "display_name": "2209334c-eef0-4043-a034-f56393a47160" + "used": false, + "user_data": {}, + "single_speed": false }, "dehumidification": { + "display_name": "_unnamed_dehumidification_cooling__c5b6593e", "useful_heat_loss": false, - "used": true, "annual_COP": 2.0, - "identifier": "f4ea1de5-2eca-4581-9344-a093baa0b85c", - "user_data": {}, - "display_name": "_unnamed_dehumidification_cooling__15919767" - }, - "recirculation": { - "single_speed": false, - "flow_rate_m3_hr": 100.08000000000000, + "identifier": "0adb1b34-54f9-4753-8242-4b28e5de9b36", "used": true, - "flow_rate_variable": true, - "capacity": 10.0, - "annual_COP": 2.0, - "identifier": "75833f07-96ce-4cb2-b6e6-27bac5aee4f5", - "user_data": {}, - "min_coil_temp": 12.0, - "display_name": "_unnamed_recirculation_cooling__96a4db0b" + "user_data": {} } }, + "COP_1": 3.3999999999999999 + } + ], + "exhaust_vent_devices": [ + { + "display_name": "example_dryer_vent", + "annual_runtime_minutes": 7.625, + "exhaust_flow_rate_m3s": 123.0, + "identifier": "cbd00d8e-2701-4700-93ef-c3ce367b8688", + "device_class_name": "ExhaustVentDryer", "user_data": {}, - "COP_2": 4.1200000000000001, - "ambient_temp_2": 12.0, - "display_name": "Example_Heat_Pump" + "quantity": 1 + } + ], + "supportive_devices": [ + { + "display_name": "Example Device", + "norm_energy_demand_W": 123.0, + "device_type": 10, + "identifier": "4154c3f3-9af8-4edb-b8d8-a8ccb314f613", + "annual_period_operation_khrs": 6.5, + "device_class_name": "PhSupportiveDevice", + "user_data": {}, + "in_conditioned_space": false, + "quantity": 3 } ], "id_num": 0, - "heating_systems": [], + "renewable_devices": [ + { + "display_name": "my_PV_system", + "utilization_factor": 1.0, + "percent_coverage": 1.0, + "device_typename": "PhPhotovoltaicDevice", + "identifier": "328b44ad-d910-44bc-a2dd-26fd04b0e552", + "photovoltaic_renewable_energy": 1000.0, + "user_data": {}, + "array_size": 0.0 + } + ], + "type": "RoomPhHvacPropertiesAbridged", "hot_water_system": { - "type": "PhHvacHotWaterSystemPh", + "display_name": "SHW System_d1196a26", + "heaters": { + "6b5d3717-5e15-4584-9653-a21b646976ec": { + "display_name": "6b5d3717-5e15-4584-9653-a21b646976ec", + "annual_COP": null, + "total_system_perf_ratio": null, + "percent_coverage": 1.0, + "heater_type": "PhHvacHotWaterHeaterHeatPump_Annual", + "identifier": "6b5d3717-5e15-4584-9653-a21b646976ec", + "user_data": {}, + "in_conditioned_space": true + } + }, + "recirc_temp": 48.0, + "recirc_piping": { + "93549b5f-6965-445d-a4fb-594211183d9f": { + "display_name": "_unnamed_", + "identifier": "93549b5f-6965-445d-a4fb-594211183d9f", + "user_data": {}, + "segments": { + "fc3c972e-7c34-417c-b89d-4ed698135049": { + "display_name": "fc3c972e-7c34-417c-b89d-4ed698135049", + "material_value": "2-COPPER_L", + "insulation_thickness_mm": 25.399999999999999, + "daily_period": 23.0, + "insulation_reflective": true, + "water_temp_c": 48.0, + "identifier": "fc3c972e-7c34-417c-b89d-4ed698135049", + "geometry": { + "v": [ + 0.0, + 0.0, + 1.1000000000000001 + ], + "type": "LineSegment3D", + "p": [ + 0.0, + -5.5, + 0.0 + ] + }, + "insulation_conductivity": 0.040000000000000001, + "diameter_mm": 25.399999999999999, + "user_data": {}, + "insulation_quality": null + } + } + } + }, + "recirc_hours": 23, + "tank_solar": { + "display_name": "_unnamed_hw_tank_", + "_tank_type": { + "value": "2-DHW ONLY" + }, + "standby_losses": 4.0, + "storage_loss_rate": 0.0, + "solar_losses": 0.0, + "solar_connection": false, + "water_temp": 60, + "identifier": "6bba8ac3-f1ee-4a00-82e7-72a99b83f0ec", + "user_data": {}, + "room_temp": 20, + "in_conditioned_space": true, + "standby_fraction": 0.29999999999999999, + "storage_capacity": 300, + "quantity": 1 + }, + "id_num": 0, + "identifier": "a6faec87-93ec-4bfe-9fca-39404b31e11c", "distribution_piping": { - "4d8200b6-c134-4cd8-b11a-b8b81861cf62": { + "7b1d01bd-493e-4a78-b316-6abb02f56691": { + "display_name": "Test_Trunk", "multiplier": 1, - "identifier": "4d8200b6-c134-4cd8-b11a-b8b81861cf62", - "user_data": {}, "branches": { - "16708b7b-39a7-48d1-8c83-dff26d59a0f9": { - "identifier": "16708b7b-39a7-48d1-8c83-dff26d59a0f9", - "user_data": {}, + "4062c18c-54af-4256-b02e-548750e74700": { + "display_name": "Test_Branch", "pipe_element": { - "identifier": "0f8cb0d9-e423-4981-8fce-8a7fa1cb592d", - "display_name": "0f8cb0d9-e423-4981-8fce-8a7fa1cb592d", + "display_name": "40323c0f-313c-4774-96ce-22af83111410", + "identifier": "40323c0f-313c-4774-96ce-22af83111410", "user_data": {}, "segments": { - "f6738ddd-0439-49a7-a825-0107d395b22d": { - "diameter_mm": 19.049999999999997, - "insulation_quality": null, - "daily_period": 24, + "1a1b385d-4103-4c89-ab47-2ac337c2d837": { + "display_name": "1a1b385d-4103-4c89-ab47-2ac337c2d837", "material_value": "3-COPPER_K", + "insulation_thickness_mm": 0.0, + "daily_period": 24, "insulation_reflective": false, "water_temp_c": 60.0, - "insulation_conductivity": 0.040000000000000001, + "identifier": "1a1b385d-4103-4c89-ab47-2ac337c2d837", "geometry": { + "v": [ + 0.0, + 0.0, + 5.5 + ], "type": "LineSegment3D", "p": [ 0.0, -5.5, 0.0 - ], - "v": [ - 0.0, - 0.0, - 5.5 ] }, - "identifier": "f6738ddd-0439-49a7-a825-0107d395b22d", - "insulation_thickness_mm": 0.0, + "insulation_conductivity": 0.040000000000000001, + "diameter_mm": 19.049999999999997, "user_data": {}, - "display_name": "f6738ddd-0439-49a7-a825-0107d395b22d" + "insulation_quality": null } } }, - "display_name": "Test_Branch", + "identifier": "4062c18c-54af-4256-b02e-548750e74700", + "user_data": {}, "fixtures": { - "d5ef91cd-236d-48a5-9e37-709a405e4387": { - "identifier": "d5ef91cd-236d-48a5-9e37-709a405e4387", + "dcd7c5b4-10a4-46ec-9ceb-7379ced12284": { "display_name": "Test_Fixture", + "identifier": "dcd7c5b4-10a4-46ec-9ceb-7379ced12284", "user_data": {}, "segments": { - "8960f475-ef38-4f46-b1cf-528619f949a9": { - "diameter_mm": 9.5249999999999986, - "insulation_quality": null, - "daily_period": 24, + "897038fa-e42d-4cd7-9cdc-f34b9338029b": { + "display_name": "897038fa-e42d-4cd7-9cdc-f34b9338029b", "material_value": "1-COPPER_M", + "insulation_thickness_mm": 0.0, + "daily_period": 24, "insulation_reflective": false, "water_temp_c": 55.0, - "insulation_conductivity": 0.040000000000000001, + "identifier": "897038fa-e42d-4cd7-9cdc-f34b9338029b", "geometry": { + "v": [ + 0.0, + 0.0, + 5.5 + ], "type": "LineSegment3D", "p": [ 0.0, -5.5, 0.0 - ], - "v": [ - 0.0, - 0.0, - 5.5 ] }, - "identifier": "8960f475-ef38-4f46-b1cf-528619f949a9", - "insulation_thickness_mm": 0.0, + "insulation_conductivity": 0.040000000000000001, + "diameter_mm": 9.5249999999999986, "user_data": {}, - "display_name": "8960f475-ef38-4f46-b1cf-528619f949a9" + "insulation_quality": null } } } @@ -5636,345 +6523,165 @@ } }, "pipe_element": { - "identifier": "45e58dbc-6cd2-4474-b902-0b8dec6af446", - "display_name": "45e58dbc-6cd2-4474-b902-0b8dec6af446", + "display_name": "b6f9ece6-a696-4c97-baa2-b7fdee47a35f", + "identifier": "b6f9ece6-a696-4c97-baa2-b7fdee47a35f", "user_data": {}, "segments": { - "d25af768-4529-49b4-bfbf-565f21ff20b2": { - "diameter_mm": 38.099999999999994, - "insulation_quality": null, - "daily_period": 24, + "d6ad938e-1179-4610-b491-f31e74cffec4": { + "display_name": "d6ad938e-1179-4610-b491-f31e74cffec4", "material_value": "6-PEX", + "insulation_thickness_mm": 0.0, + "daily_period": 24, "insulation_reflective": false, "water_temp_c": 60.0, - "insulation_conductivity": 0.040000000000000001, + "identifier": "d6ad938e-1179-4610-b491-f31e74cffec4", "geometry": { - "type": "LineSegment3D", - "p": [ - 0.0, - -5.5, - 0.0 - ], "v": [ 0.0, 0.0, 5.5 - ] - }, - "identifier": "d25af768-4529-49b4-bfbf-565f21ff20b2", - "insulation_thickness_mm": 0.0, - "user_data": {}, - "display_name": "d25af768-4529-49b4-bfbf-565f21ff20b2" - } - } - }, - "display_name": "Test_Trunk" - } - }, - "recirc_piping": { - "620ab83b-bb5c-4a73-a524-09e8b4b218c7": { - "identifier": "620ab83b-bb5c-4a73-a524-09e8b4b218c7", - "display_name": "_unnamed_", - "user_data": {}, - "segments": { - "c2c24192-9736-4d86-a4a0-b5369405e889": { - "diameter_mm": 25.399999999999999, - "insulation_quality": null, - "daily_period": 23.0, - "material_value": "2-COPPER_L", - "insulation_reflective": true, - "water_temp_c": 48.0, - "insulation_conductivity": 0.040000000000000001, - "geometry": { - "type": "LineSegment3D", - "p": [ - 0.0, - -5.5, - 0.0 - ], - "v": [ - 0.0, - 0.0, - 1.1000000000000001 - ] - }, - "identifier": "c2c24192-9736-4d86-a4a0-b5369405e889", - "insulation_thickness_mm": 25.399999999999999, - "user_data": {}, - "display_name": "c2c24192-9736-4d86-a4a0-b5369405e889" + ], + "type": "LineSegment3D", + "p": [ + 0.0, + -5.5, + 0.0 + ] + }, + "insulation_conductivity": 0.040000000000000001, + "diameter_mm": 38.099999999999994, + "user_data": {}, + "insulation_quality": null + } } - } + }, + "identifier": "7b1d01bd-493e-4a78-b316-6abb02f56691", + "user_data": {} } }, "number_tap_points": 1, - "recirc_temp": 48.0, - "recirc_hours": 23, - "tank_solar": { - "room_temp": 20, - "quantity": 1, - "water_temp": 60, - "solar_losses": 0.0, - "storage_loss_rate": 0.0, - "identifier": "58b8378d-0a80-4684-9ee8-5c903bf5a40e", - "standby_losses": 4.0, - "in_conditioned_space": true, - "user_data": {}, - "_tank_type": { - "value": "2-DHW ONLY" - }, - "solar_connection": false, - "storage_capacity": 300, - "standby_fraction": 0.29999999999999999, - "display_name": "_unnamed_hw_tank_" - }, - "id_num": 0, - "identifier": "14f1106b-84b1-44c7-bfdb-112fc719dccd", - "heaters": { - "874b245d-b0f9-4f12-847b-3a0f284c91dc": { - "heater_type": "PhHvacHotWaterHeaterHeatPump_Annual", - "annual_COP": null, - "percent_coverage": 1.0, - "identifier": "874b245d-b0f9-4f12-847b-3a0f284c91dc", - "in_conditioned_space": true, - "user_data": {}, - "total_system_perf_ratio": null, - "display_name": "874b245d-b0f9-4f12-847b-3a0f284c91dc" - } - }, - "display_name": "SHW System_71fd7432" + "type": "PhHvacHotWaterSystemPh" }, - "exhaust_vent_devices": [ - { - "quantity": 1, - "exhaust_flow_rate_m3s": 123.0, - "annual_runtime_minutes": 7.625, - "identifier": "e71507c4-71ac-4082-a53a-e39d167fd1ed", - "user_data": {}, - "display_name": "example_dryer_vent", - "device_class_name": "ExhaustVentDryer" - } - ], "ventilation_system": { + "display_name": "Test_Vent_System", "exhaust_ducting": [ { + "display_name": "Test_Vent_System_exhaust", "duct_type": 2, - "identifier": "6f3034b8-bbe1-4da7-bd69-0456e0e01bd7", - "user_data": {}, "segments": { - "6ae9834b-2ba2-404e-908d-754727249062": { + "9d976cd5-4d84-400f-950d-0f541d87d461": { + "display_name": "9d976cd5-4d84-400f-950d-0f541d87d461", "width": null, "insulation_reflective": true, - "insulation_conductivity": 0.040000000000000001, + "identifier": "9d976cd5-4d84-400f-950d-0f541d87d461", "geometry": { + "v": [ + 1.0832885283134288, + -0.19101299543362338, + 0.0 + ], "type": "LineSegment3D", "p": [ 0.0, -5.5, 0.0 - ], - "v": [ - 1.0832885283134288, - -0.19101299543362338, - 0.0 ] }, - "identifier": "6ae9834b-2ba2-404e-908d-754727249062", - "user_data": {}, "height": null, - "insulation_thickness": 0.02794, - "display_name": "6ae9834b-2ba2-404e-908d-754727249062", - "diameter": 0.17600000000000002 + "insulation_conductivity": 0.040000000000000001, + "user_data": {}, + "diameter": 0.17600000000000002, + "insulation_thickness": 0.02794 } }, - "display_name": "Test_Vent_System_exhaust" + "identifier": "5ffc820b-295e-41ce-bdb1-e5aa51c23d86", + "user_data": {} } ], + "id_num": 0, + "identifier": "4830df63-b014-43ce-88bf-09bc4ba2806e", "ventilation_unit": { - "sensible_heat_recovery": 0.82999999999999996, - "quantity": 1, + "display_name": "Test_Unit", "electric_efficiency": 0.33300000000000002, "latent_heat_recovery": 0.0, - "identifier": "1846c7da-e2c5-4f02-a7e6-1029152d64ca", "temperature_below_defrost_used": -5.0, - "in_conditioned_space": true, + "identifier": "c808a1a4-6419-4539-8a08-1116c79b7044", "user_data": {}, + "sensible_heat_recovery": 0.82999999999999996, "frost_protection_reqd": true, - "display_name": "Test_Unit" + "in_conditioned_space": true, + "quantity": 1 }, + "user_data": {}, + "sys_type": 1, "supply_ducting": [ { + "display_name": "__unnamed_vent_duct__", "duct_type": 1, - "identifier": "4bde1ec7-124a-4b4d-8fc4-b4a42c72f8f8", - "user_data": {}, "segments": { - "ee12e3c8-9551-4877-8329-1efcfb012a06": { + "f4c0f89e-798c-445f-815e-1e1c94af5c09": { + "display_name": "f4c0f89e-798c-445f-815e-1e1c94af5c09", "width": null, "insulation_reflective": true, - "insulation_conductivity": 0.040000000000000001, + "identifier": "f4c0f89e-798c-445f-815e-1e1c94af5c09", "geometry": { + "v": [ + 0.0, + 0.0, + 1.1000000000000001 + ], "type": "LineSegment3D", "p": [ 0.0, -5.5, 0.0 - ], - "v": [ - 0.0, - 0.0, - 1.1000000000000001 ] }, - "identifier": "ee12e3c8-9551-4877-8329-1efcfb012a06", - "user_data": {}, "height": null, - "insulation_thickness": 0.02794, - "display_name": "ee12e3c8-9551-4877-8329-1efcfb012a06", - "diameter": 0.17600000000000002 + "insulation_conductivity": 0.040000000000000001, + "user_data": {}, + "diameter": 0.17600000000000002, + "insulation_thickness": 0.02794 } }, - "display_name": "__unnamed_vent_duct__" + "identifier": "ab2c5928-d987-47b5-9b19-6092ff68afdc", + "user_data": {} } - ], - "id_num": 0, - "identifier": "529020ac-9418-4311-aa86-bec7050e8002", - "user_data": {}, - "display_name": "Test_Vent_System", - "sys_type": 1 + ] } }, "type": "RoomPropertiesAbridged" }, - "type": "Room", - "identifier": "Room_3_654deabd", - "story": "1", - "display_name": "Room_3" + "type": "Room" }, { + "display_name": "Room_4", "faces": [ { - "properties": { - "revive": { - "id_num": 0, - "type": "FaceRevivePropertiesAbridged" - }, - "ph": { - "id_num": 0, - "type": "FacePhPropertiesAbridged" - }, - "energy": { - "type": "FaceEnergyPropertiesAbridged" - }, - "radiance": { - "type": "FaceRadiancePropertiesAbridged" - }, - "ph_hvac": { - "type": "FacePhHvacPropertiesAbridged" - }, - "type": "FacePropertiesAbridged" - }, - "type": "Face", - "geometry": { - "plane": { - "x": [ - 0.98480775301220802, - -0.17364817766693047, - 0.0 - ], - "type": "Plane", - "n": [ - 0.17364817766693047, - 0.98480775301220802, - 0.0 - ], - "o": [ - 5.4164426415671443, - -6.4550649771681172, - 3.3000000000000003 - ] - }, - "type": "Face3D", - "boundary": [ - [ - 12.999462339761147, - -7.7921559452034819, - 3.3000000000000003 - ], - [ - 12.999462339761147, - -7.7921559452034819, - 0.0 - ], - [ - 5.4164426415671443, - -6.4550649771681172, - 0.0 - ], - [ - 5.4164426415671443, - -6.4550649771681172, - 3.3000000000000003 - ] - ] - }, - "identifier": "Room_4_3d192209..Face0", + "display_name": "Room_4_9460264b..Face0", "face_type": "Wall", "boundary_condition": { - "type": "Outdoors", "view_factor": { "type": "Autocalculate" }, - "sun_exposure": true, - "wind_exposure": true + "type": "Outdoors", + "wind_exposure": true, + "sun_exposure": true }, - "display_name": "Room_4_3d192209..Face0", "apertures": [ { - "properties": { - "revive": { - "id_num": 0, - "type": "ApertureRevivePropertiesAbridged" - }, - "ph": { - "summer_shading_factor": 0.75, - "type": "AperturePhPropertiesAbridged", - "winter_shading_factor": 0.75, - "default_monthly_shading_correction_factor": 1.0, - "install_depth": 0.1016, - "id_num": 0, - "variant_type": "_unnamed_type_" - }, - "energy": { - "type": "ApertureEnergyPropertiesAbridged" - }, - "radiance": { - "type": "ApertureRadiancePropertiesAbridged" - }, - "ph_hvac": { - "type": "AperturePhHvacPropertiesAbridged" + "display_name": "Room_4_9460264b..Face0_Glz0", + "is_operable": false, + "boundary_condition": { + "view_factor": { + "type": "Autocalculate" }, - "type": "AperturePropertiesAbridged" + "type": "Outdoors", + "wind_exposure": true, + "sun_exposure": true }, - "type": "Aperture", + "identifier": "Room_4_9460264b..Face0_Glz0", "geometry": { - "plane": { - "x": [ - 0.98480775301220813, - -0.17364817766693033, - 0.0 - ], - "type": "Plane", - "n": [ - 0.17364817766693033, - 0.98480775301220813, - 0.0 - ], - "o": [ - 6.6645303626818855, - -6.6751365166915884, - 2.7568536488623963 - ] - }, - "type": "Face3D", "boundary": [ [ 11.751374618646405, @@ -5996,146 +6703,146 @@ -6.6751365166915884, 2.7568536488623963 ] - ] - }, - "is_operable": false, - "identifier": "Room_4_3d192209..Face0_Glz0", - "boundary_condition": { - "type": "Outdoors", - "view_factor": { - "type": "Autocalculate" + ], + "plane": { + "x": [ + 0.98480775301220813, + -0.17364817766693033, + 0.0 + ], + "type": "Plane", + "o": [ + 6.6645303626818855, + -6.6751365166915884, + 2.7568536488623963 + ], + "n": [ + 0.17364817766693033, + 0.98480775301220813, + 0.0 + ] }, - "sun_exposure": true, - "wind_exposure": true + "type": "Face3D" }, - "display_name": "Room_4_3d192209..Face0_Glz0" - } - ] - }, - { - "properties": { - "revive": { - "id_num": 0, - "type": "FaceRevivePropertiesAbridged" - }, - "ph": { - "id_num": 0, - "type": "FacePhPropertiesAbridged" - }, - "energy": { - "type": "FaceEnergyPropertiesAbridged" - }, - "radiance": { - "type": "FaceRadiancePropertiesAbridged" - }, - "ph_hvac": { - "type": "FacePhHvacPropertiesAbridged" - }, - "type": "FacePropertiesAbridged" - }, - "type": "Face", + "properties": { + "revive": { + "type": "ApertureRevivePropertiesAbridged", + "id_num": 0 + }, + "radiance": { + "type": "ApertureRadiancePropertiesAbridged" + }, + "energy": { + "type": "ApertureEnergyPropertiesAbridged" + }, + "ph": { + "winter_shading_factor": 0.75, + "summer_shading_factor": 0.75, + "id_num": 0, + "variant_type": "_unnamed_type_", + "default_monthly_shading_correction_factor": 1.0, + "install_depth": 0.1016, + "type": "AperturePhPropertiesAbridged" + }, + "ph_hvac": { + "type": "AperturePhHvacPropertiesAbridged" + }, + "type": "AperturePropertiesAbridged" + }, + "type": "Aperture" + } + ], + "identifier": "Room_4_9460264b..Face0", "geometry": { - "plane": { - "x": [ - -0.17364817766693064, - -0.98480775301220802, - 0.0 - ], - "type": "Plane", - "n": [ - 0.98480775301220802, - -0.17364817766693064, - 0.0 - ], - "o": [ - 12.999462339761147, - -7.7921559452034819, - 3.3000000000000003 - ] - }, - "type": "Face3D", "boundary": [ [ - 12.235410358026652, - -12.125310058457197, + 12.999462339761147, + -7.7921559452034819, 3.3000000000000003 ], [ - 12.235410358026652, - -12.125310058457197, + 12.999462339761147, + -7.7921559452034819, 0.0 ], [ - 12.999462339761147, - -7.7921559452034819, + 5.4164426415671443, + -6.4550649771681172, 0.0 ], [ - 12.999462339761147, - -7.7921559452034819, + 5.4164426415671443, + -6.4550649771681172, 3.3000000000000003 ] - ] + ], + "plane": { + "x": [ + 0.98480775301220802, + -0.17364817766693047, + 0.0 + ], + "type": "Plane", + "o": [ + 5.4164426415671443, + -6.4550649771681172, + 3.3000000000000003 + ], + "n": [ + 0.17364817766693047, + 0.98480775301220802, + 0.0 + ] + }, + "type": "Face3D" + }, + "properties": { + "revive": { + "type": "FaceRevivePropertiesAbridged", + "id_num": 0 + }, + "radiance": { + "type": "FaceRadiancePropertiesAbridged" + }, + "energy": { + "type": "FaceEnergyPropertiesAbridged" + }, + "ph": { + "type": "FacePhPropertiesAbridged", + "id_num": 0 + }, + "ph_hvac": { + "type": "FacePhHvacPropertiesAbridged" + }, + "type": "FacePropertiesAbridged" }, - "identifier": "Room_4_3d192209..Face1", + "type": "Face" + }, + { + "display_name": "Room_4_9460264b..Face1", "face_type": "Wall", "boundary_condition": { - "type": "Outdoors", "view_factor": { "type": "Autocalculate" }, - "sun_exposure": true, - "wind_exposure": true + "type": "Outdoors", + "wind_exposure": true, + "sun_exposure": true }, - "display_name": "Room_4_3d192209..Face1", "apertures": [ { - "properties": { - "revive": { - "id_num": 0, - "type": "ApertureRevivePropertiesAbridged" - }, - "ph": { - "summer_shading_factor": 0.75, - "type": "AperturePhPropertiesAbridged", - "winter_shading_factor": 0.75, - "default_monthly_shading_correction_factor": 1.0, - "install_depth": 0.1016, - "id_num": 0, - "variant_type": "_unnamed_type_" - }, - "energy": { - "type": "ApertureEnergyPropertiesAbridged" - }, - "radiance": { - "type": "ApertureRadiancePropertiesAbridged" - }, - "ph_hvac": { - "type": "AperturePhHvacPropertiesAbridged" + "display_name": "Room_4_9460264b..Face1_Glz0", + "is_operable": false, + "boundary_condition": { + "view_factor": { + "type": "Autocalculate" }, - "type": "AperturePropertiesAbridged" + "type": "Outdoors", + "wind_exposure": true, + "sun_exposure": true }, - "type": "Aperture", + "identifier": "Room_4_9460264b..Face1_Glz0", "geometry": { - "plane": { - "x": [ - -0.17364817766693014, - -0.98480775301220813, - 0.0 - ], - "type": "Plane", - "n": [ - 0.98480775301220813, - -0.17364817766693014, - 0.0 - ], - "o": [ - 12.873707174319163, - -8.5053489286976198, - 2.7568536488623963 - ] - }, - "type": "Face3D", "boundary": [ [ 12.361165523468637, @@ -6157,146 +6864,146 @@ -8.5053489286976198, 2.7568536488623963 ] - ] + ], + "plane": { + "x": [ + -0.17364817766693014, + -0.98480775301220813, + 0.0 + ], + "type": "Plane", + "o": [ + 12.873707174319163, + -8.5053489286976198, + 2.7568536488623963 + ], + "n": [ + 0.98480775301220813, + -0.17364817766693014, + 0.0 + ] + }, + "type": "Face3D" }, - "is_operable": false, - "identifier": "Room_4_3d192209..Face1_Glz0", - "boundary_condition": { - "type": "Outdoors", - "view_factor": { - "type": "Autocalculate" + "properties": { + "revive": { + "type": "ApertureRevivePropertiesAbridged", + "id_num": 0 + }, + "radiance": { + "type": "ApertureRadiancePropertiesAbridged" + }, + "energy": { + "type": "ApertureEnergyPropertiesAbridged" + }, + "ph": { + "winter_shading_factor": 0.75, + "summer_shading_factor": 0.75, + "id_num": 0, + "variant_type": "_unnamed_type_", + "default_monthly_shading_correction_factor": 1.0, + "install_depth": 0.1016, + "type": "AperturePhPropertiesAbridged" + }, + "ph_hvac": { + "type": "AperturePhHvacPropertiesAbridged" }, - "sun_exposure": true, - "wind_exposure": true + "type": "AperturePropertiesAbridged" }, - "display_name": "Room_4_3d192209..Face1_Glz0" + "type": "Aperture" } - ] - }, - { - "properties": { - "revive": { - "id_num": 0, - "type": "FaceRevivePropertiesAbridged" - }, - "ph": { - "id_num": 0, - "type": "FacePhPropertiesAbridged" - }, - "energy": { - "type": "FaceEnergyPropertiesAbridged" - }, - "radiance": { - "type": "FaceRadiancePropertiesAbridged" - }, - "ph_hvac": { - "type": "FacePhHvacPropertiesAbridged" - }, - "type": "FacePropertiesAbridged" - }, - "type": "Face", + ], + "identifier": "Room_4_9460264b..Face1", "geometry": { - "plane": { - "x": [ - -0.98480775301220802, - 0.17364817766693064, - 0.0 - ], - "type": "Plane", - "n": [ - -0.17364817766693064, - -0.98480775301220802, - 0.0 - ], - "o": [ - 12.235410358026652, - -12.125310058457197, - 3.3000000000000003 - ] - }, - "type": "Face3D", "boundary": [ [ - 4.6523906598326512, - -10.788219090421832, + 12.235410358026652, + -12.125310058457197, 3.3000000000000003 ], [ - 4.6523906598326512, - -10.788219090421832, + 12.235410358026652, + -12.125310058457197, 0.0 ], [ - 12.235410358026652, - -12.125310058457197, + 12.999462339761147, + -7.7921559452034819, 0.0 ], [ - 12.235410358026652, - -12.125310058457197, + 12.999462339761147, + -7.7921559452034819, 3.3000000000000003 ] - ] + ], + "plane": { + "x": [ + -0.17364817766693064, + -0.98480775301220802, + 0.0 + ], + "type": "Plane", + "o": [ + 12.999462339761147, + -7.7921559452034819, + 3.3000000000000003 + ], + "n": [ + 0.98480775301220802, + -0.17364817766693064, + 0.0 + ] + }, + "type": "Face3D" + }, + "properties": { + "revive": { + "type": "FaceRevivePropertiesAbridged", + "id_num": 0 + }, + "radiance": { + "type": "FaceRadiancePropertiesAbridged" + }, + "energy": { + "type": "FaceEnergyPropertiesAbridged" + }, + "ph": { + "type": "FacePhPropertiesAbridged", + "id_num": 0 + }, + "ph_hvac": { + "type": "FacePhHvacPropertiesAbridged" + }, + "type": "FacePropertiesAbridged" }, - "identifier": "Room_4_3d192209..Face2", + "type": "Face" + }, + { + "display_name": "Room_4_9460264b..Face2", "face_type": "Wall", "boundary_condition": { - "type": "Outdoors", "view_factor": { "type": "Autocalculate" }, - "sun_exposure": true, - "wind_exposure": true + "type": "Outdoors", + "wind_exposure": true, + "sun_exposure": true }, - "display_name": "Room_4_3d192209..Face2", "apertures": [ { - "properties": { - "revive": { - "id_num": 0, - "type": "ApertureRevivePropertiesAbridged" - }, - "ph": { - "summer_shading_factor": 0.75, - "type": "AperturePhPropertiesAbridged", - "winter_shading_factor": 0.75, - "default_monthly_shading_correction_factor": 1.0, - "install_depth": 0.1016, - "id_num": 0, - "variant_type": "_unnamed_type_" - }, - "energy": { - "type": "ApertureEnergyPropertiesAbridged" - }, - "radiance": { - "type": "ApertureRadiancePropertiesAbridged" - }, - "ph_hvac": { - "type": "AperturePhHvacPropertiesAbridged" + "display_name": "Room_4_9460264b..Face2_Glz0", + "is_operable": false, + "boundary_condition": { + "view_factor": { + "type": "Autocalculate" }, - "type": "AperturePropertiesAbridged" + "type": "Outdoors", + "wind_exposure": true, + "sun_exposure": true }, - "type": "Aperture", + "identifier": "Room_4_9460264b..Face2_Glz0", "geometry": { - "plane": { - "x": [ - -0.98480775301220802, - 0.17364817766693069, - 0.0 - ], - "type": "Plane", - "n": [ - -0.17364817766693069, - -0.98480775301220802, - 0.0 - ], - "o": [ - 10.987322636911911, - -11.905238518933727, - 2.7568536488623963 - ] - }, - "type": "Face3D", "boundary": [ [ 5.9004783809473924, @@ -6318,64 +7025,133 @@ -11.905238518933727, 2.7568536488623963 ] - ] + ], + "plane": { + "x": [ + -0.98480775301220802, + 0.17364817766693069, + 0.0 + ], + "type": "Plane", + "o": [ + 10.987322636911911, + -11.905238518933727, + 2.7568536488623963 + ], + "n": [ + -0.17364817766693069, + -0.98480775301220802, + 0.0 + ] + }, + "type": "Face3D" }, - "is_operable": false, - "identifier": "Room_4_3d192209..Face2_Glz0", - "boundary_condition": { - "type": "Outdoors", - "view_factor": { - "type": "Autocalculate" + "properties": { + "revive": { + "type": "ApertureRevivePropertiesAbridged", + "id_num": 0 + }, + "radiance": { + "type": "ApertureRadiancePropertiesAbridged" + }, + "energy": { + "type": "ApertureEnergyPropertiesAbridged" + }, + "ph": { + "winter_shading_factor": 0.75, + "summer_shading_factor": 0.75, + "id_num": 0, + "variant_type": "_unnamed_type_", + "default_monthly_shading_correction_factor": 1.0, + "install_depth": 0.1016, + "type": "AperturePhPropertiesAbridged" + }, + "ph_hvac": { + "type": "AperturePhHvacPropertiesAbridged" }, - "sun_exposure": true, - "wind_exposure": true + "type": "AperturePropertiesAbridged" }, - "display_name": "Room_4_3d192209..Face2_Glz0" + "type": "Aperture" } - ] - }, - { + ], + "identifier": "Room_4_9460264b..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 + ] + ], + "plane": { + "x": [ + -0.98480775301220802, + 0.17364817766693064, + 0.0 + ], + "type": "Plane", + "o": [ + 12.235410358026652, + -12.125310058457197, + 3.3000000000000003 + ], + "n": [ + -0.17364817766693064, + -0.98480775301220802, + 0.0 + ] + }, + "type": "Face3D" + }, "properties": { "revive": { - "id_num": 0, - "type": "FaceRevivePropertiesAbridged" + "type": "FaceRevivePropertiesAbridged", + "id_num": 0 }, - "ph": { - "id_num": 0, - "type": "FacePhPropertiesAbridged" + "radiance": { + "type": "FaceRadiancePropertiesAbridged" }, "energy": { "type": "FaceEnergyPropertiesAbridged" }, - "radiance": { - "type": "FaceRadiancePropertiesAbridged" + "ph": { + "type": "FacePhPropertiesAbridged", + "id_num": 0 }, "ph_hvac": { "type": "FacePhHvacPropertiesAbridged" }, "type": "FacePropertiesAbridged" }, - "type": "Face", + "type": "Face" + }, + { + "display_name": "Room_4_9460264b..Face3", + "face_type": "Wall", + "boundary_condition": { + "boundary_condition_objects": [ + "Room_11_ed80c7ba..Face1", + "Room_11_ed80c7ba" + ], + "type": "Surface" + }, + "identifier": "Room_4_9460264b..Face3", "geometry": { - "plane": { - "x": [ - 0.1736481776669303, - 0.98480775301220813, - 0.0 - ], - "type": "Plane", - "n": [ - -0.98480775301220813, - 0.1736481776669303, - 0.0 - ], - "o": [ - 4.6523906598326512, - -10.788219090421832, - 3.3000000000000003 - ] - }, - "type": "Face3D", "boundary": [ [ 5.4164426415671443, @@ -6397,61 +7173,57 @@ -10.788219090421832, 3.3000000000000003 ] - ] - }, - "identifier": "Room_4_3d192209..Face3", - "face_type": "Wall", - "boundary_condition": { - "type": "Surface", - "boundary_condition_objects": [ - "Room_3_654deabd..Face1", - "Room_3_654deabd" - ] + ], + "plane": { + "x": [ + 0.1736481776669303, + 0.98480775301220813, + 0.0 + ], + "type": "Plane", + "o": [ + 4.6523906598326512, + -10.788219090421832, + 3.3000000000000003 + ], + "n": [ + -0.98480775301220813, + 0.1736481776669303, + 0.0 + ] + }, + "type": "Face3D" }, - "display_name": "Room_4_3d192209..Face3" - }, - { "properties": { "revive": { - "id_num": 0, - "type": "FaceRevivePropertiesAbridged" + "type": "FaceRevivePropertiesAbridged", + "id_num": 0 }, - "ph": { - "id_num": 0, - "type": "FacePhPropertiesAbridged" + "radiance": { + "type": "FaceRadiancePropertiesAbridged" }, "energy": { "type": "FaceEnergyPropertiesAbridged" }, - "radiance": { - "type": "FaceRadiancePropertiesAbridged" + "ph": { + "type": "FacePhPropertiesAbridged", + "id_num": 0 }, "ph_hvac": { "type": "FacePhHvacPropertiesAbridged" }, "type": "FacePropertiesAbridged" }, - "type": "Face", + "type": "Face" + }, + { + "display_name": "Room_4_9460264b..Face4", + "face_type": "Floor", + "boundary_condition": { + "type": "Ground" + }, + "identifier": "Room_4_9460264b..Face4", "geometry": { - "plane": { - "x": [ - 1.0, - 0.0, - 0.0 - ], - "type": "Plane", - "n": [ - 0.0, - 0.0, - -1.0 - ], - "o": [ - 12.999462339761147, - -7.7921559452034819, - 0.0 - ] - }, - "type": "Face3D", "boundary": [ [ 12.999462339761147, @@ -6473,139 +7245,74 @@ -6.4550649771681172, 0.0 ] - ] - }, - "identifier": "Room_4_3d192209..Face4", - "face_type": "Floor", - "boundary_condition": { - "type": "Ground" + ], + "plane": { + "x": [ + 1.0, + 0.0, + 0.0 + ], + "type": "Plane", + "o": [ + 12.999462339761147, + -7.7921559452034819, + 0.0 + ], + "n": [ + 0.0, + 0.0, + -1.0 + ] + }, + "type": "Face3D" }, - "display_name": "Room_4_3d192209..Face4" - }, - { "properties": { "revive": { - "id_num": 0, - "type": "FaceRevivePropertiesAbridged" + "type": "FaceRevivePropertiesAbridged", + "id_num": 0 }, - "ph": { - "id_num": 0, - "type": "FacePhPropertiesAbridged" + "radiance": { + "type": "FaceRadiancePropertiesAbridged" }, "energy": { "type": "FaceEnergyPropertiesAbridged" }, - "radiance": { - "type": "FaceRadiancePropertiesAbridged" + "ph": { + "type": "FacePhPropertiesAbridged", + "id_num": 0 }, "ph_hvac": { "type": "FacePhHvacPropertiesAbridged" }, "type": "FacePropertiesAbridged" }, - "type": "Face", - "geometry": { - "plane": { - "x": [ - 1.0, - 0.0, - 0.0 - ], - "type": "Plane", - "n": [ - 0.0, - 0.0, - 1.0 - ], - "o": [ - 4.6523906598326512, - -10.788219090421832, - 3.3000000000000003 - ] - }, - "type": "Face3D", - "boundary": [ - [ - 5.4164426415671443, - -6.4550649771681172, - 3.3000000000000003 - ], - [ - 4.6523906598326512, - -10.788219090421832, - 3.3000000000000003 - ], - [ - 12.235410358026652, - -12.125310058457197, - 3.3000000000000003 - ], - [ - 12.999462339761147, - -7.7921559452034819, - 3.3000000000000003 - ] - ] - }, - "identifier": "Room_4_3d192209..Face5", + "type": "Face" + }, + { + "display_name": "Room_4_9460264b..Face5", "face_type": "RoofCeiling", "boundary_condition": { - "type": "Outdoors", "view_factor": { "type": "Autocalculate" }, - "sun_exposure": true, - "wind_exposure": true + "type": "Outdoors", + "wind_exposure": true, + "sun_exposure": true }, - "display_name": "Room_4_3d192209..Face5", "apertures": [ { - "properties": { - "revive": { - "id_num": 0, - "type": "ApertureRevivePropertiesAbridged" - }, - "ph": { - "summer_shading_factor": 0.75, - "type": "AperturePhPropertiesAbridged", - "winter_shading_factor": 0.75, - "default_monthly_shading_correction_factor": 1.0, - "install_depth": 0.1016, - "id_num": 0, - "variant_type": "_unnamed_type_" - }, - "energy": { - "type": "ApertureEnergyPropertiesAbridged" - }, - "radiance": { - "type": "ApertureRadiancePropertiesAbridged" - }, - "ph_hvac": { - "type": "AperturePhHvacPropertiesAbridged" + "display_name": "Room_4_9460264b..Face5_Glz0", + "is_operable": false, + "boundary_condition": { + "view_factor": { + "type": "Autocalculate" }, - "type": "AperturePropertiesAbridged" + "type": "Outdoors", + "wind_exposure": true, + "sun_exposure": true }, - "type": "Aperture", + "identifier": "Room_4_9460264b..Face5_Glz0", "geometry": { - "plane": { - "x": [ - 1.0, - 0.0, - 0.0 - ], - "type": "Plane", - "n": [ - 0.0, - 0.0, - 1.0 - ], - "o": [ - 11.236795656297232, - -11.294921891797244, - 3.3000000000000003 - ] - }, - "type": "Face3D", "boundary": [ [ 6.4150573432965654, @@ -6627,181 +7334,351 @@ -8.2309192343891606, 3.3000000000000003 ] - ] + ], + "plane": { + "x": [ + 1.0, + 0.0, + 0.0 + ], + "type": "Plane", + "o": [ + 11.236795656297232, + -11.294921891797244, + 3.3000000000000003 + ], + "n": [ + 0.0, + 0.0, + 1.0 + ] + }, + "type": "Face3D" }, - "is_operable": false, - "identifier": "Room_4_3d192209..Face5_Glz0", - "boundary_condition": { - "type": "Outdoors", - "view_factor": { - "type": "Autocalculate" + "properties": { + "revive": { + "type": "ApertureRevivePropertiesAbridged", + "id_num": 0 + }, + "radiance": { + "type": "ApertureRadiancePropertiesAbridged" + }, + "energy": { + "type": "ApertureEnergyPropertiesAbridged" + }, + "ph": { + "winter_shading_factor": 0.75, + "summer_shading_factor": 0.75, + "id_num": 0, + "variant_type": "_unnamed_type_", + "default_monthly_shading_correction_factor": 1.0, + "install_depth": 0.1016, + "type": "AperturePhPropertiesAbridged" + }, + "ph_hvac": { + "type": "AperturePhHvacPropertiesAbridged" + }, + "type": "AperturePropertiesAbridged" + }, + "type": "Aperture" + } + ], + "identifier": "Room_4_9460264b..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 + ] + ], + "plane": { + "x": [ + 1.0, + 0.0, + 0.0 + ], + "type": "Plane", + "o": [ + 4.6523906598326512, + -10.788219090421832, + 3.3000000000000003 + ], + "n": [ + 0.0, + 0.0, + 1.0 + ] + }, + "type": "Face3D" + }, + "properties": { + "revive": { + "type": "FaceRevivePropertiesAbridged", + "id_num": 0 + }, + "radiance": { + "type": "FaceRadiancePropertiesAbridged" + }, + "energy": { + "type": "FaceEnergyPropertiesAbridged" + }, + "ph": { + "type": "FacePhPropertiesAbridged", + "id_num": 0 + }, + "ph_hvac": { + "type": "FacePhHvacPropertiesAbridged" + }, + "type": "FacePropertiesAbridged" + }, + "type": "Face" + } + ], + "story": "2", + "identifier": "Room_4_9460264b", + "properties": { + "revive": { + "type": "RoomRevivePropertiesAbridged" + }, + "radiance": { + "type": "RoomRadiancePropertiesAbridged" + }, + "energy": { + "electric_equipment": { + "schedule": "Generic Office Equipment", + "latent_fraction": 0.0, + "identifier": "Generic Office Equipment_b910ced5", + "watts_per_area": 10.330000000000000, + "radiant_fraction": 0.5, + "type": "ElectricEquipmentAbridged", + "properties": { + "ph": { + "equipment_collection": { + "equipment_set": { + "c0b6cfbd-300c-4619-b6e6-01e62cc0b0fb": { + "display_name": "Kitchen cooking", + "comment": "default", + "reference_energy_norm": 1, + "_cooktop_type": { + "value": "1-ELECTRICITY" + }, + "combined_energy_factor": 0, + "identifier": "c0b6cfbd-300c-4619-b6e6-01e62cc0b0fb", + "energy_demand": 0.20000000000000001, + "reference_quantity": 1, + "user_data": {}, + "in_conditioned_space": true, + "energy_demand_per_use": 0, + "equipment_type": "PhCooktop", + "quantity": 1 + }, + "0f89b15e-c703-412d-9951-00f8a52c9fa4": { + "display_name": "Kitchen fridge/freeze combo", + "comment": "default", + "reference_energy_norm": 1, + "combined_energy_factor": 0, + "identifier": "0f89b15e-c703-412d-9951-00f8a52c9fa4", + "energy_demand": 1.2200000000000000, + "reference_quantity": 4, + "user_data": {}, + "in_conditioned_space": true, + "energy_demand_per_use": 0, + "equipment_type": "PhFridgeFreezer", + "quantity": 1 + }, + "5d74ce53-a0de-4a66-af2f-582048e3e748": { + "display_name": "PHIUS+ Interior Lighting", + "comment": "default", + "reference_energy_norm": 1, + "frac_high_efficiency": 1.0, + "combined_energy_factor": 0, + "identifier": "5d74ce53-a0de-4a66-af2f-582048e3e748", + "energy_demand": 0, + "reference_quantity": 6, + "user_data": {}, + "in_conditioned_space": true, + "energy_demand_per_use": 0, + "equipment_type": "PhPhiusLightingInterior", + "quantity": 1 + }, + "0c458b01-ee89-459f-a108-b8b93c016dbe": { + "display_name": "PHIUS+ MELS", + "comment": "default", + "reference_energy_norm": 1, + "combined_energy_factor": 0, + "identifier": "0c458b01-ee89-459f-a108-b8b93c016dbe", + "energy_demand": 0, + "reference_quantity": 3, + "user_data": {}, + "in_conditioned_space": true, + "energy_demand_per_use": 0, + "equipment_type": "PhPhiusMEL", + "quantity": 1 + }, + "77876772-90ca-484b-b1df-958270b36ae9": { + "display_name": "Laundry - dryer", + "comment": "default", + "gas_efficiency_factor": 2.6699999999999999, + "reference_energy_norm": 2, + "combined_energy_factor": 3.9300000000000002, + "field_utilization_factor": 1.1799999999999999, + "identifier": "77876772-90ca-484b-b1df-958270b36ae9", + "energy_demand": 0, + "reference_quantity": 1, + "user_data": {}, + "_dryer_type": { + "value": "5-ELECTRIC EXHAUST AIR DRYER" + }, + "gas_consumption": 0, + "field_utilization_factor_type": 1, + "in_conditioned_space": true, + "energy_demand_per_use": 0, + "equipment_type": "PhClothesDryer", + "quantity": 1 + }, + "f80d55eb-69e3-42f3-a8ea-bcb80ca965de": { + "display_name": "Laundry - washer", + "modified_energy_factor": 2.7000000000000002, + "comment": "default", + "utilization_factor": 1.0, + "reference_energy_norm": 2, + "capacity": 0.12740000000000001, + "combined_energy_factor": 0, + "identifier": "f80d55eb-69e3-42f3-a8ea-bcb80ca965de", + "energy_demand": 120, + "reference_quantity": 1, + "user_data": {}, + "_water_connection": { + "value": "2-COLD WATER CONNECTION" + }, + "in_conditioned_space": true, + "energy_demand_per_use": 0, + "equipment_type": "PhClothesWasher", + "quantity": 1 + }, + "93dce07c-19d9-4703-9b13-485cac9d4f77": { + "display_name": "PHIUS+ Exterior Lighting", + "comment": "default", + "reference_energy_norm": 1, + "frac_high_efficiency": 1.0, + "combined_energy_factor": 0, + "identifier": "93dce07c-19d9-4703-9b13-485cac9d4f77", + "energy_demand": 0, + "reference_quantity": 6, + "user_data": {}, + "in_conditioned_space": false, + "energy_demand_per_use": 0, + "equipment_type": "PhPhiusLightingExterior", + "quantity": 1 + }, + "663ca50f-c323-4a8a-ad51-66fbb063d10a": { + "display_name": "Kitchen dishwasher", + "comment": "default", + "reference_energy_norm": 2, + "capacity": 12, + "combined_energy_factor": 0, + "identifier": "663ca50f-c323-4a8a-ad51-66fbb063d10a", + "energy_demand": 269, + "capacity_type": 1, + "reference_quantity": 1, + "user_data": {}, + "_water_connection": { + "value": "2-COLD WATER CONNECTION" + }, + "in_conditioned_space": true, + "energy_demand_per_use": 0, + "equipment_type": "PhDishwasher", + "quantity": 1 + } + } }, - "sun_exposure": true, - "wind_exposure": true + "type": "ElectricEquipmentPhProperties" }, - "display_name": "Room_4_3d192209..Face5_Glz0" + "type": "ElectricEquipmentProperties", + "revive": { + "type": "ElectricEquipmentReviveProperties", + "id_num": 0 + } + }, + "lost_fraction": 0.0 + }, + "hvac": "Room_4_9460264b Ideal Loads Air System", + "construction_set": "ConstructionSet_ca1fd052", + "service_hot_water": { + "schedule": "Always On", + "sensible_fraction": 0.20000000000000001, + "latent_fraction": 0.050000000000000003, + "identifier": "Room_4_9460264b_service_hot_water", + "flow_per_area": 3.5714285714285717e-05, + "target_temperature": 60.0, + "type": "ServiceHotWaterAbridged", + "properties": { + "type": "ServiceHotWaterProperties", + "revive": { + "type": "ServiceHotWaterReviveProperties", + "id_num": 0 + } } - ] - } - ], - "properties": { - "revive": { - "type": "RoomRevivePropertiesAbridged" - }, - "ph": { - "ph_bldg_segment_id": "ae4ab714-315a-4c85-8dc6-b10e3f44423a", - "type": "RoomPhPropertiesAbridged", - "spaces": [ - { - "properties": { - "type": "SpaceProperties", - "ph": { - "_v_sup": null, - "type": "SpacePhProperties", - "_v_eta": null, - "id_num": 0, - "_v_tran": null + }, + "people": { + "people_per_area": 0.071428571428571425, + "latent_fraction": { + "type": "Autocalculate" + }, + "occupancy_schedule": "Generic Office Occupancy", + "identifier": "Generic Office People", + "radiant_fraction": 0.29999999999999999, + "type": "PeopleAbridged", + "properties": { + "ph": { + "number_bedrooms": 2, + "dwellings": { + "num_dwellings": 2, + "identifier": "d0a0c5f2-7546-4343-9981-c418459d5d6f" }, - "energy": { - "id_num": 0, - "type": "SpaceEnergyProperties" - } + "id_num": 0, + "number_people": 2, + "type": "PeoplePhProperties" }, - "quantity": 1, - "number": "102", - "volumes": [ - { - "floor": { - "geometry": { - "plane": { - "x": [ - 1.0, - 0.0, - 0.0 - ], - "type": "Plane", - "n": [ - 0.0, - 0.0, - 1.0 - ], - "o": [ - 5.2895414217061774, - -10.342081323981931, - 0.0 - ] - }, - "type": "Face3D", - "boundary": [ - [ - 5.2895414217061774, - -10.342081323981931, - 0.0 - ], - [ - 8.5394070066464636, - -10.915120310282800, - 0.0 - ], - [ - 9.1124459929473343, - -7.6652547253425141, - 0.0 - ], - [ - 5.8625804080070480, - -7.0922157390416434, - 0.0 - ] - ] - }, - "identifier": "cc24d3e4-d33c-46b6-931e-2e07e6841ce7", - "floor_segments": [ - { - "weighted_floor_area": 10.890000000000001, - "net_floor_area": 10.890000000000001, - "reference_point": { - "x": 7.2009937073267549, - "type": "Point3D", - "y": -9.0036680246622218, - "z": 0.11000000000000001 - }, - "net_area_factor": 1.0, - "geometry": { - "plane": { - "x": [ - 1.0, - 0.0, - 0.0 - ], - "type": "Plane", - "n": [ - 0.0, - 0.0, - 1.0 - ], - "o": [ - 5.2895414217061774, - -10.342081323981931, - 0.0 - ] - }, - "type": "Face3D", - "boundary": [ - [ - 5.2895414217061774, - -10.342081323981931, - 0.0 - ], - [ - 8.5394070066464636, - -10.915120310282800, - 0.0 - ], - [ - 9.1124459929473343, - -7.6652547253425141, - 0.0 - ], - [ - 5.8625804080070480, - -7.0922157390416434, - 0.0 - ] - ] - }, - "identifier": "847e84ee-feba-4571-b857-388ee4decb93", - "user_data": {}, - "floor_area": 10.890000000000001, - "weighted_net_floor_area": 10.890000000000001, - "display_name": "847e84ee-feba-4571-b857-388ee4decb93", - "weighting_factor": 1.0 - } - ], - "user_data": {}, - "display_name": "cc24d3e4-d33c-46b6-931e-2e07e6841ce7" - }, - "geometry": [ - { - "plane": { - "x": [ - 0.17364817766693044, - 0.98480775301220813, - 0.0 - ], - "type": "Plane", - "n": [ - -0.98480775301220813, - 0.17364817766693044, - 0.0 - ], - "o": [ - 5.2895414217061774, - -10.342081323981931, - 2.75 - ] - }, - "type": "Face3D", + "type": "PeopleProperties", + "revive": { + "type": "PeopleReviveProperties", + "id_num": 0 + } + }, + "activity_schedule": "Seated Adult Activity" + }, + "type": "RoomEnergyPropertiesAbridged", + "program_type": "Generic Office Program" + }, + "ph": { + "ph_foundations": [], + "ph_bldg_segment_id": "610a5608-d5d4-4d0f-b76e-b7b29a1a5edf", + "spaces": [ + { + "volumes": [ + { + "display_name": "8e6e4290-1db1-480f-bf61-5c4ab21965ce", + "avg_ceiling_height": 2.75, + "identifier": "8e6e4290-1db1-480f-bf61-5c4ab21965ce", + "geometry": [ + { "boundary": [ [ 5.2895414217061774, @@ -6823,28 +7700,28 @@ -10.342081323981931, 0.0 ] - ] - }, - { + ], "plane": { "x": [ - 0.98480775301220802, - -0.17364817766693053, + 0.17364817766693044, + 0.98480775301220813, 0.0 ], "type": "Plane", - "n": [ - 0.17364817766693053, - 0.98480775301220802, - 0.0 - ], "o": [ - 5.8625804080070480, - -7.0922157390416434, + 5.2895414217061774, + -10.342081323981931, 2.75 + ], + "n": [ + -0.98480775301220813, + 0.17364817766693044, + 0.0 ] }, - "type": "Face3D", + "type": "Face3D" + }, + { "boundary": [ [ 5.8625804080070480, @@ -6866,28 +7743,28 @@ -7.0922157390416434, 0.0 ] - ] - }, - { + ], "plane": { "x": [ + 0.98480775301220802, -0.17364817766693053, - -0.98480775301220802, 0.0 ], "type": "Plane", + "o": [ + 5.8625804080070480, + -7.0922157390416434, + 2.75 + ], "n": [ + 0.17364817766693053, 0.98480775301220802, - -0.17364817766693053, 0.0 - ], - "o": [ - 9.1124459929473343, - -7.6652547253425141, - 2.75 ] }, - "type": "Face3D", + "type": "Face3D" + }, + { "boundary": [ [ 9.1124459929473343, @@ -6909,28 +7786,28 @@ -7.6652547253425141, 0.0 ] - ] - }, - { + ], "plane": { "x": [ - -0.98480775301220813, - 0.17364817766693003, + -0.17364817766693053, + -0.98480775301220802, 0.0 ], "type": "Plane", - "n": [ - -0.17364817766693003, - -0.98480775301220813, - 0.0 - ], "o": [ - 8.5394070066464636, - -10.915120310282800, + 9.1124459929473343, + -7.6652547253425141, 2.75 + ], + "n": [ + 0.98480775301220802, + -0.17364817766693053, + 0.0 ] }, - "type": "Face3D", + "type": "Face3D" + }, + { "boundary": [ [ 8.5394070066464636, @@ -6952,28 +7829,28 @@ -10.915120310282800, 0.0 ] - ] - }, - { + ], "plane": { "x": [ - 1.0, - 0.0, + -0.98480775301220813, + 0.17364817766693003, 0.0 ], "type": "Plane", - "n": [ - 0.0, - 0.0, - -1.0 - ], "o": [ - 5.8625804080070480, - -7.0922157390416434, + 8.5394070066464636, + -10.915120310282800, + 2.75 + ], + "n": [ + -0.17364817766693003, + -0.98480775301220813, 0.0 ] }, - "type": "Face3D", + "type": "Face3D" + }, + { "boundary": [ [ 5.8625804080070480, @@ -6995,9 +7872,7 @@ -10.342081323981931, 0.0 ] - ] - }, - { + ], "plane": { "x": [ 1.0, @@ -7005,18 +7880,20 @@ 0.0 ], "type": "Plane", + "o": [ + 5.8625804080070480, + -7.0922157390416434, + 0.0 + ], "n": [ 0.0, 0.0, - 1.0 - ], - "o": [ - 8.5394070066464636, - -10.915120310282800, - 2.75 + -1.0 ] }, - "type": "Face3D", + "type": "Face3D" + }, + { "boundary": [ [ 8.5394070066464636, @@ -7038,444 +7915,454 @@ -10.342081323981931, 2.75 ] - ] + ], + "plane": { + "x": [ + 1.0, + 0.0, + 0.0 + ], + "type": "Plane", + "o": [ + 8.5394070066464636, + -10.915120310282800, + 2.75 + ], + "n": [ + 0.0, + 0.0, + 1.0 + ] + }, + "type": "Face3D" } ], - "identifier": "be937511-0e68-4179-81fb-7f94d84c51c9", "user_data": {}, - "avg_ceiling_height": 2.75, - "display_name": "be937511-0e68-4179-81fb-7f94d84c51c9" - } - ], - "identifier": "663dd5f0-ef0e-4098-a774-e61902492812", - "user_data": {}, - "name": "Room_4", - "wufi_type": 99 - } - ], - "specific_heat_capacity": "1-LIGHTWEIGHT", - "ph_foundations": [] - }, - "energy": { - "electric_equipment": { - "schedule": "Generic Office Equipment", - "properties": { - "ph": { - "equipment_collection": { - "equipment_set": { - "8591e81d-9753-467a-87ed-d09c721aa4b8": { - "equipment_type": "PhPhiusLightingInterior", - "reference_energy_norm": 1, - "energy_demand_per_use": 0, - "energy_demand": 0, - "frac_high_efficiency": 1.0, - "quantity": 1, - "reference_quantity": 6, - "comment": "default", - "identifier": "8591e81d-9753-467a-87ed-d09c721aa4b8", - "in_conditioned_space": true, - "user_data": {}, - "display_name": "PHIUS+ Interior Lighting", - "combined_energy_factor": 0 - }, - "aee7b203-f128-4380-b41b-4b1515ab4274": { - "equipment_type": "PhPhiusLightingExterior", - "reference_energy_norm": 1, - "energy_demand_per_use": 0, - "energy_demand": 0, - "frac_high_efficiency": 1.0, - "quantity": 1, - "reference_quantity": 6, - "comment": "default", - "identifier": "aee7b203-f128-4380-b41b-4b1515ab4274", - "in_conditioned_space": false, - "user_data": {}, - "display_name": "PHIUS+ Exterior Lighting", - "combined_energy_factor": 0 - }, - "63c30b01-e99b-49b7-8040-b791bde9dc39": { - "equipment_type": "PhPhiusMEL", - "reference_energy_norm": 1, - "energy_demand_per_use": 0, - "energy_demand": 0, - "quantity": 1, - "reference_quantity": 3, - "comment": "default", - "identifier": "63c30b01-e99b-49b7-8040-b791bde9dc39", - "in_conditioned_space": true, - "user_data": {}, - "display_name": "PHIUS+ MELS", - "combined_energy_factor": 0 - }, - "4ee90ddf-657e-4879-982d-ccc3d00571e8": { - "equipment_type": "PhClothesWasher", - "reference_energy_norm": 2, - "energy_demand_per_use": 0, - "energy_demand": 120, - "_water_connection": { - "value": "2-COLD WATER CONNECTION" - }, - "quantity": 1, - "capacity": 0.12740000000000001, - "modified_energy_factor": 2.7000000000000002, - "reference_quantity": 1, - "comment": "default", - "identifier": "4ee90ddf-657e-4879-982d-ccc3d00571e8", - "in_conditioned_space": true, - "user_data": {}, - "utilization_factor": 1.0, - "display_name": "Laundry - washer", - "combined_energy_factor": 0 - }, - "489809fe-0e72-45a2-9a11-e3c0f53a6ea1": { - "equipment_type": "PhDishwasher", - "reference_energy_norm": 2, - "energy_demand_per_use": 0, - "energy_demand": 269, - "capacity_type": 1, - "quantity": 1, - "_water_connection": { - "value": "2-COLD WATER CONNECTION" - }, - "capacity": 12, - "reference_quantity": 1, - "comment": "default", - "identifier": "489809fe-0e72-45a2-9a11-e3c0f53a6ea1", - "in_conditioned_space": true, - "user_data": {}, - "display_name": "Kitchen dishwasher", - "combined_energy_factor": 0 - }, - "abb349b2-7e79-478c-9cf0-42806e24931f": { - "equipment_type": "PhCooktop", - "reference_energy_norm": 1, - "energy_demand_per_use": 0, - "energy_demand": 0.20000000000000001, - "quantity": 1, - "reference_quantity": 1, - "_cooktop_type": { - "value": "1-ELECTRICITY" - }, - "comment": "default", - "identifier": "abb349b2-7e79-478c-9cf0-42806e24931f", - "in_conditioned_space": true, - "user_data": {}, - "display_name": "Kitchen cooking", - "combined_energy_factor": 0 - }, - "c28bc98d-0db5-4041-8aa3-dd7125402a77": { - "equipment_type": "PhClothesDryer", - "reference_energy_norm": 2, - "energy_demand_per_use": 0, - "energy_demand": 0, - "gas_consumption": 0, - "quantity": 1, - "field_utilization_factor_type": 1, - "_dryer_type": { - "value": "5-ELECTRIC EXHAUST AIR DRYER" + "floor": { + "display_name": "313cd7db-a582-40e4-87c3-3b1f911f4ef0", + "floor_segments": [ + { + "display_name": "f9624f58-9208-447a-9db8-eb095aed397c", + "reference_point": { + "y": -9.0036680246622218, + "x": 7.2009937073267549, + "type": "Point3D", + "z": 0.11000000000000001 + }, + "floor_area": 10.890000000000001, + "weighted_floor_area": 10.890000000000001, + "net_area_factor": 1.0, + "identifier": "f9624f58-9208-447a-9db8-eb095aed397c", + "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": { + "x": [ + 1.0, + 0.0, + 0.0 + ], + "type": "Plane", + "o": [ + 5.2895414217061774, + -10.342081323981931, + 0.0 + ], + "n": [ + 0.0, + 0.0, + 1.0 + ] + }, + "type": "Face3D" + }, + "user_data": {}, + "net_floor_area": 10.890000000000001, + "weighted_net_floor_area": 10.890000000000001 + } + ], + "identifier": "313cd7db-a582-40e4-87c3-3b1f911f4ef0", + "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": { + "x": [ + 1.0, + 0.0, + 0.0 + ], + "type": "Plane", + "o": [ + 5.2895414217061774, + -10.342081323981931, + 0.0 + ], + "n": [ + 0.0, + 0.0, + 1.0 + ] }, - "reference_quantity": 1, - "comment": "default", - "identifier": "c28bc98d-0db5-4041-8aa3-dd7125402a77", - "in_conditioned_space": true, - "user_data": {}, - "gas_efficiency_factor": 2.6699999999999999, - "field_utilization_factor": 1.1799999999999999, - "display_name": "Laundry - dryer", - "combined_energy_factor": 3.9300000000000002 + "type": "Face3D" }, - "825dd9f1-ffb0-4566-b4d0-e997ddd77e71": { - "equipment_type": "PhFridgeFreezer", - "reference_energy_norm": 1, - "energy_demand_per_use": 0, - "energy_demand": 1.2200000000000000, - "quantity": 1, - "reference_quantity": 4, - "comment": "default", - "identifier": "825dd9f1-ffb0-4566-b4d0-e997ddd77e71", - "in_conditioned_space": true, - "user_data": {}, - "display_name": "Kitchen fridge/freeze combo", - "combined_energy_factor": 0 - } + "user_data": {} } + } + ], + "name": "Room_4", + "number": "102", + "identifier": "d0aff04d-abeb-40f0-83aa-dafd8b6cba5b", + "user_data": {}, + "wufi_type": 99, + "properties": { + "energy": { + "type": "SpaceEnergyProperties", + "id_num": 0 }, - "type": "ElectricEquipmentPhProperties" - }, - "type": "ElectricEquipmentProperties", - "revive": { - "id_num": 0, - "type": "ElectricEquipmentReviveProperties" - } - }, - "type": "ElectricEquipmentAbridged", - "radiant_fraction": 0.5, - "identifier": "Generic Office Equipment_f8ae3c35", - "lost_fraction": 0.0, - "watts_per_area": 10.330000000000000, - "latent_fraction": 0.0 - }, - "type": "RoomEnergyPropertiesAbridged", - "program_type": "Generic Office Program", - "hvac": "Room_4_3d192209 Ideal Loads Air System", - "people": { - "occupancy_schedule": "Generic Office Occupancy", - "properties": { - "ph": { - "number_people": 2, - "dwellings": { - "identifier": "840d7bfa-7059-43e5-b3f0-2e64a9a2b7a2", - "num_dwellings": 2 - }, - "type": "PeoplePhProperties", - "number_bedrooms": 2, - "id_num": 0 + "type": "SpaceProperties", + "ph": { + "_v_tran": null, + "_v_sup": null, + "_v_eta": null, + "id_num": 0, + "type": "SpacePhProperties" + } }, - "type": "PeopleProperties", - "revive": { - "id_num": 0, - "type": "PeopleReviveProperties" - } - }, - "type": "PeopleAbridged", - "radiant_fraction": 0.29999999999999999, - "people_per_area": 0.071428571428571425, - "identifier": "Generic Office People", - "activity_schedule": "Seated Adult Activity", - "latent_fraction": { - "type": "Autocalculate" + "quantity": 1 } - }, - "construction_set": "ConstructionSet_d1bba653", - "service_hot_water": { - "target_temperature": 60.0, - "schedule": "Always On", - "properties": { - "revive": { - "id_num": 0, - "type": "ServiceHotWaterReviveProperties" - }, - "type": "ServiceHotWaterProperties" - }, - "type": "ServiceHotWaterAbridged", - "sensible_fraction": 0.20000000000000001, - "flow_per_area": 3.5714285714285717e-05, - "identifier": "Room_4_3d192209_service_hot_water", - "latent_fraction": 0.050000000000000003 - } - }, - "radiance": { - "type": "RoomRadiancePropertiesAbridged" + ], + "type": "RoomPhPropertiesAbridged", + "specific_heat_capacity": "1-LIGHTWEIGHT" }, "ph_hvac": { - "supportive_devices": [ - { - "device_type": 10, - "quantity": 3, - "norm_energy_demand_W": 123.0, - "annual_period_operation_khrs": 6.5, - "identifier": "89e5962e-5cb1-480d-98eb-fa922088d918", - "in_conditioned_space": false, - "user_data": {}, - "display_name": "Example Device", - "device_class_name": "PhSupportiveDevice" - } - ], - "type": "RoomPhHvacPropertiesAbridged", - "renewable_devices": [ - { - "array_size": 0.0, - "photovoltaic_renewable_energy": 1000.0, - "device_typename": "PhPhotovoltaicDevice", - "percent_coverage": 1.0, - "identifier": "0294aff9-a8c7-4ba9-a72b-a49a08b466f6", - "user_data": {}, - "utilization_factor": 1.0, - "display_name": "my_PV_system" - } - ], + "heating_systems": [], "heat_pump_systems": [ { - "heat_pump_class_name": "PhHeatPumpRatedMonthly", - "COP_1": 2.5, - "percent_coverage": 1.0, + "display_name": "None", "ambient_temp_1": -8.3330000000000002, - "identifier": "6e72cdb2-0052-432d-ae18-903cafa24c12", + "percent_coverage": 1.0, + "identifier": "78faf1ae-e768-460c-8443-e4da7b2fd584", + "COP_2": 2.5, + "heat_pump_class_name": "PhHeatPumpRatedMonthly", + "user_data": {}, + "ambient_temp_2": 8.3330000000000002, "cooling_params": { + "percent_coverage": 1.0, "panel": { + "display_name": "69b568ef-e953-420e-8583-1b3011ee9848", + "annual_COP": 4.0, + "identifier": "69b568ef-e953-420e-8583-1b3011ee9848", "used": false, + "user_data": {} + }, + "recirculation": { + "display_name": "69f6540a-7881-4dbb-88b5-b3ff5c04ea41", "annual_COP": 4.0, - "identifier": "ef79f140-fe6d-4287-accf-c926a631bde8", + "capacity": 10.0, + "flow_rate_m3_hr": 100.0, + "identifier": "69f6540a-7881-4dbb-88b5-b3ff5c04ea41", + "min_coil_temp": 12.0, + "used": false, "user_data": {}, - "display_name": "ef79f140-fe6d-4287-accf-c926a631bde8" + "flow_rate_variable": true, + "single_speed": false }, - "percent_coverage": 1.0, "ventilation": { - "single_speed": false, - "used": false, - "capacity": 10.0, + "display_name": "90a17848-a72c-4f20-818a-64b13356929f", "annual_COP": 4.0, - "identifier": "9a33f3c3-a529-489a-9a91-7a5eb5b461af", - "user_data": {}, + "capacity": 10.0, + "identifier": "90a17848-a72c-4f20-818a-64b13356929f", "min_coil_temp": 12.0, - "display_name": "9a33f3c3-a529-489a-9a91-7a5eb5b461af" + "used": false, + "user_data": {}, + "single_speed": false }, "dehumidification": { + "display_name": "ed78a7b9-8a68-4a8b-9c24-b15cb1bdd042", "useful_heat_loss": false, - "used": false, "annual_COP": 4.0, - "identifier": "4abe0b2c-2aac-4bf7-9441-0aaf9937758b", - "user_data": {}, - "display_name": "4abe0b2c-2aac-4bf7-9441-0aaf9937758b" - }, - "recirculation": { - "single_speed": false, - "flow_rate_m3_hr": 100.0, + "identifier": "ed78a7b9-8a68-4a8b-9c24-b15cb1bdd042", "used": false, - "flow_rate_variable": true, - "capacity": 10.0, - "annual_COP": 4.0, - "identifier": "843e6c1e-6646-4a65-8a36-bc2334a88285", - "user_data": {}, - "min_coil_temp": 12.0, - "display_name": "843e6c1e-6646-4a65-8a36-bc2334a88285" + "user_data": {} } }, - "user_data": {}, - "COP_2": 2.5, - "ambient_temp_2": 8.3330000000000002, - "display_name": "None" + "COP_1": 2.5 }, { - "heat_pump_class_name": "PhHeatPumpRatedMonthly", - "COP_1": 3.3999999999999999, - "percent_coverage": 1.0, + "display_name": "Example_Heat_Pump", "ambient_temp_1": -3.3300000000000001, - "identifier": "9e64d011-dab5-463d-9323-acf41daeaea3", + "percent_coverage": 1.0, + "identifier": "c1472eba-d74e-43ee-af9d-29c3b23f4144", + "COP_2": 4.1200000000000001, + "heat_pump_class_name": "PhHeatPumpRatedMonthly", + "user_data": {}, + "ambient_temp_2": 12.0, "cooling_params": { + "percent_coverage": 1.0, "panel": { - "used": false, + "display_name": "75a4b9a1-b8c5-49ae-a139-f1e2947907f6", "annual_COP": 4.0, - "identifier": "85ccb82b-cc69-4372-a7a0-447d1a22e3d6", + "identifier": "75a4b9a1-b8c5-49ae-a139-f1e2947907f6", + "used": false, + "user_data": {} + }, + "recirculation": { + "display_name": "_unnamed_recirculation_cooling__b8f94ba3", + "annual_COP": 2.0, + "capacity": 10.0, + "flow_rate_m3_hr": 100.08000000000000, + "identifier": "1feb503d-bdea-462f-a86f-883870e0c757", + "min_coil_temp": 12.0, + "used": true, "user_data": {}, - "display_name": "85ccb82b-cc69-4372-a7a0-447d1a22e3d6" + "flow_rate_variable": true, + "single_speed": false }, - "percent_coverage": 1.0, "ventilation": { - "single_speed": false, - "used": false, - "capacity": 10.0, + "display_name": "e64aef74-441b-40be-80ee-4d627f66656b", "annual_COP": 4.0, - "identifier": "2209334c-eef0-4043-a034-f56393a47160", - "user_data": {}, + "capacity": 10.0, + "identifier": "e64aef74-441b-40be-80ee-4d627f66656b", "min_coil_temp": 12.0, - "display_name": "2209334c-eef0-4043-a034-f56393a47160" + "used": false, + "user_data": {}, + "single_speed": false }, "dehumidification": { + "display_name": "_unnamed_dehumidification_cooling__c5b6593e", "useful_heat_loss": false, - "used": true, - "annual_COP": 2.0, - "identifier": "f4ea1de5-2eca-4581-9344-a093baa0b85c", - "user_data": {}, - "display_name": "_unnamed_dehumidification_cooling__15919767" - }, - "recirculation": { - "single_speed": false, - "flow_rate_m3_hr": 100.08000000000000, - "used": true, - "flow_rate_variable": true, - "capacity": 10.0, "annual_COP": 2.0, - "identifier": "75833f07-96ce-4cb2-b6e6-27bac5aee4f5", - "user_data": {}, - "min_coil_temp": 12.0, - "display_name": "_unnamed_recirculation_cooling__96a4db0b" + "identifier": "0adb1b34-54f9-4753-8242-4b28e5de9b36", + "used": true, + "user_data": {} } }, + "COP_1": 3.3999999999999999 + } + ], + "exhaust_vent_devices": [ + { + "display_name": "example_dryer_vent", + "annual_runtime_minutes": 7.625, + "exhaust_flow_rate_m3s": 123.0, + "identifier": "cbd00d8e-2701-4700-93ef-c3ce367b8688", + "device_class_name": "ExhaustVentDryer", "user_data": {}, - "COP_2": 4.1200000000000001, - "ambient_temp_2": 12.0, - "display_name": "Example_Heat_Pump" + "quantity": 1 + } + ], + "supportive_devices": [ + { + "display_name": "Example Device", + "norm_energy_demand_W": 123.0, + "device_type": 10, + "identifier": "4154c3f3-9af8-4edb-b8d8-a8ccb314f613", + "annual_period_operation_khrs": 6.5, + "device_class_name": "PhSupportiveDevice", + "user_data": {}, + "in_conditioned_space": false, + "quantity": 3 } ], "id_num": 0, - "heating_systems": [], + "renewable_devices": [ + { + "display_name": "my_PV_system", + "utilization_factor": 1.0, + "percent_coverage": 1.0, + "device_typename": "PhPhotovoltaicDevice", + "identifier": "328b44ad-d910-44bc-a2dd-26fd04b0e552", + "photovoltaic_renewable_energy": 1000.0, + "user_data": {}, + "array_size": 0.0 + } + ], + "type": "RoomPhHvacPropertiesAbridged", "hot_water_system": { - "type": "PhHvacHotWaterSystemPh", + "display_name": "SHW System_d1196a26", + "heaters": { + "6b5d3717-5e15-4584-9653-a21b646976ec": { + "display_name": "6b5d3717-5e15-4584-9653-a21b646976ec", + "annual_COP": null, + "total_system_perf_ratio": null, + "percent_coverage": 1.0, + "heater_type": "PhHvacHotWaterHeaterHeatPump_Annual", + "identifier": "6b5d3717-5e15-4584-9653-a21b646976ec", + "user_data": {}, + "in_conditioned_space": true + } + }, + "recirc_temp": 48.0, + "recirc_piping": { + "93549b5f-6965-445d-a4fb-594211183d9f": { + "display_name": "_unnamed_", + "identifier": "93549b5f-6965-445d-a4fb-594211183d9f", + "user_data": {}, + "segments": { + "fc3c972e-7c34-417c-b89d-4ed698135049": { + "display_name": "fc3c972e-7c34-417c-b89d-4ed698135049", + "material_value": "2-COPPER_L", + "insulation_thickness_mm": 25.399999999999999, + "daily_period": 23.0, + "insulation_reflective": true, + "water_temp_c": 48.0, + "identifier": "fc3c972e-7c34-417c-b89d-4ed698135049", + "geometry": { + "v": [ + 0.0, + 0.0, + 1.1000000000000001 + ], + "type": "LineSegment3D", + "p": [ + 0.0, + -5.5, + 0.0 + ] + }, + "insulation_conductivity": 0.040000000000000001, + "diameter_mm": 25.399999999999999, + "user_data": {}, + "insulation_quality": null + } + } + } + }, + "recirc_hours": 23, + "tank_solar": { + "display_name": "_unnamed_hw_tank_", + "_tank_type": { + "value": "2-DHW ONLY" + }, + "standby_losses": 4.0, + "storage_loss_rate": 0.0, + "solar_losses": 0.0, + "solar_connection": false, + "water_temp": 60, + "identifier": "6bba8ac3-f1ee-4a00-82e7-72a99b83f0ec", + "user_data": {}, + "room_temp": 20, + "in_conditioned_space": true, + "standby_fraction": 0.29999999999999999, + "storage_capacity": 300, + "quantity": 1 + }, + "id_num": 0, + "identifier": "a4c1682c-cdd8-4fd0-9682-e4d00c45c8d1", "distribution_piping": { - "4d8200b6-c134-4cd8-b11a-b8b81861cf62": { + "7b1d01bd-493e-4a78-b316-6abb02f56691": { + "display_name": "Test_Trunk", "multiplier": 1, - "identifier": "4d8200b6-c134-4cd8-b11a-b8b81861cf62", - "user_data": {}, "branches": { - "16708b7b-39a7-48d1-8c83-dff26d59a0f9": { - "identifier": "16708b7b-39a7-48d1-8c83-dff26d59a0f9", - "user_data": {}, + "4062c18c-54af-4256-b02e-548750e74700": { + "display_name": "Test_Branch", "pipe_element": { - "identifier": "0f8cb0d9-e423-4981-8fce-8a7fa1cb592d", - "display_name": "0f8cb0d9-e423-4981-8fce-8a7fa1cb592d", + "display_name": "40323c0f-313c-4774-96ce-22af83111410", + "identifier": "40323c0f-313c-4774-96ce-22af83111410", "user_data": {}, "segments": { - "f6738ddd-0439-49a7-a825-0107d395b22d": { - "diameter_mm": 19.049999999999997, - "insulation_quality": null, - "daily_period": 24, + "1a1b385d-4103-4c89-ab47-2ac337c2d837": { + "display_name": "1a1b385d-4103-4c89-ab47-2ac337c2d837", "material_value": "3-COPPER_K", + "insulation_thickness_mm": 0.0, + "daily_period": 24, "insulation_reflective": false, "water_temp_c": 60.0, - "insulation_conductivity": 0.040000000000000001, + "identifier": "1a1b385d-4103-4c89-ab47-2ac337c2d837", "geometry": { + "v": [ + 0.0, + 0.0, + 5.5 + ], "type": "LineSegment3D", "p": [ 0.0, -5.5, 0.0 - ], - "v": [ - 0.0, - 0.0, - 5.5 ] }, - "identifier": "f6738ddd-0439-49a7-a825-0107d395b22d", - "insulation_thickness_mm": 0.0, + "insulation_conductivity": 0.040000000000000001, + "diameter_mm": 19.049999999999997, "user_data": {}, - "display_name": "f6738ddd-0439-49a7-a825-0107d395b22d" + "insulation_quality": null } } }, - "display_name": "Test_Branch", + "identifier": "4062c18c-54af-4256-b02e-548750e74700", + "user_data": {}, "fixtures": { - "d5ef91cd-236d-48a5-9e37-709a405e4387": { - "identifier": "d5ef91cd-236d-48a5-9e37-709a405e4387", + "dcd7c5b4-10a4-46ec-9ceb-7379ced12284": { "display_name": "Test_Fixture", + "identifier": "dcd7c5b4-10a4-46ec-9ceb-7379ced12284", "user_data": {}, "segments": { - "8960f475-ef38-4f46-b1cf-528619f949a9": { - "diameter_mm": 9.5249999999999986, - "insulation_quality": null, - "daily_period": 24, + "897038fa-e42d-4cd7-9cdc-f34b9338029b": { + "display_name": "897038fa-e42d-4cd7-9cdc-f34b9338029b", "material_value": "1-COPPER_M", + "insulation_thickness_mm": 0.0, + "daily_period": 24, "insulation_reflective": false, "water_temp_c": 55.0, - "insulation_conductivity": 0.040000000000000001, + "identifier": "897038fa-e42d-4cd7-9cdc-f34b9338029b", "geometry": { + "v": [ + 0.0, + 0.0, + 5.5 + ], "type": "LineSegment3D", "p": [ 0.0, -5.5, 0.0 - ], - "v": [ - 0.0, - 0.0, - 5.5 ] }, - "identifier": "8960f475-ef38-4f46-b1cf-528619f949a9", - "insulation_thickness_mm": 0.0, + "insulation_conductivity": 0.040000000000000001, + "diameter_mm": 9.5249999999999986, "user_data": {}, - "display_name": "8960f475-ef38-4f46-b1cf-528619f949a9" + "insulation_quality": null } } } @@ -7483,221 +8370,137 @@ } }, "pipe_element": { - "identifier": "45e58dbc-6cd2-4474-b902-0b8dec6af446", - "display_name": "45e58dbc-6cd2-4474-b902-0b8dec6af446", + "display_name": "b6f9ece6-a696-4c97-baa2-b7fdee47a35f", + "identifier": "b6f9ece6-a696-4c97-baa2-b7fdee47a35f", "user_data": {}, "segments": { - "d25af768-4529-49b4-bfbf-565f21ff20b2": { - "diameter_mm": 38.099999999999994, - "insulation_quality": null, - "daily_period": 24, + "d6ad938e-1179-4610-b491-f31e74cffec4": { + "display_name": "d6ad938e-1179-4610-b491-f31e74cffec4", "material_value": "6-PEX", + "insulation_thickness_mm": 0.0, + "daily_period": 24, "insulation_reflective": false, "water_temp_c": 60.0, - "insulation_conductivity": 0.040000000000000001, + "identifier": "d6ad938e-1179-4610-b491-f31e74cffec4", "geometry": { + "v": [ + 0.0, + 0.0, + 5.5 + ], "type": "LineSegment3D", "p": [ 0.0, -5.5, 0.0 - ], - "v": [ - 0.0, - 0.0, - 5.5 ] }, - "identifier": "d25af768-4529-49b4-bfbf-565f21ff20b2", - "insulation_thickness_mm": 0.0, + "insulation_conductivity": 0.040000000000000001, + "diameter_mm": 38.099999999999994, "user_data": {}, - "display_name": "d25af768-4529-49b4-bfbf-565f21ff20b2" + "insulation_quality": null } } }, - "display_name": "Test_Trunk" - } - }, - "recirc_piping": { - "620ab83b-bb5c-4a73-a524-09e8b4b218c7": { - "identifier": "620ab83b-bb5c-4a73-a524-09e8b4b218c7", - "display_name": "_unnamed_", - "user_data": {}, - "segments": { - "c2c24192-9736-4d86-a4a0-b5369405e889": { - "diameter_mm": 25.399999999999999, - "insulation_quality": null, - "daily_period": 23.0, - "material_value": "2-COPPER_L", - "insulation_reflective": true, - "water_temp_c": 48.0, - "insulation_conductivity": 0.040000000000000001, - "geometry": { - "type": "LineSegment3D", - "p": [ - 0.0, - -5.5, - 0.0 - ], - "v": [ - 0.0, - 0.0, - 1.1000000000000001 - ] - }, - "identifier": "c2c24192-9736-4d86-a4a0-b5369405e889", - "insulation_thickness_mm": 25.399999999999999, - "user_data": {}, - "display_name": "c2c24192-9736-4d86-a4a0-b5369405e889" - } - } + "identifier": "7b1d01bd-493e-4a78-b316-6abb02f56691", + "user_data": {} } }, "number_tap_points": 1, - "recirc_temp": 48.0, - "recirc_hours": 23, - "tank_solar": { - "room_temp": 20, - "quantity": 1, - "water_temp": 60, - "solar_losses": 0.0, - "storage_loss_rate": 0.0, - "identifier": "58b8378d-0a80-4684-9ee8-5c903bf5a40e", - "standby_losses": 4.0, - "in_conditioned_space": true, - "user_data": {}, - "_tank_type": { - "value": "2-DHW ONLY" - }, - "solar_connection": false, - "storage_capacity": 300, - "standby_fraction": 0.29999999999999999, - "display_name": "_unnamed_hw_tank_" - }, - "id_num": 0, - "identifier": "167c8fe7-e39a-45fa-8943-33a5ede85c9b", - "heaters": { - "874b245d-b0f9-4f12-847b-3a0f284c91dc": { - "heater_type": "PhHvacHotWaterHeaterHeatPump_Annual", - "annual_COP": null, - "percent_coverage": 1.0, - "identifier": "874b245d-b0f9-4f12-847b-3a0f284c91dc", - "in_conditioned_space": true, - "user_data": {}, - "total_system_perf_ratio": null, - "display_name": "874b245d-b0f9-4f12-847b-3a0f284c91dc" - } - }, - "display_name": "SHW System_71fd7432" + "type": "PhHvacHotWaterSystemPh" }, - "exhaust_vent_devices": [ - { - "quantity": 1, - "exhaust_flow_rate_m3s": 123.0, - "annual_runtime_minutes": 7.625, - "identifier": "e71507c4-71ac-4082-a53a-e39d167fd1ed", - "user_data": {}, - "display_name": "example_dryer_vent", - "device_class_name": "ExhaustVentDryer" - } - ], "ventilation_system": { + "display_name": "Test_Vent_System", "exhaust_ducting": [ { + "display_name": "Test_Vent_System_exhaust", "duct_type": 2, - "identifier": "6f3034b8-bbe1-4da7-bd69-0456e0e01bd7", - "user_data": {}, "segments": { - "6ae9834b-2ba2-404e-908d-754727249062": { + "9d976cd5-4d84-400f-950d-0f541d87d461": { + "display_name": "9d976cd5-4d84-400f-950d-0f541d87d461", "width": null, "insulation_reflective": true, - "insulation_conductivity": 0.040000000000000001, + "identifier": "9d976cd5-4d84-400f-950d-0f541d87d461", "geometry": { + "v": [ + 1.0832885283134288, + -0.19101299543362338, + 0.0 + ], "type": "LineSegment3D", "p": [ 0.0, -5.5, 0.0 - ], - "v": [ - 1.0832885283134288, - -0.19101299543362338, - 0.0 ] }, - "identifier": "6ae9834b-2ba2-404e-908d-754727249062", - "user_data": {}, "height": null, - "insulation_thickness": 0.02794, - "display_name": "6ae9834b-2ba2-404e-908d-754727249062", - "diameter": 0.17600000000000002 + "insulation_conductivity": 0.040000000000000001, + "user_data": {}, + "diameter": 0.17600000000000002, + "insulation_thickness": 0.02794 } }, - "display_name": "Test_Vent_System_exhaust" + "identifier": "5ffc820b-295e-41ce-bdb1-e5aa51c23d86", + "user_data": {} } ], + "id_num": 0, + "identifier": "4830df63-b014-43ce-88bf-09bc4ba2806e", "ventilation_unit": { - "sensible_heat_recovery": 0.82999999999999996, - "quantity": 1, + "display_name": "Test_Unit", "electric_efficiency": 0.33300000000000002, "latent_heat_recovery": 0.0, - "identifier": "1846c7da-e2c5-4f02-a7e6-1029152d64ca", "temperature_below_defrost_used": -5.0, - "in_conditioned_space": true, + "identifier": "c808a1a4-6419-4539-8a08-1116c79b7044", "user_data": {}, + "sensible_heat_recovery": 0.82999999999999996, "frost_protection_reqd": true, - "display_name": "Test_Unit" + "in_conditioned_space": true, + "quantity": 1 }, + "user_data": {}, + "sys_type": 1, "supply_ducting": [ { + "display_name": "__unnamed_vent_duct__", "duct_type": 1, - "identifier": "4bde1ec7-124a-4b4d-8fc4-b4a42c72f8f8", - "user_data": {}, "segments": { - "ee12e3c8-9551-4877-8329-1efcfb012a06": { + "f4c0f89e-798c-445f-815e-1e1c94af5c09": { + "display_name": "f4c0f89e-798c-445f-815e-1e1c94af5c09", "width": null, "insulation_reflective": true, - "insulation_conductivity": 0.040000000000000001, + "identifier": "f4c0f89e-798c-445f-815e-1e1c94af5c09", "geometry": { + "v": [ + 0.0, + 0.0, + 1.1000000000000001 + ], "type": "LineSegment3D", "p": [ 0.0, -5.5, 0.0 - ], - "v": [ - 0.0, - 0.0, - 1.1000000000000001 ] }, - "identifier": "ee12e3c8-9551-4877-8329-1efcfb012a06", - "user_data": {}, "height": null, - "insulation_thickness": 0.02794, - "display_name": "ee12e3c8-9551-4877-8329-1efcfb012a06", - "diameter": 0.17600000000000002 + "insulation_conductivity": 0.040000000000000001, + "user_data": {}, + "diameter": 0.17600000000000002, + "insulation_thickness": 0.02794 } }, - "display_name": "__unnamed_vent_duct__" + "identifier": "ab2c5928-d987-47b5-9b19-6092ff68afdc", + "user_data": {} } - ], - "id_num": 0, - "identifier": "529020ac-9418-4311-aa86-bec7050e8002", - "user_data": {}, - "display_name": "Test_Vent_System", - "sys_type": 1 + ] } }, "type": "RoomPropertiesAbridged" }, - "type": "Room", - "identifier": "Room_4_3d192209", - "story": "2", - "display_name": "Room_4" + "type": "Room" } ], - "tolerance": 0.001, - "display_name": "unnamed", - "version": "1.58.4" + "angle_tolerance": 1.0 } \ 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 d2fd494..6529164 100644 --- a/tests/_test_reference_files_xml/Default_Model_Single_Zone.xml +++ b/tests/_test_reference_files_xml/Default_Model_Single_Zone.xml @@ -9,11 +9,11 @@ 0 false - 2024 - 10 - 25 - 17 - 9 + 2025 + 1 + 1 + 14 + 29 diff --git a/tests/_test_reference_files_xml/Multi_Room_Complete.xml b/tests/_test_reference_files_xml/Multi_Room_Complete.xml index 5b87573..ce670db 100644 --- a/tests/_test_reference_files_xml/Multi_Room_Complete.xml +++ b/tests/_test_reference_files_xml/Multi_Room_Complete.xml @@ -9,11 +9,11 @@ 0 false - 2024 - 10 - 25 - 17 - 9 + 2025 + 1 + 1 + 14 + 29 @@ -619,7 +619,7 @@ 24 - ROOF_CEILING [Generic Roof] + ROOF_CEILING [Ext_Roof] true 1 7 @@ -635,7 +635,7 @@ 43 - WALL [Generic Exterior Wall] + WALL [Ext_Wall] true 1 2 @@ -654,7 +654,7 @@ 44 - PhWindowConstruction_6614e303 + PhWindowConstruction_5d55e451 true 2 4 @@ -676,7 +676,7 @@ 49 - PhWindowConstruction_6614e303 + PhWindowConstruction_5d55e451 true 2 4 @@ -702,7 +702,7 @@ 50 - Shade_127ebfea + Shade_cb362c18 true 1 1 @@ -718,7 +718,7 @@ 51 - Shade_e862401b + Shade_b453e9cb true 1 1 @@ -742,7 +742,7 @@ 1 - 101-Room_3 + 101-Room_11 99 1 1 @@ -766,7 +766,7 @@ - 101-Room_3 + 101-Room_11 1 3 0.0 @@ -782,7 +782,7 @@ - 101-Room_3 + 101-Room_11 1 1 1 @@ -946,72 +946,72 @@ - _unnamed_bldg_segment__090952e1 + _unnamed_bldg_segment__03816433 -15 - 10.733126291998989 + 9.391485505499118 0.01 -1 - _unnamed_bldg_segment__2c94aeeb + _unnamed_bldg_segment__0d94194d -15 14.0 0.01 -1 - _unnamed_bldg_segment__59eee55a + _unnamed_bldg_segment__0ea559de -15 - 16.0 + 13.416407864998739 0.01 -1 - _unnamed_bldg_segment__5e1b4a2a + _unnamed_bldg_segment__1795e7f0 -15 14.0 0.01 -1 - _unnamed_bldg_segment__72286b6a + _unnamed_bldg_segment__4694797a -15 - 14.0 + 20.0 0.01 -1 - _unnamed_bldg_segment__892ea262 + _unnamed_bldg_segment__4f3ddd99 -15 - 18.0 + 14.0 0.01 -1 - _unnamed_bldg_segment__89e17c2f + _unnamed_bldg_segment__a1885612 -15 - 13.416407864998739 + 18.0 0.01 -1 - _unnamed_bldg_segment__cba1732a + _unnamed_bldg_segment__ac222644 -15 - 9.391485505499118 + 10.733126291998989 0.01 -1 - _unnamed_bldg_segment__cd0fa6a5 + _unnamed_bldg_segment__dd7ceed8 -15 - 20.0 + 14.0 0.01 -1 - _unnamed_bldg_segment__f299f4a7 + _unnamed_bldg_segment__e9f92e79 -15 - 14.0 + 16.0 0.01 -1 @@ -1279,7 +1279,7 @@ - 874b245d-b0f9-4f12-847b-3a0f284c91dc + 6b5d3717-5e15-4584-9653-a21b646976ec 1 5 5 @@ -1578,21 +1578,21 @@ - + 1 - Generic Exterior Wall + Ext_Wall 2 2 - + - 0.1 + 0.019 - Generic Brick - 0.9 - 1920.0 + Plywood + 0.12 + 999.0 0.95 - 790.0 + 999.0 1.0 0.0 @@ -1607,13 +1607,97 @@ - 0.1 + 0.45 - Generic LW Concrete - 0.53 - 1280.0 + Insulation_2 + 0.04 + 999.0 0.95 - 840.0 + 999.0 + 1.0 + 0.0 + + 255 + 255 + 255 + 255 + + + + + 0.18414999999999998 + 2 + + + 0.038099999999999995 + 2 + + + 0.18414999999999998 + 2 + + + + + 0.07619999999999999 + 2 + + + 2.3241 + 2 + + + 0.038099999999999995 + 2 + + + + + 1 + 12 + + + 1 + -1 + + + 1 + 12 + + + 1 + 12 + + + 1 + 12 + + + 1 + 12 + + + 1 + 12 + + + 1 + -1 + + + 1 + 12 + + + + + 0.0127 + + GWB + 0.12 + 999.0 + 0.95 + 999.0 1.0 0.0 @@ -1627,14 +1711,37 @@ - - 0.05 + + + + 12 + Wood_1 + 1.0 + 999.0 + 999.0 + + 255 + 255 + 255 + 255 + + + + + + 2 + Generic Interior Wall + 2 + 2 + + + 0.0127 - Generic 50mm Insulation - 0.03 - 43.0 + Generic Gypsum Board + 0.16 + 800.0 0.95 - 1210.0 + 1090.0 1.0 0.0 @@ -1648,7 +1755,7 @@ - + 0.1 Generic Wall Air Gap @@ -1669,7 +1776,7 @@ - + 0.0127 Generic Gypsum Board @@ -1693,20 +1800,20 @@ - - 2 - Generic Interior Wall + + 3 + Generic Ground Slab 2 2 - + - 0.0127 + 0.05 - Generic Gypsum Board - 0.16 - 800.0 + Generic 50mm Insulation + 0.03 + 43.0 0.95 - 1090.0 + 1210.0 1.0 0.0 @@ -1721,13 +1828,13 @@ - 0.1 + 0.2 - Generic Wall Air Gap - 0.667 - 1.28 + Generic HW Concrete + 1.95 + 2240.0 0.95 - 1000.0 + 900.0 1.0 0.0 @@ -1741,14 +1848,91 @@ + + + + + 4 + Ext_Roof + 2 + 2 + + + 0.019 + + Plywood + 0.12 + 999.0 + 0.95 + 999.0 + 1.0 + 0.0 + + 255 + 255 + 255 + 255 + + + + + + + + 0.45 + + Insulation_1 + 0.04 + 999.0 + 0.95 + 999.0 + 1.0 + 0.0 + + 255 + 255 + 255 + 255 + + + + + 0.0127 + 2 + + + 0.07619999999999999 + 2 + + + 0.0127 + 2 + + + + + + 1 + 37 + + + 1 + -1 + + + 1 + -1 + + + 0.0127 - Generic Gypsum Board - 0.16 - 800.0 + GWB + 0.12 + 999.0 0.95 - 1090.0 + 999.0 1.0 0.0 @@ -1763,15 +1947,71 @@ - + + + 37 + Mix_2 + 1.0 + 999.0 + 999.0 + + 255 + 255 + 255 + 255 + + + - - 3 - Generic Ground Slab + + 5 + Generic Exterior Wall 2 2 - + + 0.1 + + Generic Brick + 0.9 + 1920.0 + 0.95 + 790.0 + 1.0 + 0.0 + + 255 + 255 + 255 + 255 + + + + + + + + 0.1 + + Generic LW Concrete + 0.53 + 1280.0 + 0.95 + 840.0 + 1.0 + 0.0 + + 255 + 255 + 255 + 255 + + + + + + + 0.05 Generic 50mm Insulation @@ -1792,14 +2032,35 @@ - - 0.2 + + 0.1 - Generic HW Concrete - 1.95 - 2240.0 + Generic Wall Air Gap + 0.667 + 1.28 0.95 - 900.0 + 1000.0 + 1.0 + 0.0 + + 255 + 255 + 255 + 255 + + + + + + + + 0.0127 + + Generic Gypsum Board + 0.16 + 800.0 + 0.95 + 1090.0 1.0 0.0 @@ -1816,8 +2077,8 @@ - - 4 + + 6 Generic Roof 2 2 @@ -1934,7 +2195,7 @@ 1 - PhWindowConstruction_6614e303 + PhWindowConstruction_5d55e451 true true 0.7242364315535045 @@ -1963,7 +2224,7 @@ 2 - PhWindowConstruction_574f4808 + PhWindowConstruction_94bc7a40 true true 0.7242364315535045 @@ -1996,7 +2257,7 @@ 1 test-shade 1 - 0.825 + 0.9 0.8 0.0 0.0 diff --git a/tests/_test_reference_files_xml/Multi_Room_Complete_10_25_17_9_4.xml b/tests/_test_reference_files_xml/Multi_Room_Complete_10_25_17_9_4.xml deleted file mode 100644 index de358c6..0000000 --- a/tests/_test_reference_files_xml/Multi_Room_Complete_10_25_17_9_4.xml +++ /dev/null @@ -1,2008 +0,0 @@ - - - 48 - 1 - 3.2.0.1 - 3 - 2 - - 0 - false - - 2024 - 10 - 25 - 17 - 9 - - - - - - - - - - - - - - - - - - - - - - - - - - - default_schedule - 1 - 7.0 - 52.0 - 5.71 - 0.99 - 0.71 - 0.86 - 1.99 - 0.79 - 15.59 - 0.73 - - - - - 1 - Generic Office Occupancy - 0.5 - 0 - 24 - 365.0 - 300 - 0.0 - 1 - - - - - 1 - _unnamed_bldg_segment_ - - - - - 3 - 0.0 - -5.5 - -0.0 - - - 6 - 12.9994623398 - -7.7921559452 - -0.0 - - - 9 - 4.5249514122 - -6.2978710204 - 2.7568536489 - - - 10 - 4.5249514122 - -6.2978710204 - 0.5431463511 - - - 11 - 0.8914912294 - -5.6571939568 - 0.5431463511 - - - 12 - 0.8914912294 - -5.6571939568 - 2.7568536489 - - - 15 - 11.7513746186 - -7.5720844057 - 2.7568536489 - - - 16 - 11.7513746186 - -7.5720844057 - 0.5431463511 - - - 17 - 6.6645303627 - -6.6751365167 - 0.5431463511 - - - 18 - 6.6645303627 - -6.6751365167 - 2.7568536489 - - - 27 - 0.1274392476 - -9.9903480701 - 2.7568536489 - - - 28 - 0.1274392476 - -9.9903480701 - 0.5431463511 - - - 29 - 3.7608994305 - -10.6310251336 - 0.5431463511 - - - 30 - 3.7608994305 - -10.6310251336 - 2.7568536489 - - - 33 - 5.9004783809 - -11.0082906299 - 2.7568536489 - - - 34 - 5.9004783809 - -11.0082906299 - 0.5431463511 - - - 35 - 10.9873226369 - -11.9052385189 - 0.5431463511 - - - 36 - 10.9873226369 - -11.9052385189 - 2.7568536489 - - - 45 - -0.1257551654 - -6.2131929835 - 2.7568536489 - - - 46 - -0.1257551654 - -6.2131929835 - 0.5431463511 - - - 47 - -0.6382968163 - -9.1199611298 - 0.5431463511 - - - 48 - -0.6382968163 - -9.1199611298 - 2.7568536489 - - - 57 - 12.3611655235 - -11.412117075 - 2.7568536489 - - - 58 - 12.3611655235 - -11.412117075 - 0.5431463511 - - - 59 - 12.8737071743 - -8.5053489287 - 0.5431463511 - - - 60 - 12.8737071743 - -8.5053489287 - 2.7568536489 - - - 63 - 12.235410358 - -12.1253100585 - 0.0 - - - 64 - -0.7640519817 - -9.8331541133 - 0.0 - - - 65 - 0.0 - -5.5 - 0.0 - - - 66 - 12.9994623398 - -7.7921559452 - 0.0 - - - 69 - 0.0 - -5.5 - 3.3 - - - 70 - -0.7640519817 - -9.8331541133 - 3.3 - - - 71 - 12.235410358 - -12.1253100585 - 3.3 - - - 72 - 12.9994623398 - -7.7921559452 - 3.3 - - - 75 - 0.6813268378 - -6.2744417556 - 3.3 - - - 76 - 0.1410605003 - -9.338444413 - 3.3 - - - 77 - 3.9710638221 - -10.0137773348 - 3.3 - - - 78 - 4.5113301595 - -6.9497746774 - 3.3 - - - 81 - 6.4150573433 - -7.2854531438 - 3.3 - - - 82 - 5.8747910058 - -10.3494558012 - 3.3 - - - 83 - 11.2367956563 - -11.2949218918 - 3.3 - - - 84 - 11.7770619938 - -8.2309192344 - 3.3 - - - 87 - 0.1910129954 - -4.4167114717 - 3.3 - - - 88 - 0.0 - -5.5 - 3.3 - - - 89 - 5.4164426416 - -6.4550649772 - 3.3 - - - 90 - 5.607455637 - -5.3717764489 - 3.3 - - - 93 - 5.607455637 - -5.3717764489 - 3.3 - - - 94 - 5.4164426416 - -6.4550649772 - 3.3 - - - 95 - 12.9994623398 - -7.7921559452 - 3.3 - - - 96 - 13.1904753352 - -6.7088674169 - 3.3 - - - - - 11 - 0.0 - 0.0 - -1.0 - - 63 - 64 - 65 - 66 - - - - - 12 - 0.0 - 0.0 - 1.0 - - 69 - 70 - 71 - 72 - - - 13 - 14 - - - - 1 - 0.1736481777 - 0.984807753 - 0.0 - - 3 - 69 - 72 - 6 - - - 2 - 3 - - - - 4 - -0.1736481777 - -0.984807753 - 0.0 - - 63 - 71 - 70 - 64 - - - 5 - 6 - - - - 7 - -0.984807753 - 0.1736481777 - 0.0 - - 69 - 65 - 64 - 70 - - - 8 - - - - 9 - 0.984807753 - -0.1736481777 - 0.0 - - 71 - 63 - 66 - 72 - - - 10 - - - - 13 - 0.0 - 0.0 - 1.0 - - 75 - 76 - 77 - 78 - - - - - 14 - 0.0 - 0.0 - 1.0 - - 81 - 82 - 83 - 84 - - - - - 2 - 0.1736481777 - 0.984807753 - 0.0 - - 9 - 10 - 11 - 12 - - - - - 3 - 0.1736481777 - 0.984807753 - 0.0 - - 15 - 16 - 17 - 18 - - - - - 5 - -0.1736481777 - -0.984807753 - 0.0 - - 27 - 28 - 29 - 30 - - - - - 6 - -0.1736481777 - -0.984807753 - 0.0 - - 33 - 34 - 35 - 36 - - - - - 8 - -0.984807753 - 0.1736481777 - 0.0 - - 45 - 46 - 47 - 48 - - - - - 10 - 0.984807753 - -0.1736481777 - 0.0 - - 57 - 58 - 59 - 60 - - - - - 15 - 0.0 - 0.0 - 1.0 - - 87 - 88 - 89 - 90 - - - - - 16 - 0.0 - 0.0 - 1.0 - - 93 - 94 - 95 - 96 - - - - - - - - - 23 - FLOOR [Generic Ground Slab] - true - 1 - 12 - 12 - 1 - -2 - -1 - 3 - -1 - - 11 - - - - 24 - ROOF_CEILING [Generic Roof] - true - 1 - 7 - 8 - 1 - -1 - -1 - 4 - -1 - - 12 - - - - 43 - WALL [Generic Exterior Wall] - true - 1 - 2 - 2 - 1 - -1 - -1 - 1 - -1 - - 1 - 4 - 9 - 7 - - - - 44 - PhWindowConstruction_6614e303 - true - 2 - 4 - 4 - 1 - -1 - -1 - -1 - 1 - - 13 - 14 - - 0.1016 - 0.1 - 1 - -1 - 1.0 - - - 49 - PhWindowConstruction_6614e303 - true - 2 - 4 - 4 - 1 - -1 - -1 - -1 - 1 - - 2 - 3 - 5 - 6 - 8 - 10 - - 0.1016 - 0.1 - 1 - -1 - 1.0 - - - 50 - Shade_127ebfea - true - 1 - 1 - 1 - -1 - -1 - -1 - -1 - -1 - - 15 - - - - 51 - Shade_e862401b - true - 1 - 1 - 1 - -1 - -1 - -1 - -1 - -1 - - 16 - - - - - - _unnamed_bldg_segment_ - 1 - 0 - 1.0 - 1 - - - 101-Room_3 - 99 - 1 - 1 - 1 - 10.89 - 2.75 - 16.58 - 16.58 - - - 102-Room_4 - 99 - 1 - 1 - 1 - 10.89 - 2.75 - 18.57 - 18.57 - - - - - 101-Room_3 - 1 - 3 - 0.0 - 10.89 - - - 102-Room_4 - 1 - 3 - 0.0 - 10.89 - - - - - 101-Room_3 - 1 - 1 - 1 - true - false - false - 1 - 0 - 1 - 1 - 1 - 1 - 1 - 10.55 - 8760 - - - 102-Room_4 - 1 - 1 - 1 - true - false - false - 1 - 0 - 1 - 1 - 1 - 1 - 1 - 10.55 - 8760 - - - 7 - 191.664 - 6 - 59.895 - 6 - 21.78 - 1 - 2.5 - 1 - 60 - 1 - 3 - 3 - - - default - 1 - 2 - true - 1 - 0.2 - 0 - 0 - 7 - 1 - - - default - 1 - 2 - true - 2 - 269 - 0 - 0 - 1 - 2 - 1 - 12 - - - default - 4 - 2 - true - 1 - 1.22 - 0 - 0 - 6 - - - default - 1 - 2 - true - 2 - 0.0 - 0 - 3.93 - 3 - 5 - 0 - 2.67 - 1 - 1.18 - - - default - 1 - 2 - true - 2 - 120 - 0 - 0 - 2 - 2 - 1.0 - 0.1274 - 2.7 - - - default - 6 - 2 - false - 1 - 0.0 - 0 - 0 - 15 - 1.0 - - - default - 6 - 2 - true - 1 - 0.0 - 0 - 0 - 14 - 1.0 - - - default - 3 - 2 - true - 1 - 0.0 - 0 - 0 - 13 - - - - - example_dryer_vent - 1 - 442800.0 - 0.0 - - - - - _unnamed_bldg_segment__090952e1 - -15 - 10.733126291998989 - 0.01 - -1 - - - _unnamed_bldg_segment__2c94aeeb - -15 - 14.0 - 0.01 - -1 - - - _unnamed_bldg_segment__59eee55a - -15 - 16.0 - 0.01 - -1 - - - _unnamed_bldg_segment__5e1b4a2a - -15 - 14.0 - 0.01 - -1 - - - _unnamed_bldg_segment__72286b6a - -15 - 14.0 - 0.01 - -1 - - - _unnamed_bldg_segment__892ea262 - -15 - 18.0 - 0.01 - -1 - - - _unnamed_bldg_segment__89e17c2f - -15 - 13.416407864998739 - 0.01 - -1 - - - _unnamed_bldg_segment__cba1732a - -15 - 9.391485505499118 - 0.01 - -1 - - - _unnamed_bldg_segment__cd0fa6a5 - -15 - 20.0 - 0.01 - -1 - - - _unnamed_bldg_segment__f299f4a7 - -15 - 14.0 - 0.01 - -1 - - - 0 - 0 - - - - - 2 - 40.6 - -73.8 - 0.0 - -4 - -2 - 0.2 - 0.1 - 0.9 - 0.66 - 350 - 48 - - 6 - 10.0 - 4.0 - 40.6 - -73.8 - 0.0 - -4 - 0.0 - 1 - 2 - 1000 - 2000 - 3 - 0.05 - - 0.0 - 4.0 - 10.0 - 19.75 - 21.5 - 24.75 - 21.23 - 15.85 - 11.74 - 7.78 - 6.07 - 4.34 - - - 0.0 - 2.67 - 6.67 - 7.96 - 5.13 - 6.95 - 4.95 - 4.14 - 1.05 - 1.54 - 1.62 - 4.28 - - - 0.0 - 3.33 - 8.33 - 16.46 - 17.92 - 20.62 - 17.7 - 13.21 - 9.78 - 6.48 - 5.06 - 3.62 - - - 0.0 - 26.66 - 66.66 - 131.66 - 149.97 - 165.0 - 200.0 - 145.61 - 104.03 - 74.32 - 42.05 - 0.0 - - - 0.0 - 26.66 - 66.66 - 131.66 - 149.97 - 165.0 - 200.0 - 145.61 - 104.03 - 74.32 - 42.05 - 0.0 - - - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - - - 0.0 - 26.66 - 66.66 - 131.66 - 149.97 - 165.0 - 200.0 - 145.61 - 104.03 - 74.32 - 42.05 - 0.0 - - - 0.0 - 26.66 - 66.66 - 131.66 - 149.97 - 165.0 - 200.0 - 145.61 - 104.03 - 74.32 - 42.05 - 0.0 - - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 6 - - 1.1 - 1.1 - 1.1 - 1.1 - 0.2 - 1.8 - 1.7 - 0.8 - 1.1 - 1.5 - 0.7 - 1.1 - 1.5 - 0.8 - 1.1 - 1.5 - - - 309.9966 - 250.0171 - 270.0102 - 439.9864 - 53.4289 - 680.0068 - 250.0171 - 239.9864 - 319.9932 - 409.9966 - -70.0102 - 129.9898 - 319.9932 - 100.0 - 250.0171 - 409.9966 - - - - - 7 - 2 - 15.0 - 15.0 - 10.0 - 10.0 - - - 1 - 1 - 1 - 1 - 1 - 2 - 3 - 1 - 0.8157599999999999 - 2 - 1 - - - 15 - true - 1 - 1 - false - - - 20.0 - 21.0 - 24.0 - false - - - true - - - - - Ideal Air System - 1 - 1 - - - 1 - 1.0 - 1.0 - 1.0 - 1.0 - 1.0 - - - - - 874b245d-b0f9-4f12-847b-3a0f284c91dc - 1 - 5 - 5 - false - true - false - false - false - false - - - - true - - - 3 - - - 1.0 - 0.0 - 1 - - - 0.0 - 0.0 - 1 - - - 0.0 - 0.0 - 1 - - - - Example_Heat_Pump - 1 - 5 - 5 - true - false - true - false - false - false - - - - true - 3.4 - 4.12 - -3.33 - 12.0 - 4 - - - 0.0 - 0.0 - 1 - - - 1.0 - 0.0 - 1 - - - 1.0 - 0.0 - 1 - - - - 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 - 1 - false - false - false - true - false - false - false - -1 - 0.83 - 0.0 - - 1 - 0.0 - 0.333 - true - true - -5.0 - true - false - - - - _unnamed_hw_tank_ - 1 - 8 - 8 - false - true - false - false - false - false - - 300 - 4.0 - 4.0 - 1 - 0.0 - 20 - 60 - 1 - - - true - - - - my_PV_system - 1 - 10 - 10 - false - false - false - false - false - false - - 1 - 2 - 1 - 0.0 - 1000.0 - 1.0 - 0.0 - 0.0 - false - - - - - - 4 - true - 1 - 1 - true - 2 - 2 - 25.4 - 20.0 - 48.0 - 23 - 1.1 - 0.18920200481210636 - 16.5 - 22.224999999999994 - - - Test_Trunk - 2 - 5.5 - 6 - 7 - 1 - false - - - Test_Branch - 2 - 5.5 - 3 - 4 - - - Test_Fixture - 7 - 5.5 - 1 - 1 - - - - - - - - - true - false - 10.0 - 12.0 - 3.5 - 100.02 - true - true - false - 3.5 - - - - - - - __unnamed_vent_duct__ - 3 - 176.00000000000003 - 0.0 - 0.0 - 1.1 - 27.94 - 0.04 - 1 - 1 - 1 - true - - 1 - - - - Test_Vent_System_exhaust - 4 - 176.00000000000003 - 0.0 - 0.0 - 1.1 - 27.94 - 0.04 - 1 - 2 - 1 - true - - 1 - - - - false - true - - - Example Device - 10 - 3 - false - 123.0 - 6.5 - - - - - - - - - - - 1 - Generic Exterior Wall - 2 - 2 - - - 0.1 - - Generic Brick - 0.9 - 1920.0 - 0.95 - 790.0 - 1.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.1 - - Generic LW Concrete - 0.53 - 1280.0 - 0.95 - 840.0 - 1.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.05 - - Generic 50mm Insulation - 0.03 - 43.0 - 0.95 - 1210.0 - 1.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.1 - - Generic Wall Air Gap - 0.667 - 1.28 - 0.95 - 1000.0 - 1.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.0127 - - Generic Gypsum Board - 0.16 - 800.0 - 0.95 - 1090.0 - 1.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - - - - 2 - Generic Interior Wall - 2 - 2 - - - 0.0127 - - Generic Gypsum Board - 0.16 - 800.0 - 0.95 - 1090.0 - 1.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.1 - - Generic Wall Air Gap - 0.667 - 1.28 - 0.95 - 1000.0 - 1.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.0127 - - Generic Gypsum Board - 0.16 - 800.0 - 0.95 - 1090.0 - 1.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - - - - 3 - Generic Ground Slab - 2 - 2 - - - 0.05 - - Generic 50mm Insulation - 0.03 - 43.0 - 0.95 - 1210.0 - 1.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.2 - - Generic HW Concrete - 1.95 - 2240.0 - 0.95 - 900.0 - 1.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - - - - 4 - Generic Roof - 2 - 2 - - - 0.01 - - Generic Roof Membrane - 0.16 - 1120.0 - 0.95 - 1460.0 - 1.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.05 - - Generic 50mm Insulation - 0.03 - 43.0 - 0.95 - 1210.0 - 1.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.1 - - Generic LW Concrete - 0.53 - 1280.0 - 0.95 - 840.0 - 1.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.1 - - Generic Ceiling Air Gap - 0.556 - 1.28 - 0.95 - 1000.0 - 1.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.02 - - Generic Acoustic Tile - 0.06 - 368.0 - 0.95 - 590.0 - 1.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - - - - - - 1 - PhWindowConstruction_6614e303 - true - true - 0.7242364315535045 - 1.075763568446495 - 0.8 - 0.1 - 0.4 - 0.4 - 1.0 - 0.1 - 0.04 - 1.0 - 0.04 - 0.1 - 0.04 - 1.0 - 0.04 - 0.1 - 0.04 - 1.0 - 0.04 - 0.1 - 0.04 - 1.0 - 0.04 - - - 2 - PhWindowConstruction_574f4808 - true - true - 0.7242364315535045 - 0.8339189189189188 - 0.8 - 0.1 - 0.4 - 0.4 - 1.0 - 0.1 - 0.04 - 0.123 - 0.04 - 0.1 - 0.04 - 0.123 - 0.04 - 0.1 - 0.04 - 0.123 - 0.04 - 0.1 - 0.04 - 0.123 - 0.04 - - - - - 1 - test-shade - 1 - 0.825 - 0.8 - 0.0 - 0.0 - 0.0 - 1000.0 - false - - - diff --git a/tests/_test_reference_files_xml/Multi_Room_Complete_7_16_17_33_42.xml b/tests/_test_reference_files_xml/Multi_Room_Complete_7_16_17_33_42.xml deleted file mode 100644 index e662f37..0000000 --- a/tests/_test_reference_files_xml/Multi_Room_Complete_7_16_17_33_42.xml +++ /dev/null @@ -1,2008 +0,0 @@ - - - 48 - 1 - 3.2.0.1 - 3 - 2 - - 0 - false - - 2024 - 7 - 16 - 17 - 33 - - - - - - - - - - - - - - - - - - - - - - - - - - - default_schedule - 1 - 7.0 - 52.0 - 5.71 - 0.99 - 0.71 - 0.86 - 1.99 - 0.79 - 15.59 - 0.73 - - - - - 1 - Generic Office Occupancy - 0.5 - 0 - 24 - 365.0 - 300 - 0.0 - 1 - - - - - 1 - _unnamed_bldg_segment_ - - - - - 3 - 0.0 - -5.5 - -0.0 - - - 6 - 12.9994623398 - -7.7921559452 - -0.0 - - - 9 - 4.5249514122 - -6.2978710204 - 2.7568536489 - - - 10 - 4.5249514122 - -6.2978710204 - 0.5431463511 - - - 11 - 0.8914912294 - -5.6571939568 - 0.5431463511 - - - 12 - 0.8914912294 - -5.6571939568 - 2.7568536489 - - - 15 - 11.7513746186 - -7.5720844057 - 2.7568536489 - - - 16 - 11.7513746186 - -7.5720844057 - 0.5431463511 - - - 17 - 6.6645303627 - -6.6751365167 - 0.5431463511 - - - 18 - 6.6645303627 - -6.6751365167 - 2.7568536489 - - - 27 - 0.1274392476 - -9.9903480701 - 2.7568536489 - - - 28 - 0.1274392476 - -9.9903480701 - 0.5431463511 - - - 29 - 3.7608994305 - -10.6310251336 - 0.5431463511 - - - 30 - 3.7608994305 - -10.6310251336 - 2.7568536489 - - - 33 - 5.9004783809 - -11.0082906299 - 2.7568536489 - - - 34 - 5.9004783809 - -11.0082906299 - 0.5431463511 - - - 35 - 10.9873226369 - -11.9052385189 - 0.5431463511 - - - 36 - 10.9873226369 - -11.9052385189 - 2.7568536489 - - - 45 - -0.1257551654 - -6.2131929835 - 2.7568536489 - - - 46 - -0.1257551654 - -6.2131929835 - 0.5431463511 - - - 47 - -0.6382968163 - -9.1199611298 - 0.5431463511 - - - 48 - -0.6382968163 - -9.1199611298 - 2.7568536489 - - - 57 - 12.3611655235 - -11.412117075 - 2.7568536489 - - - 58 - 12.3611655235 - -11.412117075 - 0.5431463511 - - - 59 - 12.8737071743 - -8.5053489287 - 0.5431463511 - - - 60 - 12.8737071743 - -8.5053489287 - 2.7568536489 - - - 63 - 12.235410358 - -12.1253100585 - 0.0 - - - 64 - -0.7640519817 - -9.8331541133 - 0.0 - - - 65 - 0.0 - -5.5 - 0.0 - - - 66 - 12.9994623398 - -7.7921559452 - 0.0 - - - 69 - 0.0 - -5.5 - 3.3 - - - 70 - -0.7640519817 - -9.8331541133 - 3.3 - - - 71 - 12.235410358 - -12.1253100585 - 3.3 - - - 72 - 12.9994623398 - -7.7921559452 - 3.3 - - - 75 - 0.6813268378 - -6.2744417556 - 3.3 - - - 76 - 0.1410605003 - -9.338444413 - 3.3 - - - 77 - 3.9710638221 - -10.0137773348 - 3.3 - - - 78 - 4.5113301595 - -6.9497746774 - 3.3 - - - 81 - 6.4150573433 - -7.2854531438 - 3.3 - - - 82 - 5.8747910058 - -10.3494558012 - 3.3 - - - 83 - 11.2367956563 - -11.2949218918 - 3.3 - - - 84 - 11.7770619938 - -8.2309192344 - 3.3 - - - 87 - 0.1910129954 - -4.4167114717 - 3.3 - - - 88 - 0.0 - -5.5 - 3.3 - - - 89 - 5.4164426416 - -6.4550649772 - 3.3 - - - 90 - 5.607455637 - -5.3717764489 - 3.3 - - - 93 - 5.607455637 - -5.3717764489 - 3.3 - - - 94 - 5.4164426416 - -6.4550649772 - 3.3 - - - 95 - 12.9994623398 - -7.7921559452 - 3.3 - - - 96 - 13.1904753352 - -6.7088674169 - 3.3 - - - - - 11 - 0.0 - 0.0 - -1.0 - - 63 - 64 - 65 - 66 - - - - - 12 - 0.0 - 0.0 - 1.0 - - 69 - 70 - 71 - 72 - - - 13 - 14 - - - - 1 - 0.1736481777 - 0.984807753 - 0.0 - - 3 - 69 - 72 - 6 - - - 2 - 3 - - - - 4 - -0.1736481777 - -0.984807753 - 0.0 - - 63 - 71 - 70 - 64 - - - 5 - 6 - - - - 7 - -0.984807753 - 0.1736481777 - 0.0 - - 69 - 65 - 64 - 70 - - - 8 - - - - 9 - 0.984807753 - -0.1736481777 - 0.0 - - 71 - 63 - 66 - 72 - - - 10 - - - - 13 - 0.0 - 0.0 - 1.0 - - 75 - 76 - 77 - 78 - - - - - 14 - 0.0 - 0.0 - 1.0 - - 81 - 82 - 83 - 84 - - - - - 2 - 0.1736481777 - 0.984807753 - 0.0 - - 9 - 10 - 11 - 12 - - - - - 3 - 0.1736481777 - 0.984807753 - 0.0 - - 15 - 16 - 17 - 18 - - - - - 5 - -0.1736481777 - -0.984807753 - 0.0 - - 27 - 28 - 29 - 30 - - - - - 6 - -0.1736481777 - -0.984807753 - 0.0 - - 33 - 34 - 35 - 36 - - - - - 8 - -0.984807753 - 0.1736481777 - 0.0 - - 45 - 46 - 47 - 48 - - - - - 10 - 0.984807753 - -0.1736481777 - 0.0 - - 57 - 58 - 59 - 60 - - - - - 15 - 0.0 - 0.0 - 1.0 - - 87 - 88 - 89 - 90 - - - - - 16 - 0.0 - 0.0 - 1.0 - - 93 - 94 - 95 - 96 - - - - - - - - - 23 - FLOOR [Generic Ground Slab] - true - 1 - 12 - 12 - 1 - -2 - -1 - 3 - -1 - - 11 - - - - 24 - ROOF_CEILING [Generic Roof] - true - 1 - 7 - 8 - 1 - -1 - -1 - 4 - -1 - - 12 - - - - 43 - WALL [Generic Exterior Wall] - true - 1 - 2 - 2 - 1 - -1 - -1 - 1 - -1 - - 1 - 4 - 9 - 7 - - - - 44 - PhWindowConstruction_948d7ef8 - true - 2 - 4 - 4 - 1 - -1 - -1 - -1 - 1 - - 13 - 14 - - 0.1016 - 0.1 - 1 - -1 - 1.0 - - - 49 - PhWindowConstruction_948d7ef8 - true - 2 - 4 - 4 - 1 - -1 - -1 - -1 - 1 - - 2 - 3 - 5 - 6 - 8 - 10 - - 0.1016 - 0.1 - 1 - -1 - 1.0 - - - 50 - Shade_7b0ab16c - true - 1 - 1 - 1 - -1 - -1 - -1 - -1 - -1 - - 15 - - - - 51 - Shade_62841e01 - true - 1 - 1 - 1 - -1 - -1 - -1 - -1 - -1 - - 16 - - - - - - _unnamed_bldg_segment_ - 1 - 0 - 1.0 - 1 - - - 101-Room_10 - 99 - 1 - 1 - 1 - 10.89 - 2.75 - 16.58 - 16.58 - - - 102-Room_16 - 99 - 1 - 1 - 1 - 10.89 - 2.75 - 18.57 - 18.57 - - - - - 101-Room_10 - 1 - 3 - 0.0 - 10.89 - - - 102-Room_16 - 1 - 3 - 0.0 - 10.89 - - - - - 101-Room_10 - 1 - 1 - 1 - true - false - false - 1 - 0 - 1 - 1 - 1 - 1 - 1 - 10.55 - 8760 - - - 102-Room_16 - 1 - 1 - 1 - true - false - false - 1 - 0 - 1 - 1 - 1 - 1 - 1 - 10.55 - 8760 - - - 7 - 191.664 - 6 - 59.895 - 6 - 21.78 - 1 - 2.5 - 1 - 60 - 1 - 3 - 3 - - - default - 1 - 2 - true - 1 - 0.2 - 0 - 0 - 7 - 1 - - - default - 1 - 2 - true - 2 - 269 - 0 - 0 - 1 - 2 - 1 - 12 - - - default - 4 - 2 - true - 1 - 1.22 - 0 - 0 - 6 - - - default - 1 - 2 - true - 2 - 0.0 - 0 - 3.93 - 3 - 5 - 0 - 2.67 - 1 - 1.18 - - - default - 1 - 2 - true - 2 - 120 - 0 - 0 - 2 - 2 - 1.0 - 0.1274 - 2.7 - - - default - 6 - 2 - false - 1 - 0.0 - 0 - 0 - 15 - 1.0 - - - default - 6 - 2 - true - 1 - 0.0 - 0 - 0 - 14 - 1.0 - - - default - 3 - 2 - true - 1 - 0.0 - 0 - 0 - 13 - - - - - example_dryer_vent - 1 - 442800.0 - 0.0 - - - - - _unnamed_bldg_segment__15a41cb1 - -15 - 9.391485505499118 - 0.01 - -1 - - - _unnamed_bldg_segment__1c5f8097 - -15 - 18.0 - 0.01 - -1 - - - _unnamed_bldg_segment__35188de6 - -15 - 14.0 - 0.01 - -1 - - - _unnamed_bldg_segment__6ab80a8a - -15 - 14.0 - 0.01 - -1 - - - _unnamed_bldg_segment__8b038118 - -15 - 10.733126291998989 - 0.01 - -1 - - - _unnamed_bldg_segment__b1cbf495 - -15 - 14.0 - 0.01 - -1 - - - _unnamed_bldg_segment__b293b5dc - -15 - 20.0 - 0.01 - -1 - - - _unnamed_bldg_segment__bf9a4c5c - -15 - 16.0 - 0.01 - -1 - - - _unnamed_bldg_segment__cbd287e5 - -15 - 13.416407864998739 - 0.01 - -1 - - - _unnamed_bldg_segment__fc8d7c54 - -15 - 14.0 - 0.01 - -1 - - - 0 - 0 - - - - - 2 - 40.6 - -73.8 - 0.0 - -4 - -2 - 0.2 - 0.1 - 0.9 - 0.66 - 350 - 48 - - 6 - 10.0 - 4.0 - 40.6 - -73.8 - 0.0 - -4 - 0.0 - 1 - 2 - 1000 - 2000 - 3 - 0.05 - - 0.0 - 4.0 - 10.0 - 19.75 - 21.5 - 24.75 - 21.23 - 15.85 - 11.74 - 7.78 - 6.07 - 4.34 - - - 0.0 - 2.67 - 6.67 - 7.96 - 5.13 - 6.95 - 4.95 - 4.14 - 1.05 - 1.54 - 1.62 - 4.28 - - - 0.0 - 3.33 - 8.33 - 16.46 - 17.92 - 20.62 - 17.7 - 13.21 - 9.78 - 6.48 - 5.06 - 3.62 - - - 0.0 - 26.66 - 66.66 - 131.66 - 149.97 - 165.0 - 200.0 - 145.61 - 104.03 - 74.32 - 42.05 - 0.0 - - - 0.0 - 26.66 - 66.66 - 131.66 - 149.97 - 165.0 - 200.0 - 145.61 - 104.03 - 74.32 - 42.05 - 0.0 - - - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - - - 0.0 - 26.66 - 66.66 - 131.66 - 149.97 - 165.0 - 200.0 - 145.61 - 104.03 - 74.32 - 42.05 - 0.0 - - - 0.0 - 26.66 - 66.66 - 131.66 - 149.97 - 165.0 - 200.0 - 145.61 - 104.03 - 74.32 - 42.05 - 0.0 - - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - 6 - - 1.1 - 1.1 - 1.1 - 1.1 - 0.2 - 1.8 - 1.7 - 0.8 - 1.1 - 1.5 - 0.7 - 1.1 - 1.5 - 0.8 - 1.1 - 1.5 - - - 309.9966 - 250.0171 - 270.0102 - 439.9864 - 53.4289 - 680.0068 - 250.0171 - 239.9864 - 319.9932 - 409.9966 - -70.0102 - 129.9898 - 319.9932 - 100.0 - 250.0171 - 409.9966 - - - - - 7 - 2 - 15.0 - 15.0 - 10.0 - 10.0 - - - 1 - 1 - 1 - 1 - 1 - 2 - 3 - 1 - 0.8157599999999999 - 2 - 1 - - - 15 - true - 1 - 1 - false - - - 20.0 - 21.0 - 24.0 - false - - - true - - - - - Ideal Air System - 1 - 1 - - - 1 - 1.0 - 1.0 - 1.0 - 1.0 - 1.0 - - - - - 93108caf-ed79-4d5e-9bc3-e98ecbf230f6 - 1 - 5 - 5 - false - true - false - false - false - false - - - - true - - - 3 - - - 1.0 - 0.0 - 1 - - - 0.0 - 0.0 - 1 - - - 0.0 - 0.0 - 1 - - - - Example_Heat_Pump - 2 - 5 - 5 - true - false - true - false - false - false - - - - true - 3.4 - 4.12 - -3.33 - 12.0 - 4 - - - 0.0 - 0.0 - 1 - - - 1.0 - 0.0 - 1 - - - 1.0 - 0.0 - 1 - - - - None - 1 - 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 - 1 - false - false - false - true - false - false - false - -1 - 0.83 - 0.0 - - 1 - 0.0 - 0.333 - true - true - -5.0 - true - false - - - - _unnamed_hw_tank_ - 1 - 8 - 8 - false - true - false - false - false - false - - 300 - 4.0 - 4.0 - 1 - 0.0 - 20 - 60 - 1 - - - true - - - - my_PV_system - 1 - 10 - 10 - false - false - false - false - false - false - - 1 - 2 - 1 - 0.0 - 1000.0 - 1.0 - 0.0 - 0.0 - false - - - - - - 4 - true - 1 - 1 - true - 2 - 2 - 25.4 - 20.0 - 48.0 - 23 - 1.1 - 0.18920200481210636 - 16.5 - 22.224999999999994 - - - Test_Trunk - 2 - 5.5 - 6 - 7 - 1 - false - - - Test_Branch - 2 - 5.5 - 3 - 4 - - - Test_Fixture - 7 - 5.5 - 1 - 1 - - - - - - - - - true - false - 10.0 - 12.0 - 3.5 - 100.02 - true - true - false - 3.5 - - - - - - - __unnamed_vent_duct__ - 3 - 176.00000000000003 - 0.0 - 0.0 - 1.1 - 27.94 - 0.04 - 1 - 1 - 1 - true - - 1 - - - - Test_Vent_System_exhaust - 4 - 176.00000000000003 - 0.0 - 0.0 - 1.1 - 27.94 - 0.04 - 1 - 2 - 1 - true - - 1 - - - - false - true - - - Example Device - 10 - 3 - false - 123.0 - 6.5 - - - - - - - - - - - 1 - Generic Exterior Wall - 2 - 2 - - - 0.1 - - Generic Brick - 0.9 - 1920.0 - 0.95 - 790.0 - 1.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.1 - - Generic LW Concrete - 0.53 - 1280.0 - 0.95 - 840.0 - 1.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.05 - - Generic 50mm Insulation - 0.03 - 43.0 - 0.95 - 1210.0 - 1.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.1 - - Generic Wall Air Gap - 0.667 - 1.28 - 0.95 - 1000.0 - 1.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.0127 - - Generic Gypsum Board - 0.16 - 800.0 - 0.95 - 1090.0 - 1.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - - - - 2 - Generic Interior Wall - 2 - 2 - - - 0.0127 - - Generic Gypsum Board - 0.16 - 800.0 - 0.95 - 1090.0 - 1.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.1 - - Generic Wall Air Gap - 0.667 - 1.28 - 0.95 - 1000.0 - 1.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.0127 - - Generic Gypsum Board - 0.16 - 800.0 - 0.95 - 1090.0 - 1.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - - - - 3 - Generic Ground Slab - 2 - 2 - - - 0.05 - - Generic 50mm Insulation - 0.03 - 43.0 - 0.95 - 1210.0 - 1.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.2 - - Generic HW Concrete - 1.95 - 2240.0 - 0.95 - 900.0 - 1.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - - - - 4 - Generic Roof - 2 - 2 - - - 0.01 - - Generic Roof Membrane - 0.16 - 1120.0 - 0.95 - 1460.0 - 1.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.05 - - Generic 50mm Insulation - 0.03 - 43.0 - 0.95 - 1210.0 - 1.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.1 - - Generic LW Concrete - 0.53 - 1280.0 - 0.95 - 840.0 - 1.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.1 - - Generic Ceiling Air Gap - 0.556 - 1.28 - 0.95 - 1000.0 - 1.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - 0.02 - - Generic Acoustic Tile - 0.06 - 368.0 - 0.95 - 590.0 - 1.0 - 0.0 - - 255 - 255 - 255 - 255 - - - - - - - - - - - - - 1 - PhWindowConstruction_948d7ef8 - true - true - 0.7242364315535045 - 1.075763568446495 - 0.8 - 0.1 - 0.4 - 0.4 - 1.0 - 0.1 - 0.04 - 1.0 - 0.04 - 0.1 - 0.04 - 1.0 - 0.04 - 0.1 - 0.04 - 1.0 - 0.04 - 0.1 - 0.04 - 1.0 - 0.04 - - - 2 - PhWindowConstruction_c701ce5a - true - true - 0.7242364315535045 - 0.8339189189189188 - 0.8 - 0.1 - 0.4 - 0.4 - 1.0 - 0.1 - 0.04 - 0.123 - 0.04 - 0.1 - 0.04 - 0.123 - 0.04 - 0.1 - 0.04 - 0.123 - 0.04 - 0.1 - 0.04 - 0.123 - 0.04 - - - - - 1 - test-shade - 1 - 0.825 - 0.8 - 0.0 - 0.0 - 0.0 - 1000.0 - false - - - diff --git a/tests/test_from_WUFI/test_project/test_new_xml_project_assemblies.py b/tests/test_from_WUFI/test_project/test_new_xml_project_assemblies.py index 37624ea..1a31c3f 100644 --- a/tests/test_from_WUFI/test_project/test_new_xml_project_assemblies.py +++ b/tests/test_from_WUFI/test_project/test_new_xml_project_assemblies.py @@ -1,4 +1,4 @@ -from typing import List, ValuesView +from typing import ValuesView from PHX.model.constructions import PhxConstructionOpaque from PHX.model.project import PhxProject @@ -39,7 +39,8 @@ def test_assembly_type_layers_match( for hbjson_type in hbjson_assemblies.values(): xml_type = _find_matching_assembly(hbjson_type, xml_assemblies.values()) - assert hbjson_type.layers == xml_type.layers + for hbjson_layer, xml_layer in zip(hbjson_type.layers, xml_type.layers): + assert hbjson_layer.equivalent(xml_layer) def test_assembly_type_materials_match( @@ -53,4 +54,4 @@ def test_assembly_type_materials_match( for hbjson_type in hbjson_assemblies.values(): xml_type = _find_matching_assembly(hbjson_type, xml_assemblies.values()) for i, hbjson_layer in enumerate(hbjson_type.layers): - assert hbjson_layer.material == xml_type.layers[i].material + assert hbjson_layer.material.equivalent(xml_type.layers[i].material) diff --git a/tests/test_to_WUFI_xml/test_construction/test_PhxConstructionOpaque.py b/tests/test_to_WUFI_xml/test_construction/test_PhxConstructionOpaque.py index 68f4879..64801cd 100644 --- a/tests/test_to_WUFI_xml/test_construction/test_PhxConstructionOpaque.py +++ b/tests/test_to_WUFI_xml/test_construction/test_PhxConstructionOpaque.py @@ -39,9 +39,9 @@ def test_construction_with_single_layer_no_divisions(reset_class_counters) -> No "mat_1", "0.0", "0.0", - "0.0", + "0.95", "0.0", - "0.0", + "1.0", "0.0", "", "255", @@ -90,9 +90,9 @@ def test_construction_with_multiple_layers_no_divisions(reset_class_counters) -> "mat_1", "0.0", "0.0", - "0.0", + "0.95", "0.0", - "0.0", + "1.0", "0.0", "", "255", @@ -111,9 +111,9 @@ def test_construction_with_multiple_layers_no_divisions(reset_class_counters) -> "mat_2", "0.0", "0.0", - "0.0", + "0.95", "0.0", - "0.0", + "1.0", "0.0", "", "255", @@ -132,9 +132,9 @@ def test_construction_with_multiple_layers_no_divisions(reset_class_counters) -> "mat_3", "0.0", "0.0", - "0.0", + "0.95", "0.0", - "0.0", + "1.0", "0.0", "", "255", @@ -185,9 +185,9 @@ def test_construction_with_single_layer_two_columns(reset_class_counters) -> Non "mat_1", "0.0", "0.0", - "0.0", + "0.95", "0.0", - "0.0", + "1.0", "0.0", "", "255", @@ -281,9 +281,9 @@ def test_construction_with_two_layers_two_columns_each(reset_class_counters) -> "mat_1", "0.0", "0.0", - "0.0", + "0.95", "0.0", - "0.0", + "1.0", "0.0", "", "255", @@ -320,9 +320,9 @@ def test_construction_with_two_layers_two_columns_each(reset_class_counters) -> "mat_3", "0.0", "0.0", - "0.0", + "0.95", "0.0", - "0.0", + "1.0", "0.0", "", "255", diff --git a/tests/test_to_WUFI_xml/test_construction/test_PhxLayer_Standard.py b/tests/test_to_WUFI_xml/test_construction/test_PhxLayer_Standard.py index 840d603..0b660d0 100644 --- a/tests/test_to_WUFI_xml/test_construction/test_PhxLayer_Standard.py +++ b/tests/test_to_WUFI_xml/test_construction/test_PhxLayer_Standard.py @@ -12,9 +12,9 @@ def test_default_PhxLayer(reset_class_counters): "", "0.0", "0.0", - "0.0", + "0.95", "0.0", - "0.0", + "1.0", "0.0", "", "255", diff --git a/tests/test_to_WUFI_xml/test_construction/test_PhxLayer_with_Columns.py b/tests/test_to_WUFI_xml/test_construction/test_PhxLayer_with_Columns.py index ea8cf09..487373d 100644 --- a/tests/test_to_WUFI_xml/test_construction/test_PhxLayer_with_Columns.py +++ b/tests/test_to_WUFI_xml/test_construction/test_PhxLayer_with_Columns.py @@ -23,9 +23,9 @@ def test_layer_with_two_columns(reset_class_counters) -> None: "mat_1", "0.0", "0.0", - "0.0", + "0.95", "0.0", - "0.0", + "1.0", "0.0", "", "255", @@ -81,9 +81,9 @@ def test_layer_with_three_columns() -> None: "mat_1", "0.0", "0.0", - "0.0", + "0.95", "0.0", - "0.0", + "1.0", "0.0", "", "255", diff --git a/tests/test_to_WUFI_xml/test_construction/test_PhxLayer_with_Rows.py b/tests/test_to_WUFI_xml/test_construction/test_PhxLayer_with_Rows.py index ab9a087..bf13630 100644 --- a/tests/test_to_WUFI_xml/test_construction/test_PhxLayer_with_Rows.py +++ b/tests/test_to_WUFI_xml/test_construction/test_PhxLayer_with_Rows.py @@ -23,9 +23,9 @@ def test_layer_with_two_rows(reset_class_counters) -> None: "mat_1", "0.0", "0.0", - "0.0", + "0.95", "0.0", - "0.0", + "1.0", "0.0", "", "255", @@ -81,9 +81,9 @@ def test_layer_with_three_rows() -> None: "mat_1", "0.0", "0.0", - "0.0", + "0.95", "0.0", - "0.0", + "1.0", "0.0", "", "255", diff --git a/tests/test_to_WUFI_xml/test_construction/test_PhxMaterial.py b/tests/test_to_WUFI_xml/test_construction/test_PhxMaterial.py index b38eba8..fefd34a 100644 --- a/tests/test_to_WUFI_xml/test_construction/test_PhxMaterial.py +++ b/tests/test_to_WUFI_xml/test_construction/test_PhxMaterial.py @@ -10,9 +10,9 @@ def test_default_PhxMaterial(reset_class_counters): "", "0.0", "0.0", - "0.0", + "0.95", "0.0", - "0.0", + "1.0", "0.0", "", "255",